ComboboxHandle

View Source

Signature

interface ComboboxHandle {
  activeOptionId: string | null;
  close: () => void;
  id: string;
  inputText: string;
  isOpen: boolean;
  label: string | null;
  open: (strategy?: ComboboxOpenStrategy) => Promise<void>;
  value: string | null;
}