//
Fast, composable, unstyled command menu for React.
bun add xiod-ui1import {2 Command,3 CommandCollection,4 CommandCreateHandle,5 CommandDialog,6 CommandDialogPopup,7 CommandDialogTrigger,8 CommandEmpty,9 CommandFooter,10 CommandGroup,11 CommandGroupLabel,12 CommandInput,13 CommandItem,14 CommandList,15 CommandPanel,16 CommandSeparator,17 CommandShortcut18} from "xiod-ui/command";1<Command>2 <CommandDialogTrigger />3 <CommandInput />4 <CommandDialogPopup>5 <CommandEmpty />6 <CommandGroupLabel />7 <CommandGroup>8 <CommandItem />9 </CommandGroup>10 <CommandList>11 <CommandItem />12 </CommandList>13 <CommandCollection />14 <CommandDialog />15 <CommandPanel />16 <CommandSeparator />17 <CommandShortcut />18 <CommandFooter>19 </CommandFooter>20 </CommandDialogPopup>21</Command>| Prop | Type | Default | Description |
|---|---|---|---|
form | string| undefined | - | Identifies the form that owns the internal input. Useful when the autocomplete is rendered outside the form. |
filter | ((item: unknown, query: string, itemToString?: ((item: unknown) => string)| undefined) => boolean)| null| undefined | - | Filter function used to match items against the input query. |
defaultValue | string| number| readonly string[]| undefined | - | The uncontrolled input value of the autocomplete when it's initially rendered. To render a controlled autocomplete, use the `value` prop instead. |
id | string| undefined | - | The id of the component. |
grid | boolean| undefined | false | Whether list items are presented in a grid layout. When enabled, arrow keys navigate across rows and columns inferred from DOM rows. |
inline | boolean| undefined | false | Whether the list is rendered inline without using the component's own popup. Specify `open` unconditionally in conjunction with this prop so the list is considered visible: `<Autocomplete.Root inline open>` |
disabled | boolean| undefined | false | Whether the component should ignore user interaction. |
name | string| undefined | - | Identifies the field when a form is submitted. |
readOnly | boolean| undefined | false | Whether the user should be unable to choose a different option from the popup. |
required | boolean| undefined | false | Whether the user must choose a value before submitting a form. |
value | string| number| readonly string[]| undefined | - | The input value of the autocomplete. Use when controlled. |
onValueChange | ((value: string, eventDetails: AutocompleteRootChangeEventDetails) => void)| undefined | - | Event handler called when the input value of the autocomplete changes. |
modal | boolean| undefined | false | Determines if the popup enters a modal state when open. - `true`: user interaction is limited to the popup: document page scroll is locked and pointer interactions on outside elements are disabled. - `false`: user interaction with the rest of the document is allowed. On touch devices, a `true` modal blocks outside taps but leaves the page scrollable unless the popup spans nearly the full viewport width, matching native iOS behavior. |
onOpenChange | ((open: boolean, eventDetails: AutocompleteRootChangeEventDetails) => void)| undefined | - | Event handler called when the popup is opened or closed. |
actionsRef | RefObject<AutocompleteRootActions| null>| undefined | - | A ref to imperative actions. - `unmount`: Manually unmounts the autocomplete. Call this after any externally controlled closing animation finishes. |
open | boolean| undefined | - | Whether the popup is currently open. Use when controlled. |
defaultOpen | boolean| undefined | false | Whether the popup is initially open. To render a controlled popup, use the `open` prop instead. |
onOpenChangeComplete | ((open: boolean) => void)| undefined | - | Event handler called after any animations complete when the popup is opened or closed. |
loopFocus | boolean| undefined | true | Whether to loop keyboard focus back to the input when the end of the list is reached while using the arrow keys. The first item can then be reached by pressing <kbd>ArrowDown</kbd> again from the input, or the last item can be reached by pressing <kbd>ArrowUp</kbd> from the input. The input is always included in the focus loop per [ARIA Authoring Practices](https://www.w3.org/WAI/ARIA/apg/patterns/combobox/). When disabled, focus does not move when on the last element and the user presses <kbd>ArrowDown</kbd>, or when on the first element and the user presses <kbd>ArrowUp</kbd>. |
inputRef | Ref<HTMLInputElement>| undefined | - | A ref to the hidden input element. |
submitOnItemClick | boolean| undefined | false | Whether clicking an item should submit the autocomplete's owning form. By default, clicking an item via a pointer or <kbd>Enter</kbd> key does not submit the owning form. Useful when the autocomplete is used as a single-field form search input. |
autoHighlight | boolean| "always"| undefined | always | Whether the first matching item is highlighted automatically. - `true`: highlight after the user types and keep the highlight while the query changes. - `'always'`: always highlight the first item. |
keepHighlight | boolean| undefined | true | Whether the highlighted item should be preserved when the pointer leaves the list. |
highlightItemOnHover | boolean| undefined | true | Whether moving the pointer over items should highlight them. Disabling this prop allows CSS `:hover` to be differentiated from the `:focus` (`data-highlighted`) state. |
itemToStringValue | ((itemValue: unknown) => string)| undefined | - | When the item values are objects (`<Autocomplete.Item value={object}>`), this function converts the object value to a string representation for both display in the input and form submission. If the shape of the object is `{ value, label }`, the label will be used automatically without needing to specify this prop. |
onItemHighlighted | ((highlightedValue: unknown, eventDetails: HighlightEventDetails) => void)| undefined | - | Callback fired when an item is highlighted or unhighlighted. Receives the highlighted item value (or `undefined` if no item is highlighted) and event details with a `reason` property describing why the highlight changed. The `reason` can be: - `'keyboard'`: the highlight changed due to keyboard navigation. - `'pointer'`: the highlight changed due to pointer hovering. - `'none'`: the highlight changed programmatically. |
openOnInputClick | boolean| undefined | false | Whether the popup opens when clicking the input. |
filteredItems | readonly unknown[]| readonly Group<unknown>[]| undefined | - | Filtered items to display in the list. When provided, the list uses these items instead of filtering the `items` prop internally. When `items` is also provided, this array must preserve its flat or grouped structure. Nullish entries are not supported, as in `items`. Use when you want to control filtering logic externally with the `useFilter()` hook. |
virtualized | boolean| undefined | false | Whether the items are being externally virtualized. |
limit | number| undefined | -1 | The maximum number of items to display in the list. |
locale | LocalesArgument | - | The locale to use for string comparison. Defaults to the user's runtime locale. |
mode | "none"| "list"| "inline"| "both"| undefined | 'list' | Controls how the autocomplete behaves with respect to list filtering and inline autocompletion. - `list` (default): items are dynamically filtered based on the input value. The input value does not change based on the active item. - `both`: items are dynamically filtered based on the input value, which will temporarily change based on the active item (inline autocompletion). - `inline`: items are static (not filtered), and the input value will temporarily change based on the active item (inline autocompletion). - `none`: items are static (not filtered), and the input value will not change based on the active item. |
items | readonly unknown[]| undefined | - | The items to be displayed in the list. Can be either a flat array of items or an array of groups with items. Nullish entries are not supported: remove them from the data before passing it. |
| Prop | Type | Default | Description |
|---|---|---|---|
initialFocus | boolean| RefObject<HTMLElement| null>| ((openType: InteractionType) => boolean| void| HTMLElement| null)| undefined | - | Determines the element to focus when the dialog is opened. By default, focus moves to the first tabbable element inside the popup, except when the dialog is opened by touch — then the popup itself is focused to avoid opening the virtual keyboard. - `false`: Do not move focus. - `true`: Move focus based on the default behavior (first tabbable element or popup). - `RefObject`: Move focus to the ref element. - `function`: Called with the interaction type (`mouse`, `touch`, `pen`, or `keyboard`). Return an element to focus, `true` to use the default behavior, `null` to fall back to the default behavior, or `false`/`undefined` to do nothing. |
finalFocus | boolean| RefObject<HTMLElement| null>| ((closeType: InteractionType) => boolean| void| HTMLElement| null)| undefined | - | Determines the element to focus when the dialog is closed. - `false`: Do not move focus. - `true`: Move focus based on the default behavior (trigger or previously focused element). - `RefObject`: Move focus to the ref element. - `function`: Called with the interaction type (`mouse`, `touch`, `pen`, or `keyboard`). Return an element to focus, `true` to use the default behavior, `null` to fall back to the default behavior, or `false`/`undefined` to do nothing. |
className | string| ((state: DialogPopupState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, DialogPopupState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: DialogPopupState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| Prop | Type | Default | Description |
|---|---|---|---|
handle | DialogHandle<unknown>| undefined | - | A handle to associate the trigger with a dialog. Can be created with the Dialog.createHandle() method. |
payload | unknown | - | A payload to pass to the dialog when it is opened. |
id | string| undefined | - | ID of the trigger. In addition to being forwarded to the rendered element, it is also used to specify the active trigger for the dialog in controlled mode (with the DialogRoot `triggerId` prop). |
nativeButton | boolean| undefined | true | Whether the component renders a native `<button>` element when replacing it via the `render` prop. Set to `false` if the rendered element is not a button (for example, `<div>`). |
className | string| ((state: DialogTriggerState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, DialogTriggerState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: DialogTriggerState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| Prop | Type | Default | Description |
|---|---|---|---|
className | string| ((state: ComboboxEmptyState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, ComboboxEmptyState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: ComboboxEmptyState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| Prop | Type | Default | Description |
|---|---|---|---|
items | readonly any[]| undefined | - | Items to be rendered within this group. When provided, child `Collection` components will use these items. |
className | string| ((state: ComboboxGroupState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, ComboboxGroupState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: ComboboxGroupState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| Prop | Type | Default | Description |
|---|---|---|---|
className | string| ((state: ComboboxGroupLabelState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, ComboboxGroupLabelState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: ComboboxGroupLabelState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| Prop | Type | Default | Description |
|---|---|---|---|
style | CSSProperties| ((state: ComboboxInputState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
className | string| ((state: ComboboxInputState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, ComboboxInputState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
disabled | boolean| undefined | false | Whether the component should ignore user interaction. |
showTrigger | boolean| undefined | - | |
showClear | boolean| undefined | - | |
startAddon | ReactNode | - | |
size | number| "default"| "sm"| "lg"| undefined | - | |
triggerProps | AutocompleteTriggerProps| undefined | - | |
clearProps | ComboboxClearProps| undefined | - |
| Prop | Type | Default | Description |
|---|---|---|---|
onClick | ((event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void)| undefined | - | An optional click handler for the item when selected. It fires when clicking the item with the pointer, as well as when pressing `Enter` with the keyboard if the item is highlighted when the `Input` or `List` element has focus. |
index | number| undefined | - | The index of the item in the list. Improves performance when specified by avoiding the need to calculate the index automatically from the DOM. |
value | any | null | A unique value that identifies this item. |
disabled | boolean| undefined | false | Whether the component should ignore user interaction. |
nativeButton | boolean| undefined | true | Whether the component renders a native `<button>` element when replacing it via the `render` prop. Set to `false` if the rendered element is not a button (for example, `<div>`). |
style | CSSProperties| ((state: AutocompleteItemState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
className | string| ((state: AutocompleteItemState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, AutocompleteItemState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
| Prop | Type | Default | Description |
|---|---|---|---|
style | CSSProperties| ((state: ComboboxListState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |
className | string| ((state: ComboboxListState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, ComboboxListState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
| Prop | Type | Default | Description |
|---|---|---|---|
orientation | Orientation| undefined | 'horizontal' | The orientation of the separator. |
className | string| ((state: AutocompleteSeparatorState) => string| undefined)| undefined | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
render | ReactElement<unknown, string| JSXElementConstructor<any>>| ComponentRenderFn<HTMLProps, AutocompleteSeparatorState>| undefined | - | Allows you to replace the component's HTML element with a different tag, or compose it with another component. Accepts a `ReactElement` or a function that returns the element to render. |
style | CSSProperties| ((state: AutocompleteSeparatorState) => CSSProperties| undefined)| undefined | - | Style applied to the element, or a function that returns a style object based on the component's state. |