Forms
Combobox
Searchable, long or remote lists.
@codeways/ui/combobox
Static options
Searchable single-select - filters client-side as you type (label + description).
with a value
empty, allowClear off
disabled
invalid
Usage
import { Combobox, type ComboboxOption } from "@codeways/ui/combobox";
const clients: ComboboxOption[] = [
{ value: "acme", label: "Acme Pty Ltd", description: "[email protected]" },
];
<Combobox value={clientId} onChange={setClientId} options={clients} placeholder="Select a client..." />