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

    Interface ListboxOptionSnapshot

    Immutable per-option semantic metadata.

    interface ListboxOptionSnapshot {
        disabled: boolean;
        id: string;
        role: "option";
        selected: boolean;
        text: string;
        value: string;
    }
    Index

    Properties

    disabled: boolean

    Value for aria-disabled.

    id: string

    Stable option ID.

    role: "option"

    Option role for consumer markup.

    selected: boolean

    Value for aria-selected.

    text: string

    Human-readable typeahead text.

    value: string

    Consumer selection value.