Interface CustomDropdown

Represents a custom dropdown menu with several entries.

Deprecated

Use UIDropdown in the UI configuration instead.

interface CustomDropdown {
    entries: CustomDropdownEntry[];
    id: string;
    initialSelectionEntryId?: string;
    name: string;
    position?: "left" | "right";
}

Properties

id: string
initialSelectionEntryId?: string
name: string
position?: "left" | "right"

Generated using TypeDoc