# XWUIDeliveryDateEstimator

A "Get it by [date]" delivery estimate: a ZIP/postal code input + "Check" button; once `data.estimatedDate` is populated (by a host page reacting to `onCheck`), shows a formatted "Get it by &lt;date&gt;" line and an optional order-cutoff hint.

## Events

| Event | Callback | Subscriber | `detail` |
|---|---|---|---|
| `xwui-delivery-date-estimator:check` | `onCheck` | `onCheck(handler)` | `{ zip }` |

## Usage

```ts
import { XWUIDeliveryDateEstimator } from '@exonware/xwui/industry';

const estimator = new XWUIDeliveryDateEstimator(host, {});

estimator.onCheck(async (zip) => {
  const { estimatedDate } = await api.estimateDelivery(zip);
  // re-render with data.estimatedDate = estimatedDate
});
```

```api
```
