Form components
Multi-select
Multiple choices from a list, with optional "select all".
Stores value[] (an array of selected option values).
Preview
Live
Options
| Prop | Type | Default | Description |
|---|---|---|---|
| options | Option[] | — | Static list of selectable options. |
| loadOptions | (values) => Option[] | Promise<Option[]> | — | Load options dynamically. |
| enableSelectAll | boolean | — | Show a "select all" affordance. |
| placeholder | string | — | Placeholder when nothing is selected. |
Validators
Array validators apply: required, minLength, maxLength (counts selections), and
custom.