gnome-ui
Components

Combobox

A text input that provides a list of suggested options, allowing users to select an existing value or type a new one.

Combobox component
import * as React from 'react';
import { Combobox } from 'gnome-ui/combobox';
import { ChevronDown, Check } from 'lucide-react';

const frameworks = ['React', 'Vue', 'Angular', 'Svelte', 'Ember', 'Solid', 'Next.js'];

export function ComboboxDefault() {
  return (
    <Combobox.Root className="relative w-72">
      <div className="flex h-10 w-full items-center justify-between rounded-xl border border-input bg-card px-3 text-sm text-foreground shadow-sm transition-colors focus-within:border-primary focus-within:outline focus-within:outline-2 focus-within:outline-offset-2 focus-within:outline-ring">
        <Combobox.Input 
          className="flex-1 bg-transparent outline-none placeholder:text-muted-foreground" 
          placeholder="Select a framework..." 
        />
        <Combobox.Trigger className="ml-2 shrink-0 text-muted-foreground hover:text-foreground">
          <Icons.ChevronDown className="size-4" />
        </Combobox.Trigger>
      </div>
      
      <Combobox.Portal>
        <Combobox.Positioner className="z-50 w-[var(--anchor-width)]" sideOffset={4}>
          <Combobox.Popup className="overflow-hidden rounded-xl border border-border bg-popover p-1 text-popover-foreground shadow-md outline-none">
            <Combobox.List className="max-h-60 overflow-y-auto">
              <Combobox.Empty className="py-6 text-center text-sm text-muted-foreground">
                No results found.
              </Combobox.Empty>
              {frameworks.map((fw) => (
                <Combobox.Item 
                  key={fw} 
                  value={fw} 
                  className="relative flex w-full cursor-default select-none items-center rounded-md py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[highlighted]:bg-primary data-[highlighted]:text-primary-foreground"
                >
                  <Combobox.ItemIndicator className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
                    <Icons.Check className="size-4" strokeWidth={3} />
                  </Combobox.ItemIndicator>
                  {fw}
                </Combobox.Item>
              ))}
            </Combobox.List>
          </Combobox.Popup>
        </Combobox.Positioner>
      </Combobox.Portal>
    </Combobox.Root>
  );
}

Anatomy

import { Combobox } from 'gnome-ui/combobox';

<Combobox.Root>
  <Combobox.Input />
  <Combobox.Trigger>
    <Combobox.Icon />
  </Combobox.Trigger>
  <Combobox.Portal>
    <Combobox.Positioner>
      <Combobox.Popup>
        <Combobox.List>
          <Combobox.Item>
            <Combobox.ItemIndicator />
          </Combobox.Item>
        </Combobox.List>
      </Combobox.Popup>
    </Combobox.Positioner>
  </Combobox.Portal>
</Combobox.Root>

Examples

Multiple Selection with Chips

Combobox supports multiple selections. You can use the Combobox.Chips and Combobox.Chip components to render the selected values inside the input area.

Combobox component
import * as React from 'react';
import { Combobox } from 'gnome-ui/combobox';
import { Check, X } from 'lucide-react';

const frameworks = ['React', 'Vue', 'Angular', 'Svelte', 'Ember', 'Solid', 'Next.js'];

export function ComboboxMultiple() {
  const [value, setValue] = React.useState<string[]>(['React', 'Vue']);

  return (
    <Combobox.Root multiple value={value} onValueChange={setValue} className="relative w-full max-w-md">
      <div className="flex min-h-10 w-full flex-wrap items-center gap-1.5 rounded-xl border border-input bg-card p-1.5 text-sm text-foreground shadow-sm transition-colors focus-within:border-primary focus-within:outline focus-within:outline-2 focus-within:outline-offset-2 focus-within:outline-ring">
        <Combobox.Chips className="flex flex-wrap items-center gap-1.5">
          {value.map((val) => (
            <Combobox.Chip 
              key={val} 
              value={val}
              className="flex items-center gap-1 rounded-md bg-secondary px-2 py-1 text-xs font-medium text-secondary-foreground"
            >
              {val}
              <Combobox.ChipRemove className="ml-1 rounded-full text-muted-foreground hover:bg-muted-foreground/20 hover:text-foreground focus-visible:outline focus-visible:outline-2 focus-visible:outline-ring">
                <Icons.X className="size-3" />
              </Combobox.ChipRemove>
            </Combobox.Chip>
          ))}
        </Combobox.Chips>
        <Combobox.Input 
          className="flex-1 min-w-[120px] bg-transparent px-2 py-1 outline-none placeholder:text-muted-foreground" 
          placeholder="Add more..." 
        />
      </div>
      
      <Combobox.Portal>
        <Combobox.Positioner className="z-50 w-[var(--anchor-width)]" sideOffset={4}>
          <Combobox.Popup className="overflow-hidden rounded-xl border border-border bg-popover p-1 text-popover-foreground shadow-md outline-none">
            <Combobox.List className="max-h-60 overflow-y-auto">
              <Combobox.Empty className="py-6 text-center text-sm text-muted-foreground">
                No more options.
              </Combobox.Empty>
              {frameworks.map((fw) => (
                <Combobox.Item 
                  key={fw} 
                  value={fw} 
                  className="relative flex w-full cursor-default select-none items-center rounded-md py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[highlighted]:bg-primary data-[highlighted]:text-primary-foreground"
                >
                  <Combobox.ItemIndicator className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
                    <Icons.Check className="size-4" strokeWidth={3} />
                  </Combobox.ItemIndicator>
                  {fw}
                </Combobox.Item>
              ))}
            </Combobox.List>
          </Combobox.Popup>
        </Combobox.Positioner>
      </Combobox.Portal>
    </Combobox.Root>
  );
}

ComboboxArrow

Displays an element positioned against the anchor. Renders a &lt;div&gt; element.

API reference

Root

Groups all parts of the combobox. Doesn't render its own HTML element.

Root Props:

PropTypeDefaultDescription
namestring-Identifies the field when a form is submitted.
defaultValueValue[] | Value | null-The uncontrolled selected value of the combobox when it's initially rendered.To render a controlled combobox, use the value prop instead.
valueValue[] | Value | null-The selected value of the combobox. Use when controlled.
onValueChange((value: Value[] | Value | any | null, eventDetails: Combobox.Root.ChangeEventDetails) => void)-Event handler called when the selected value of the combobox changes.
defaultInputValuestring | number | string[]-The uncontrolled input value when initially rendered.To render a controlled input, use the inputValue prop instead.
inputValuestring | number | string[]-The input value of the combobox. Use when controlled.
onInputValueChange((inputValue: string, eventDetails: Combobox.Root.ChangeEventDetails) => void)-Event handler called when the input value changes.
defaultOpenbooleanfalseWhether the popup is initially open.To render a controlled popup, use the open prop instead.
openboolean-Whether the popup is currently open. Use when controlled.
onOpenChange((open: boolean, eventDetails: Combobox.Root.ChangeEventDetails) => void)-Event handler called when the popup is opened or closed.
autoHighlightbooleanfalseWhether the first matching item is highlighted automatically while filtering.
highlightItemOnHoverbooleantrueWhether moving the pointer over items should highlight them. Disabling this prop allows CSS :hover to be differentiated from the :focus (data-highlighted) state.
actionsRefRefObject<Combobox.Root.Actions | null>-A ref to imperative actions.* unmount: When specified, the combobox will not be unmounted when closed. Instead, the unmount function must be called to unmount the combobox manually. Useful when the combobox's animation is controlled by an external library.
autoCompletestring-Provides a hint to the browser for autofill.
filter((itemValue: Value, query: string, itemToString: ((itemValue: Value) => string) | undefined) => boolean) | null-Filter function used to match items vs input query.
filteredItemsany[] | Group[]-Filtered items to display in the list. When provided, the list will use these items instead of filtering the items prop internally. Use when you want to control filtering logic externally with the useFilter() hook.
gridbooleanfalseWhether list items are presented in a grid layout. When enabled, arrow keys navigate across rows and columns inferred from DOM rows.
inlinebooleanfalseWhether the list is rendered inline without using the popup.
isItemEqualToValue((itemValue: Value, value: Value) => boolean)-Custom comparison logic used to determine if a combobox item value matches the current selected value. Useful when item values are objects without matching referentially. Defaults to Object.is comparison.
itemToStringLabel((itemValue: Value) => string)-When the item values are objects (<Combobox.Item value={object}>), this function converts the object value to a string representation for display in the input. If the shape of the object is { value, label }, the label will be used automatically without needing to specify this prop.
itemToStringValue((itemValue: Value) => string)-When the item values are objects (<Combobox.Item value={object}>), this function converts the object value to a string representation for form submission. If the shape of the object is { value, label }, the value will be used automatically without needing to specify this prop.
itemsany[] | Group[]-The items to be displayed in the list. Can be either a flat array of items or an array of groups with items.
limitnumber-1The maximum number of items to display in the list.
localeIntl.LocalesArgument-The locale to use for string comparison. Defaults to the user's runtime locale.
loopFocusbooleantrueWhether 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.
modalbooleanfalseDetermines 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.
multipleboolean | undefinedfalseWhether multiple items can be selected.
onItemHighlighted((highlightedValue: Value | undefined, eventDetails: Combobox.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 | true | Whether the popup opens when clicking the 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 | Ref<HTMLInputElement> | - | A ref to the hidden input element. | | id | string | - | The id of the component. | | children | ReactNode | - | - |

Value

The current value of the combobox. Doesn't render its own HTML element.

Value Props:

PropTypeDefaultDescription
placeholderReactNode-The placeholder value to display when no value is selected. This is overridden by children if specified, or by a null item's label in items.
childrenReactNode | ((selectedValue: any) => ReactNode)--

Icon

An icon that indicates that the trigger button opens the popup. Renders a <span> element.

Icon Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Icon.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Icon.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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.

Input

A text input to search for items in the list. Renders an <input> element.

Input Props:

PropTypeDefaultDescription
disabledbooleanfalseWhether the component should ignore user interaction.
classNamestring | ((state: Combobox.Input.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Input.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-popup-open-Present when the corresponding popup is open.
data-popup-side'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | nullIndicates 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 valid state (when wrapped in Field.Root).
data-invalid-Present when the component is in 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).

Clear

Clears the value when clicked. Renders a <button> element.

Clear Props:

PropTypeDefaultDescription
nativeButtonbooleantrueWhether 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 (e.g. <div>).
disabledbooleanfalseWhether the component should ignore user interaction.
classNamestring | ((state: Combobox.Clear.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Clear.State) => CSSProperties | undefined)--
keepMountedbooleanfalseWhether the component should remain mounted in the DOM when not visible.
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-popup-open-Present when the corresponding popup is open.
data-disabled-Present when the button is disabled.
data-starting-style-Present when the button is animating in.
data-ending-style-Present when the button is animating out.

Trigger

A button that opens the popup. Renders a <button> element.

Trigger Props:

PropTypeDefaultDescription
nativeButtonbooleantrueWhether 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 (e.g. <div>).
disabledbooleanfalseWhether the component should ignore user interaction.
classNamestring | ((state: Combobox.Trigger.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Trigger.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-popup-open-Present when the corresponding popup is open.
data-popup-side'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start' | nullIndicates 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 valid state (when wrapped in Field.Root).
data-invalid-Present when the component is in 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).
data-placeholder-Present when the combobox doesn't have a value.

Chips

A container for the chips in a multiselectable input. Renders a <div> element.

Chips Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Chips.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Chips.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.Chips.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.

Chip

An individual chip that represents a value in a multiselectable input. Renders a <div> element.

Chip Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Chip.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Chip.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.Chip.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.

ChipRemove

A button to remove a chip. Renders a <button> element.

ChipRemove Props:

PropTypeDefaultDescription
nativeButtonbooleantrueWhether 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 (e.g. <div>).
classNamestring | ((state: Combobox.ChipRemove.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.ChipRemove.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.ChipRemove.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.

List

A list container for the items. Renders a <div> element.

List Props:

PropTypeDefaultDescription
childrenReactNode | ((item: any, index: number) => ReactNode)--
classNamestring | ((state: Combobox.List.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.List.State) => CSSProperties | undefined)-*
renderReactElement | ((props: HTMLProps, state: Combobox.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.

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:

PropTypeDefaultDescription
containerHTMLElement | ShadowRoot | RefObject<HTMLElement | ShadowRoot | null> | null-A parent element to render the portal element into.
classNamestring | ((state: Combobox.Portal.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Portal.State) => CSSProperties | undefined)--
keepMountedbooleanfalseWhether to keep the portal mounted in the DOM while the popup is hidden.
renderReactElement | ((props: HTMLProps, state: Combobox.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:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Backdrop.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Backdrop.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-open-Present when the popup is open.
data-closed-Present when the popup is closed.
data-starting-style-Present when the popup is 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:

PropTypeDefaultDescription
disableAnchorTrackingbooleanfalseWhether to disable the popup from tracking any layout shift of its positioning anchor.
alignAlign'center'How to align the popup relative to the specified side.
alignOffsetnumber | OffsetFunction0Additional 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 \| 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. | | 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: Combobox.Positioner.State) => string \| undefined) | - | CSS class applied to the element, or a function that returns a class based on the component’s state. | | style | CSSProperties \| ((state: Combobox.Positioner.State) => CSSProperties \| undefined) | - | - | | render | ReactElement \| ((props: HTMLProps, state: Combobox.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. |

Positioner Data Attributes:

AttributeTypeDescription
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:

VariableTypeDefaultDescription
--anchor-heightnumber-The anchor's height.
--anchor-widthnumber-The anchor's width.
--available-heightnumber-The available height between the trigger and the edge of the viewport.
--available-widthnumber-The available width between the trigger and the edge of the viewport.
--transform-originstring-The coordinates that this element is anchored to. Used for animations and transitions.

A container for the list. Renders a <div> element.

Popup Props:

PropTypeDefaultDescription
initialFocusboolean | 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 \| 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: Combobox.Popup.State) => string \| undefined) | - | CSS class applied to the element, or a function that returns a class based on the component’s state. | | style | CSSProperties \| ((state: Combobox.Popup.State) => CSSProperties \| undefined) | - | - | | render | ReactElement \| ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-open-Present when the popup is open.
data-closed-Present when the popup is closed.
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-instant'click' | 'dismiss'Present if animations should be instant.
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 is 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:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Arrow.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Arrow.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
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.

Status

Displays a status message whose content changes are announced politely to screen readers. Useful for conveying the status of an asynchronously loaded list. Renders a <div> element.

Status Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Status.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Status.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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.

Empty

Renders its children only when the list is empty. Requires the items prop on the root component. Announces changes politely to screen readers. Renders a <div> element.

Empty Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Empty.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Empty.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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.

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:

PropTypeDefaultDescription
children((item: any, index: number) => ReactNode)--

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:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.Row.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Row.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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.

Item

An individual item in the list. Renders a <div> element.

Item Props:

PropTypeDefaultDescription
valueanynullA unique value that identifies this item.
onClick((event: BaseUIEvent<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.
indexnumber-The index of the item in the list. Improves performance when specified by avoiding the need to calculate the index automatically from the DOM.
nativeButtonbooleanfalseWhether 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.
disabledbooleanfalseWhether the component should ignore user interaction.
childrenReactNode--
classNamestring | ((state: Combobox.Item.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Item.State) => CSSProperties | undefined)-*
renderReactElement | ((props: HTMLProps, state: Combobox.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:

AttributeTypeDescription
data-selected-Present when the item is selected.
data-highlighted-Present when the item is highlighted.
data-disabled-Present when the item is disabled.

ItemIndicator

Indicates whether the item is selected. Renders a <span> element.

ItemIndicator Props:

PropTypeDefaultDescription
childrenReactNode--
classNamestring | ((state: Combobox.ItemIndicator.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.ItemIndicator.State) => CSSProperties | undefined)-*
keepMountedbooleanfalseWhether to keep the HTML element in the DOM when the item is not selected.
renderReactElement | ((props: HTMLProps, state: Combobox.ItemIndicator.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

Groups related items with the corresponding label. Renders a <div> element.

Group Props:

PropTypeDefaultDescription
itemsany[]-Items to be rendered within this group. When provided, child Collection components will use these items.
classNamestring | ((state: Combobox.Group.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.Group.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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.

GroupLabel

An accessible label that is automatically associated with its parent group. Renders a <div> element.

GroupLabel Props:

PropTypeDefaultDescription
classNamestring | ((state: Combobox.GroupLabel.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Combobox.GroupLabel.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: Combobox.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 separator element accessible to screen readers. Renders a <div> element.

Separator Props:

PropTypeDefaultDescription
orientationOrientation'horizontal'The orientation of the separator.
classNamestring | ((state: Separator.State) => string | undefined)-CSS class applied to the element, or a function that returns a class based on the component’s state.
styleCSSProperties | ((state: Separator.State) => CSSProperties | undefined)--
renderReactElement | ((props: HTMLProps, state: 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.

useFilter

Matches items against a query using Intl.Collator for robust string matching. This hook is used when externally filtering items. Pass the result to the filter prop of <Combobox.Root>.

Input parameters

Accepts all Intl.CollatorOptions, plus the following options:

Props:

PropTypeDefaultDescription
localeIntl.LocalesArgument-The locale to use for string comparison.
multiplebooleanfalseWhether the combobox is in multiple selection mode.
valueany-The current value of the combobox. For single selection, pass this so all items are visible when the query is empty or matches the selection.

Return value

Return Value:

PropertyTypeDescription
contains(itemValue: any, query: string, itemToString?: (itemValue) => string) => booleanReturns whether the item matches the query anywhere.
startsWith(itemValue: any, query: string, itemToString?: (itemValue) => string) => booleanReturns whether the item starts with the query.
endsWith(itemValue: any, query: string, itemToString?: (itemValue) => string) => booleanReturns whether the item ends with the query.

useFilteredItems

Returns the internally filtered items when called inside <Combobox.Root>.

Return value

Return Value:

PropertyTypeDescription
filteredItemsany[]The filtered items.

On this page