UNPKG

@hipsterbrown/downshift

Version:

🏎 A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete, combobox or select dropdown components.

11 lines (10 loc) 299 B
export interface A11yStatusMessageOptions<Item> { highlightedIndex: number | null; inputValue: string; isOpen: boolean; itemToString: (item: Item | null) => string; previousResultCount: number; resultCount: number; highlightedItem: Item; selectedItem: Item | null; }