# TextEditorParams

> _Since v1.0.0_

Configuration parameters for the built-in text editor.

#### Example

```typescript
{ field: 'name', editable: true, editorParams: { maxLength: 50, placeholder: 'Enter name...' } }
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `maxLength?` | <code>number</code> | Maximum character length |
| `pattern?` | <code>string</code> | Regex pattern for validation (HTML5 pattern attribute) |
| `placeholder?` | <code>string</code> | Placeholder text when empty |
