Combobox
v1.0.9Updated 27 Aug 2026Searchable single- or multi-select that composes Popover + Command. Hand-rolled — single via Combobox, multi via MultiCombobox.
Preview
Live · 10 stories▸Why this is recommendedcomboboxselectsearchautocomplete+4
The default, out-of-the-box Combobox.
- ✓Choice fields with more than 10 options
- ✓Country / language pickers with search
- ✓Owner or assignee selectors on a task form
- ✓Picking a framework, category, or status from a long list
- ✓Any select where the user needs to type to narrow the list
- Searchable single-select with a filter input
- Opt-in multiple mode (checkbox rows + chips)
- Flat or grouped options with headings and separators
- Custom trigger via the `trigger` prop
- Server-side filtering hook via `onSearchChange`
- Disabled options and disabled field
- Composes Popover + Command
- ✕Small choice sets (use Select or RadioGroup)
- ✕Free-text entry (use Input)
- ✕Options fetched per keystroke with loading and error states (use ComboboxAsync)
- ✕Dedicated multi-select with an overflow count (use MultiCombobox)
Install
Ask your agent, or call the MCP tool directly. The resolved bundle is written into your project.
Usage
Tick variants in the left menu — each adds a tab with that variant’s real story source, the same code the preview above renders.
Props
optionsFlat or grouped options; grouped entries render headings with separators
yesvalueSelected value — string in single mode, string[] when `multiple`
—onValueChangeFires on select/deselect; signature follows `multiple`
—multipleMulti-select mode: checkbox rows, chips in the trigger, popover stays open
—placeholderTrigger text when nothing is selected (default "Select…")
—searchPlaceholderPlaceholder for the filter input (default "Search…")
—emptyMessageShown when no option matches (default "No results.")
—onSearchChangeCalled as the user types — use it to fetch/filter options server-side
—triggerReplace the default trigger button; the forwarded ref stays on the default trigger
—disabledDisable the trigger
—contentClassNameClass applied to the popover content
—