Combobox

Loading Empty

A combobox with the two forgotten states: skeleton bars while the list is on its way, and a useful empty state with ready-made queries instead of "nothing found".

What you can change

  • the row source through options and the ready queries through suggestions
  • the wait through delay and the starting query through defaultQuery
  • the state texts through loadingLabel, emptyLabel and emptyHint

A link for your AI agent: preview, code and instructions.

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.
AI
1Pick it here

put this on the home page as the hero:

https://vibeui.ru/c/combobox-008?lang=en&theme=dark

2Paste into the chat
3Get it in your project

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-008-* palette. Client component: there are two states — the typed query and the shown one — and the waiting state is derived from them: while the shown one has not caught up with the typed one, the list counts as in transit, and there is no separate loading flag. useEffect only sets a timer on delay and clears it on the next keystroke, so a stale answer does not overwrite a fresh one, and there is no synchronous setState in the effect body. The panel keeps a min-height and the skeletons repeat the row height — the panel does not jump when the state changes. The field declares aria-busy while waiting and the skeleton block is a role="status" with a caption, so the loading is spoken. An empty result does not end at a message: below it lie buttons with queries that are known to return something. The list is hidden with the hidden attribute rather than removed — aria-controls has to point at an existing node.

Tags

  • combobox
  • loading
  • empty state
  • skeleton
Component source

The same file your agent installs. Here in case you would rather copy it by hand.

Loading…