interface SingleSelectPanelOptions {
    multiple?: false;
    options: SelectPanelOption[];
    search?: boolean;
    searchPlaceholderText?: string;
    selected?: number;
}

Hierarchy

  • SelectPanelOptions
    • SingleSelectPanelOptions

Properties

multiple?: false

Indicates a single option can be selected.

List of options.

search?: boolean

Indicates whether a search input is shown. Defaults to false.

searchPlaceholderText?: string

Text to use for the search input placeholder. Defaults to "Search".

selected?: number

The indexes of the options that are selected (optional)