Interface UISuggestionDropdown

UISuggestionDropdown is a dropdown UI element for multi-selection suggestions.

Unlike UIDropdown which handles single selection, this allows users to select multiple suggestions from a predefined list.

The associated value is an array of strings representing the IDs of selected entries. If no entries are selected, use an empty array [] or omit the value entry.

interface UISuggestionDropdown {
    disabled?: boolean;
    entries: DropdownEntry[];
    id: string;
    label: string;
    tooltip?: string;
    type: "suggestionDropdown";
}

Hierarchy

Properties

disabled?: boolean
entries: DropdownEntry[]
id: string
label: string
tooltip?: string
type: "suggestionDropdown"

Generated using TypeDoc