# DateEditorParams

> _Since v1.0.0_

Configuration parameters for the built-in date editor.

#### Example

```typescript
{ field: 'startDate', type: 'date', editable: true, editorParams: { min: '2024-01-01' } }
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `min?` | <code>string</code> | Minimum date (ISO string: 'YYYY-MM-DD') |
| `max?` | <code>string</code> | Maximum date (ISO string: 'YYYY-MM-DD') |
| `placeholder?` | <code>string</code> | Placeholder text when empty |
| `default?` | <code>string &#124; Date</code> | Default date used when the user clears a non-nullable date column. Accepts an ISO date string (`'YYYY-MM-DD'`) or a `Date` object. When omitted, today's date is used as the fallback. |
