Skip to content

remix/ui/combobox/primitives · Interface

View Source

ComboboxHandle

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
}