ComboboxMultiSelectAll API
API reference docs for theComboboxMultiSelectAll
component. For examples and details on the usage of this component, visit the component demo page.
Props
Prop | Type | Description | Default |
---|---|---|---|
children | React.ReactNode | The content of the combobox menu item. | _ |
id? | string | An optional ID for the menu item; auto-generated if not provided. | _ |
isSelected? | boolean | Controls whether the checkbox is selected | false |
isDisabled? | boolean | If true, the item is disabled. | false |
isHighlighted? | boolean | Indicates if the menu item is currently highlighted. Used for styling. Deprecated with backwards compatibility ⚠️ (It's handled internally with the help of options prop in ComboboxMultiSelect component.) | false |
onClick? | () => void | Function to be invoked when the item is clicked. | _ |
size? | 'standard'|'large' | Size of the combobox item. | standard |
indeterminate? | boolean | Controls whether to show the checkbox's indeterminate state. Deprecated with backwards compatibility ⚠️ (It's handled internally with the help of options prop in ComboboxMultiSelect component.) | false |