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

    Interface ComboboxOption

    Combobox option with a required consumer value.

    interface ComboboxOption {
        disabled?: boolean;
        id: string;
        text: string;
        value: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    disabled?: boolean

    Whether keyboard navigation and selection skip the item.

    id: string

    Stable consumer-provided identifier.

    text: string

    Text used for typeahead and search.

    value: string

    Consumer value committed on selection.