# NumberEditorParams

> _Since v1.0.0_

Configuration parameters for the built-in number editor.

#### Example

```typescript
{ field: 'price', type: 'number', editable: true, editorParams: { min: 0, max: 1000, step: 0.01 } }
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `min?` | <code>number</code> | Minimum allowed value |
| `max?` | <code>number</code> | Maximum allowed value |
| `step?` | <code>number</code> | Step increment for up/down arrows |
| `placeholder?` | <code>string</code> | Placeholder text when empty |
