UI Headless Runtime API - v1.0.0
    Preparing search index...

    Interface ComboboxSnapshot

    Immutable Combobox snapshot.

    interface ComboboxSnapshot {
        activeId: string | null;
        composing: boolean;
        empty: boolean;
        inputControlled: boolean;
        inputValue: string;
        listboxId: string;
        loading: boolean;
        open: boolean;
        options: readonly ComboboxOption[];
        position: PositionResult | null;
        query: string;
        selectedValue: string | null;
        selectionControlled: boolean;
    }
    Index

    Properties

    activeId: string | null

    Keyboard-active option ID.

    composing: boolean

    Whether an IME composition transaction is active.

    empty: boolean

    Whether no visible option matches a settled query.

    inputControlled: boolean

    Whether input value is consumer-owned.

    inputValue: string

    Current editable input value.

    listboxId: string

    Stable listbox ID for aria-controls.

    loading: boolean

    Whether an async suggestion request is active.

    open: boolean

    Current popup state.

    options: readonly ComboboxOption[]

    Filtered option metadata used by the popup listbox.

    position: PositionResult | null

    Latest collision-aware popup position.

    query: string

    Query used for local or async filtering.

    selectedValue: string | null

    Selected consumer value, if any.

    selectionControlled: boolean

    Whether selected value is consumer-owned.