MantineMultiSelect#
@palmyralabs/rt-forms-mantine · form/MantineMultiSelect.tsx
Overview#
Multi-select chips. Same options shape as MantineSelect; the stored value is an array.
Props — ISelectDefinition & MultiSelectProps#
Common field props + options: Array<{ value, label }> + Mantine MultiSelectProps (maxValues, searchable, clearable, …).
Example#
<MantineMultiSelect
attribute="tags"
label="Tags"
searchable clearable
options={[
{ value: 'WHOLESALE', label: 'Wholesale' },
{ value: 'RETAIL', label: 'Retail' },
{ value: 'VIP', label: 'VIP' },
]}
/>