Combobox
Clearable Value
A clearable combobox: the selected value sits as a chip in the field, the cross removes it and keeps focus in place, and the dropped value can be restored in one press.
What you can change
- the list content through options and the initial value through defaultValue
- the cross caption through clearLabel and the undo caption through undoLabel
- the status line through droppedText, selectedText and emptyText: {value} stands for the value
A link for your AI agent: preview, code and instructions.
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this on the home page as the hero:
https://vibeui.ru/c/combobox-011?lang=en&theme=dark
Not sure where to paste it? Step-by-step guide
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
Loading…
For developers
The install command lives in the “Component source” block below — a signed link that stays valid for 24 hours.
Technical notes
The component is self-contained: one file, no dependencies, its own --vibeui-combobox-011-* palette. Client component: useState holds the value, the dropped value, the query and the cursor. The chip with the value and the filter field lie in one container, and the focus ring is put on the container through :has(input:focus-visible) — visually this is one element, so the focus is shared too. The cross carries an aria-label with the value itself: "Clear" without a name is useless in a row of filters. After clearing, focus stays in the field so that filters can be changed one after another without a mouse. Escape first erases the query and then drops the value — two steps instead of one. The line below with aria-live="polite" reports the state and offers to bring the dropped value back.
Tags
- combobox
- clear
- filter
- undo
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…