@byomakase/omakase-player
    Preparing search index...

    Interface OmakaseDropdownListItem

    Single item in the dropdown list.

    interface OmakaseDropdownListItem {
        actionClass?: string;
        active?: boolean;
        label: string;
        value: any;
        [key: string]: any;
    }

    Hierarchy

    • Record<string, any>
      • OmakaseDropdownListItem

    Indexable

    • [key: string]: any
    Index

    Properties

    actionClass?: string

    Class(es) to add to the element displayed after the label text

    active?: boolean

    If true, the dropdown list item will be displayed as selected in the UI.

    label: string

    Label of the dropdown list item that will be displayed in the UI.

    value: any

    Internal value of the dropdown list item that can be used to determine which item is selected. Can be of any type and is not displayed in the UI.