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

Hierarchy

  • SelectPanelOptions
    • MultiSelectPanelOptions

Properties

multiple: true

Indicates multiple options 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)