SearchableSelectOptions interface presentation exported
Last updated: 2026-03-04T23:21:38.428Z
Metrics
LOC: 12
Complexity: 1
Params: 0
Signature
interface SearchableSelectOptions
Source Code
export interface SearchableSelectOptions {
/** Options or grouped list of options. */
entries: SelectEntry[];
/** Initial selected value. */
value?: string;
/** Placeholder for the search input. */
placeholder?: string;
/** CSS class(es) to add to the root wrapper. */
className?: string;
/** Whether to disable the component. */
disabled?: boolean;
}
No outgoing dependencies.
No incoming dependencies.