ListboxProviderProps

View Source

Signature

interface ListboxProviderProps {
  activeValue: ListboxValue;
  children?: RemixNode;
  flashSelection?: boolean;
  onHighlight: (value: ListboxValue, option?: ListboxRegisteredOption) => void;
  onSelect: (value: ListboxValue, option?: ListboxRegisteredOption) => void;
  onSelectSettled?: (
    value: ListboxValue,
    option?: ListboxRegisteredOption,
  ) => void | Promise<void>;
  ref?: (ref: ListboxRef) => void;
  selectionFlashAttribute?: string;
  value: ListboxValue;
}