Combobox
Ranked Matches
A search where matches are ordered by relevance and the matched fragment is highlighted: the start of a string outranks the start of a word, and mid-word matches come last.
What you can change
- label — the field caption
- placeholder — the hint text in the field
- options — the list of strings to search
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-015?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, zero dependencies, its own palette in the local --vibeui-combobox-015-* variables. Client component: the query and the value live in useState. The ranking is done by the scoreOf function: it returns a rank (0 for a match at the start of the string, 1 at the start of a word, 2 inside a word) and the position of the occurrence. The sort goes by rank, then by position, then alphabetically — three keys give a stable order with no jitter while typing. The highlighting does not use dangerouslySetInnerHTML: the string is cut into three pieces by index and the middle one is wrapped in a semantic <mark>, so the highlighting survives any text, including markup characters. The rank is labelled in words on the right, so that the order is explainable rather than magical.
Tags
- combobox
- search
- ranking
- highlight
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…