Autocomplete
A text input that suggests matching items as you type
import { Autocomplete } from "@nyte-ai/ui/autocomplete";An input that filters a list of items against what the user types. The input accepts free-form text, so the suggestions only optionally complete it. No Nyte styling here.
Usage
- Pass the data to
itemson the root and render each entry from a function child onAutocomplete.List. Inside a group, render the group's entries withAutocomplete.Collection. - Each
Autocomplete.Itemtakes avalueidentifying it. Pass the item being rendered so props likeitemToStringValuereceive it. modedecides how filtering and inline completion work."list"filters items and leaves the input alone."both"filters and completes the input from the highlighted item."inline"completes without filtering."none"does neither.filterreplaces the matching function.filteredItemshands filtering to you entirely, andAutocomplete.useFilter()gives you the defaultIntl.Collatormatcher to build on.limitcaps the number of items rendered. Tell the reader what was cut withAutocomplete.Status.autoHighlighthighlights the first match as the user types. Set it to"always"when the list is rendered inline, so a highlight is always present.inlineon the root renders the list without the popup. Passopenunconditionally alongside it.gridon the root moves the highlight across rows and columns. Wrap each row inAutocomplete.Row.- Keep
Autocomplete.StatusandAutocomplete.Emptymounted. Their content is announced politely, so update or conditionally render their children instead of hiding the element. virtualizedtells the list that you render the items yourself with a virtualizer such as@tanstack/react-virtual.
Anatomy
<Autocomplete.Root>
<Autocomplete.InputGroup>
<Autocomplete.Input />
<Autocomplete.Trigger />
<Autocomplete.Icon />
<Autocomplete.Clear />
<Autocomplete.Value />
</Autocomplete.InputGroup>
<Autocomplete.Portal>
<Autocomplete.Backdrop />
<Autocomplete.Positioner>
<Autocomplete.Popup>
<Autocomplete.Arrow />
<Autocomplete.Status />
<Autocomplete.Empty />
<Autocomplete.List>
<Autocomplete.Row>
<Autocomplete.Item />
</Autocomplete.Row>
<Autocomplete.Separator />
<Autocomplete.Group>
<Autocomplete.GroupLabel />
<Autocomplete.Collection />
</Autocomplete.Group>
</Autocomplete.List>
</Autocomplete.Popup>
</Autocomplete.Positioner>
</Autocomplete.Portal>
</Autocomplete.Root>Examples
<Autocomplete.Root items={models}>
<Autocomplete.InputGroup>
<Autocomplete.Input placeholder="Search models" aria-label="Search models" />
<Autocomplete.Clear aria-label="Clear">
<IconCrossSmall size={12} />
</Autocomplete.Clear>
</Autocomplete.InputGroup>
<Autocomplete.Portal>
<Autocomplete.Positioner sideOffset={4}>
<Autocomplete.Popup>
<Autocomplete.Empty>No models match</Autocomplete.Empty>
<Autocomplete.List>
{(model: string) => (
<Autocomplete.Item key={model} value={model}>
{model}
</Autocomplete.Item>
)}
</Autocomplete.List>
</Autocomplete.Popup>
</Autocomplete.Positioner>
</Autocomplete.Portal>
</Autocomplete.Root>Group the items by nesting them in objects that carry an items array. Autocomplete.Group takes
the group's entries and Autocomplete.Collection renders them, so filtering still applies.
const groups = [
{ label: "Anthropic", items: ["claude-opus-4-6", "claude-sonnet-4-6"] },
{ label: "Google", items: ["gemini-3-pro"] },
];
<Autocomplete.Root items={groups}>
{/* Input group as above */}
<Autocomplete.Portal>
<Autocomplete.Positioner sideOffset={4}>
<Autocomplete.Popup>
<Autocomplete.List>
{(group: { label: string; items: string[] }) => (
<Autocomplete.Group key={group.label} items={group.items}>
<Autocomplete.GroupLabel>{group.label}</Autocomplete.GroupLabel>
<Autocomplete.Collection>
{(model: string) => (
<Autocomplete.Item key={model} value={model}>
{model}
</Autocomplete.Item>
)}
</Autocomplete.Collection>
</Autocomplete.Group>
)}
</Autocomplete.List>
</Autocomplete.Popup>
</Autocomplete.Positioner>
</Autocomplete.Portal>
</Autocomplete.Root>;value with onValueChange controls the input text.
const [query, setQuery] = useState("");
<Autocomplete.Root items={models} value={query} onValueChange={setQuery}>
{/* Input group and popup as above */}
</Autocomplete.Root>;Props
The part tables below come from Base UI, MIT, © Material-UI SAS.
Root
Groups all parts of the autocomplete. Doesn't render its own HTML element.
Root Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| name | string | - | Identifies the field when a form is submitted. |
| defaultValue | string | number | string[] | - | The uncontrolled input value of the autocomplete when it's initially rendered. To render a controlled autocomplete, use the value prop instead. |
| value | string | string[] | number | - | The input value of the autocomplete. Use when controlled. |
| onValueChange | ((value: string, eventDetails: Autocomplete.Root.ChangeEventDetails) => void) | - | Event handler called when the input value of the autocomplete changes. |
| defaultOpen | boolean | false | Whether the popup is initially open. To render a controlled popup, use the open prop instead. |
| open | boolean | - | Whether the popup is currently open. Use when controlled. |
| onOpenChange | ((open: boolean, eventDetails: Autocomplete.Root.ChangeEventDetails) => void) | - | Event handler called when the popup is opened or closed. |
| autoHighlight | boolean | 'always' | false | 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 | false | Whether the highlighted item should be preserved when the pointer leaves the list. |
| highlightItemOnHover | boolean | 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. |
| actionsRef | React.RefObject<Autocomplete.Root.Actions | null> | - | A ref to imperative actions. unmount: Manually unmounts the autocomplete.
Call this after any externally controlled closing animation finishes. |
| filter | ((item: ItemValue, query: string, itemToString?: ((item: ItemValue) => string)) => boolean) | null | - | AutocompleteFilter function used to match items against the input query. |
| filteredItems | any[] | Group<any>[] | ItemValue[] | Group<ItemValue>[] | - | 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. |
| form | string | - | Identifies the form that owns the internal input. Useful when the autocomplete is rendered outside the form. |
| grid | boolean | 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 | 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> |
| itemToStringValue | ((itemValue: ItemValue) => string) | - | 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. |
| items | ({ items: any[] })[] | ItemValue[] | - | 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. |
| limit | number | -1 | The maximum number of items to display in the list. |
| locale | Intl.LocalesArgument | - | The locale to use for string comparison. Defaults to the user's runtime locale. |
| loopFocus | boolean | 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 ArrowDown again from the input, or the last item can be reached by pressing ArrowUp from the input. The input is always included in the focus loop per ARIA Authoring Practices. When disabled, focus does not move when on the last element and the user presses ArrowDown, or when on the first element and the user presses ArrowUp. |
| modal | boolean | 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. |
| mode | 'list' | 'both' | 'inline' | 'none' | '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. |
| onItemHighlighted | ((highlightedValue: ItemValue | undefined, eventDetails: Autocomplete.Root.HighlightEventDetails) => void) | - | 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. |
| onOpenChangeComplete | ((open: boolean) => void) | - | Event handler called after any animations complete when the popup is opened or closed. |
| openOnInputClick | boolean | false | Whether the popup opens when clicking the input. |
| submitOnItemClick | boolean | false | Whether clicking an item should submit the autocomplete's owning form. By default, clicking an item via a pointer or Enter key does not submit the owning form. Useful when the autocomplete is used as a single-field form search input. |
| virtualized | boolean | false | Whether the items are being externally virtualized. |
| disabled | boolean | false | Whether the component should ignore user interaction. |
| readOnly | boolean | false | Whether the user should be unable to choose a different option from the popup. |
| required | boolean | false | Whether the user must choose a value before submitting a form. |
| inputRef | React.Ref<HTMLInputElement> | - | A ref to the hidden input element. |
| id | string | - | The id of the component. |
| children | React.ReactNode | - | - |
InputGroup
A wrapper for the input and its associated controls.
Renders a <div> element.
InputGroup Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.InputGroup.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.InputGroup.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.InputGroup.State) => ReactElement) | - | 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. |
InputGroup Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-popup-open | - | Present when the corresponding popup is open. |
| data-popup-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | null | Indicates which side the corresponding popup is positioned relative to its anchor. |
| data-list-empty | - | Present when the corresponding items list is empty. |
| data-pressed | - | Present when the input group is pressed. |
| data-disabled | - | Present when the component is disabled. |
| data-readonly | - | Present when the component is readonly. |
| data-valid | - | Present when the component is in a valid state (when wrapped in Field.Root). |
| data-invalid | - | Present when the component is in an invalid state (when wrapped in Field.Root). |
| data-dirty | - | Present when the component's value has changed (when wrapped in Field.Root). |
| data-touched | - | Present when the component has been touched (when wrapped in Field.Root). |
| data-filled | - | Present when the component has a value (when wrapped in Field.Root). |
| data-focused | - | Present when the component is focused (when wrapped in Field.Root). |
Input
A text input to search for items in the list.
Renders an <input> element.
Input Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| disabled | boolean | false | Whether the component should ignore user interaction. |
| className | string | ((state: Autocomplete.Input.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Input.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Input.State) => ReactElement) | - | 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. |
Input Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-popup-open | - | Present when the corresponding popup is open. |
| data-popup-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | null | Indicates which side the corresponding popup is positioned relative to its anchor. |
| data-list-empty | - | Present when the corresponding items list is empty. |
| data-pressed | - | Present when the input is pressed. |
| data-disabled | - | Present when the component is disabled. |
| data-readonly | - | Present when the component is readonly. |
| data-required | - | Present when the component is required. |
| data-valid | - | Present when the component is in a valid state (when wrapped in Field.Root). |
| data-invalid | - | Present when the component is in an invalid state (when wrapped in Field.Root). |
| data-dirty | - | Present when the component's value has changed (when wrapped in Field.Root). |
| data-touched | - | Present when the component has been touched (when wrapped in Field.Root). |
| data-filled | - | Present when the component has a value (when wrapped in Field.Root). |
| data-focused | - | Present when the input is focused (when wrapped in Field.Root). |
Trigger
A button that opens the popup.
Renders a <button> element.
Trigger Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| nativeButton | boolean | 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>). |
| disabled | boolean | false | Whether the component should ignore user interaction. |
| className | string | ((state: Autocomplete.Trigger.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Trigger.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Trigger.State) => ReactElement) | - | 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. |
Trigger Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-popup-open | - | Present when the corresponding popup is open. |
| data-popup-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | null | Indicates which side the corresponding popup is positioned relative to its anchor. |
| data-list-empty | - | Present when the corresponding items list is empty. |
| data-pressed | - | Present when the trigger is pressed. |
| data-disabled | - | Present when the component is disabled. |
| data-readonly | - | Present when the component is readonly. |
| data-required | - | Present when the component is required. |
| data-valid | - | Present when the component is in a valid state (when wrapped in Field.Root). |
| data-invalid | - | Present when the component is in an invalid state (when wrapped in Field.Root). |
| data-dirty | - | Present when the component's value has changed (when wrapped in Field.Root). |
| data-touched | - | Present when the component has been touched (when wrapped in Field.Root). |
| data-filled | - | Present when the component has a value (when wrapped in Field.Root). |
| data-focused | - | Present when the trigger is focused (when wrapped in Field.Root). |
Icon
An icon that indicates that the trigger button opens the popup.
Renders a <span> element.
Icon Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Icon.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Icon.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Icon.State) => ReactElement) | - | 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. |
Clear
Clears the value when clicked.
Renders a <button> element.
Clear Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| nativeButton | boolean | 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>). |
| disabled | boolean | false | Whether the component should ignore user interaction. |
| className | string | ((state: Autocomplete.Clear.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Clear.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| keepMounted | boolean | false | Whether the component should remain mounted in the DOM when not visible. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Clear.State) => ReactElement) | - | 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. |
Clear Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-popup-open | - | Present when the corresponding popup is open. |
| data-disabled | - | Present when the button is disabled. |
| data-visible | - | Present when the clear button is visible. |
| data-starting-style | - | Present when the button begins animating in. |
| data-ending-style | - | Present when the button is animating out. |
Value
The current value of the autocomplete. Doesn't render its own HTML element.
Value Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| children | React.ReactNode | ((value: string) => React.ReactNode) | - | - |
Portal
A portal element that moves the popup to a different part of the DOM.
By default, the portal element is appended to <body>.
Renders a <div> element.
Portal Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| container | HTMLElement | ShadowRoot | React.RefObject<HTMLElement | ShadowRoot | null> | null | - | A parent element to render the portal element into. |
| className | string | ((state: Autocomplete.Portal.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Portal.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| keepMounted | boolean | false | Whether to keep the portal mounted in the DOM while the popup is hidden. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Portal.State) => ReactElement) | - | 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. |
Backdrop
An overlay displayed beneath the popup.
Renders a <div> element.
Backdrop Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Backdrop.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Backdrop.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Backdrop.State) => ReactElement) | - | 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. |
Backdrop Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-open | - | Present when the popup is open. |
| data-closed | - | Present when the popup is closed. |
| data-starting-style | - | Present when the popup begins animating in. |
| data-ending-style | - | Present when the popup is animating out. |
Positioner
Positions the popup against the trigger.
Renders a <div> element.
Positioner Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| disableAnchorTracking | boolean | false | Whether to disable the popup from tracking any layout shift of its positioning anchor. |
| align | Align | 'center' | How to align the popup relative to the specified side. |
| alignOffset | number | OffsetFunction | 0 | Additional offset along the alignment axis in pixels.
Also accepts a function that returns the offset to read the dimensions of the anchor
and positioner elements, along with its side and alignment. The function takes a data object parameter with the following properties: data.anchor: the dimensions of the anchor element with properties width and height.data.positioner: the dimensions of the positioner element with properties width and height.data.side: which side of the anchor element the positioner is aligned against.data.align: how the positioner is aligned relative to the specified side. |
| side | Side | 'bottom' | Which side of the anchor element to align the popup against. May automatically change to avoid collisions. |
| sideOffset | number | OffsetFunction | 0 | Distance between the anchor and the popup in pixels.
Also accepts a function that returns the distance to read the dimensions of the anchor
and positioner elements, along with its side and alignment. The function takes a data object parameter with the following properties: data.anchor: the dimensions of the anchor element with properties width and height.data.positioner: the dimensions of the positioner element with properties width and height.data.side: which side of the anchor element the positioner is aligned against.data.align: how the positioner is aligned relative to the specified side. |
| arrowPadding | number | 5 | Minimum distance to maintain between the arrow and the edges of the popup. Use it to prevent the arrow element from hanging out of the rounded corners of a popup. |
| anchor | Element | VirtualElement | React.RefObject<Element | null> | (() => Element | VirtualElement | null) | null | - | An element to position the popup against. By default, the popup will be positioned against the trigger. |
| collisionAvoidance | CollisionAvoidance | - | Determines how to handle collisions when positioning the popup. side controls overflow on the preferred placement axis (top/bottom or left/right): 'flip': keep the requested side when it fits; otherwise try the opposite side
(top and bottom, or left and right).'shift': never change side; keep the requested side and move the popup within
the clipping boundary so it stays visible.'none': do not correct side-axis overflow. align controls overflow on the alignment axis (start/center/end): 'flip': keep side, but swap start and end when the requested alignment overflows.'shift': keep side and requested alignment, then nudge the popup along the
alignment axis to fit.'none': do not correct alignment-axis overflow. fallbackAxisSide controls fallback behavior on the perpendicular axis when the
preferred axis cannot fit: 'start': allow perpendicular fallback and try the logical start side first
(top before bottom, or left before right in LTR).'end': allow perpendicular fallback and try the logical end side first
(bottom before top, or right before left in LTR).'none': do not fallback to the perpendicular axis. When side is 'shift', explicitly setting align only supports 'shift' or 'none'.
If align is omitted, it defaults to 'flip'. |
| collisionBoundary | Boundary | 'clipping-ancestors' | An element or a rectangle that delimits the area that the popup is confined to. |
| collisionPadding | Padding | 5 | Additional space to maintain from the edge of the collision boundary. |
| sticky | boolean | false | Whether to maintain the popup in the viewport after the anchor element was scrolled out of view. |
| positionMethod | 'absolute' | 'fixed' | 'absolute' | Determines which CSS position property to use. |
| className | string | ((state: Autocomplete.Positioner.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Positioner.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Positioner.State) => ReactElement) | - | 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. |
alignOffset Prop Example:
<Positioner
alignOffset={({ side, align, anchor, positioner }) => {
return side === 'top' || side === 'bottom' ? anchor.width : anchor.height;
}}
/>sideOffset Prop Example:
<Positioner
sideOffset={({ side, align, anchor, positioner }) => {
return side === 'top' || side === 'bottom' ? anchor.height : anchor.width;
}}
/>collisionAvoidance Prop Example:
<Positioner
collisionAvoidance={{
side: 'shift',
align: 'shift',
fallbackAxisSide: 'none',
}}
/>Positioner Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-open | - | Present when the popup is open. |
| data-closed | - | Present when the popup is closed. |
| data-anchor-hidden | - | Present when the anchor is hidden. |
| data-align | 'start' | 'center' | 'end' | Indicates how the popup is aligned relative to specified side. |
| data-empty | - | Present when the items list is empty. |
| data-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | Indicates which side the popup is positioned relative to the trigger. |
Positioner CSS Variables:
| Variable | Type | Description |
|---|---|---|
--anchor-height | number | The anchor's height. |
--anchor-width | number | The anchor's width. |
--available-height | number | The available height between the trigger and the edge of the viewport. |
--available-width | number | The available width between the trigger and the edge of the viewport. |
--transform-origin | string | The coordinates that this element is anchored to. Used for animations and transitions. |
Popup
A container for the list.
Renders a <div> element.
Popup Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| initialFocus | boolean | React.RefObject<HTMLElement | null> | ((openType: InteractionType) => boolean | void | HTMLElement | null) | - | Determines the element to focus when the popup is opened. 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, or false/undefined to do nothing. |
| finalFocus | boolean | React.RefObject<HTMLElement | null> | ((closeType: InteractionType) => boolean | void | HTMLElement | null) | - | Determines the element to focus when the popup 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, or false/undefined to do nothing. |
| className | string | ((state: Autocomplete.Popup.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Popup.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Popup.State) => ReactElement) | - | 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. |
Popup Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-open | - | Present when the popup is open. |
| data-closed | - | Present when the popup is closed. |
| data-anchor-hidden | - | Present when the anchor is hidden. |
| data-align | 'start' | 'center' | 'end' | Indicates how the popup is aligned relative to specified side. |
| data-empty | - | Present when the items list is empty. |
| data-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | Indicates which side the popup is positioned relative to the trigger. |
| data-starting-style | - | Present when the popup begins animating in. |
| data-ending-style | - | Present when the popup is animating out. |
Arrow
Displays an element positioned against the anchor.
Renders a <div> element.
Arrow Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Arrow.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Arrow.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Arrow.State) => ReactElement) | - | 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. |
Arrow Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-open | - | Present when the popup is open. |
| data-closed | - | Present when the popup is closed. |
| data-uncentered | - | Present when the arrow is uncentered. |
| data-align | 'start' | 'center' | 'end' | Indicates how the popup is aligned relative to specified side. |
| data-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | Indicates which side the popup is positioned relative to the trigger. |
List
A list container for the items.
Renders a <div> element.
List Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| children | React.ReactNode | ((item: any, index: number) => React.ReactNode) | - | - |
| className | string | ((state: Autocomplete.List.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.List.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.List.State) => ReactElement) | - | 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. |
Item
An individual item in the list.
Renders a <div> element.
Item Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| value | any | null | A unique value that identifies this item. |
| onClick | ((event: BaseUIEvent<React.MouseEvent<HTMLDivElement, MouseEvent>>) => void) | - | 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 | - | The index of the item in the list. Improves performance when specified by avoiding the need to calculate the index automatically from the DOM. |
| nativeButton | boolean | false | Whether the component renders a native <button> element when replacing it
via the render prop.
Set to true if the rendered element is a native button. |
| disabled | boolean | false | Whether the component should ignore user interaction. |
| children | React.ReactNode | - | - |
| className | string | ((state: Autocomplete.Item.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Item.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Item.State) => ReactElement) | - | 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. |
Item Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-highlighted | - | Present when the item is highlighted. |
| data-disabled | - | Present when the item is disabled. |
Row
Displays a single row of items in a grid list.
Enable grid on the root component to turn the listbox into a grid.
Renders a <div> element.
Row Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Row.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Row.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Row.State) => ReactElement) | - | 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. |
Collection
Renders filtered list items. Doesn't render its own HTML element.
If rendering a flat list, pass a function child to the List component instead, which implicitly wraps it.
Collection Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| children* | ((item: any, index: number) => React.ReactNode) | - | - |
Group
Groups related items with the corresponding label.
Renders a <div> element.
Group Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| items | any[] | - | Items to be rendered within this group.
When provided, child Collection components will use these items. |
| className | string | ((state: Autocomplete.Group.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Group.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Group.State) => ReactElement) | - | 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. |
Group Data Attributes:
| Attribute | Type | Description |
|---|---|---|
| data-popup-open | - | Present when the corresponding popup is open. |
| data-popup-side | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | null | Indicates which side the corresponding popup is positioned relative to its anchor. |
| data-list-empty | - | Present when the corresponding items list is empty. |
| data-pressed | - | Present when the input group is pressed. |
| data-disabled | - | Present when the component is disabled. |
| data-readonly | - | Present when the component is readonly. |
| data-valid | - | Present when the component is in a valid state (when wrapped in Field.Root). |
| data-invalid | - | Present when the component is in an invalid state (when wrapped in Field.Root). |
| data-dirty | - | Present when the component's value has changed (when wrapped in Field.Root). |
| data-touched | - | Present when the component has been touched (when wrapped in Field.Root). |
| data-filled | - | Present when the component has a value (when wrapped in Field.Root). |
| data-focused | - | Present when the component is focused (when wrapped in Field.Root). |
GroupLabel
An accessible label that is automatically associated with its parent group.
Renders a <div> element.
GroupLabel Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.GroupLabel.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.GroupLabel.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.GroupLabel.State) => ReactElement) | - | 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. |
Separator
A visual separator between items or groups.
Renders a <div> element.
Separator Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| orientation | Orientation | 'horizontal' | The orientation of the separator. |
| className | string | ((state: Autocomplete.Separator.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Separator.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Separator.State) => ReactElement) | - | 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. |
Empty
Renders its children only when the list is empty.
Requires the items prop on the root component.
Announces changes politely to screen readers.
This component's root element must remain mounted in the DOM to announce
changes consistently across screen readers. Avoid hiding or removing the
component itself with display: none, hidden, aria-hidden, or conditional
rendering. Prefer updating or conditionally rendering its children instead.
Renders a <div> element.
Empty Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Empty.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Empty.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Empty.State) => ReactElement) | - | 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. |
Status
Displays a status message whose content changes are announced politely to screen readers.
Useful for conveying the status of an asynchronously loaded list.
This component's root element must remain mounted in the DOM to announce
changes consistently across screen readers. Avoid hiding or removing the
component itself with display: none, hidden, aria-hidden, or conditional
rendering. Prefer updating or conditionally rendering its children instead.
Renders a <div> element.
Status Props:
| Prop | Type | Default | Description |
|---|---|---|---|
| className | string | ((state: Autocomplete.Status.State) => string | undefined) | - | CSS class applied to the element, or a function that returns a class based on the component's state. |
| style | React.CSSProperties | ((state: Autocomplete.Status.State) => React.CSSProperties | undefined) | - | Style applied to the element, or a function that returns a style object based on the component's state. |
| render | ReactElement | ((props: HTMLProps, state: Autocomplete.Status.State) => ReactElement) | - | 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. |
useFilter
Matches items against a query using Intl.Collator for robust string matching.
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
| options? | AutocompleteFilterOptions | {} | - |
Return Value:
type ReturnValue = AutocompleteFilter;useFilteredItems
Returns the internally filtered items. Treat the result as read-only: it is internal state and may be a shared frozen array.
Return Value:
type ReturnValue = T[];Additional Types
Accessibility
- Name the input with a
<label>element or anaria-label. Autocomplete.Inputrendersrole="combobox",Autocomplete.Listrendersrole="listbox", and eachAutocomplete.Itemrendersrole="option".- Arrow Down and Up move the highlight through the items.
loopFocuswraps at the ends. Escape closes the popup. modesetsaria-autocompleteon the input tolist,both,inline, ornone.Autocomplete.StatusandAutocomplete.Emptyannounce their content politely, which covers async loading and empty results.- Items expose
data-highlightedanddata-disabledfor styling those states. Autocomplete.GroupLabelis associated with its parent group.