Combobox Props & Events
| Property | Type | Default | Description |
|---|---|---|---|
| data | ComboboxInterface[] | [] | Array of items to display in the dropdown |
| multiSelect | boolean | false | Enable multi-select mode with chips |
| triggerMode | 'input' | 'custom' | 'input' | How the combobox is triggered - input field or custom trigger |
| groupBy | string | null | null | Property name to group items by (enables grouping with category headers) |
| placeholder | string | 'Search...' | Placeholder text for the input field |
| closeOnSelect | boolean | true | Whether to close dropdown after item selection |
| disabled | boolean | false | Disable the combobox |
| (selectionChange) | OutputEmitterRef<ComboboxInterface[]> | - | Emitted when selection changes. Returns array of selected items |