Rezi
    Preparing search index...

    Type Alias DropdownRoutingCtx

    DropdownRoutingCtx: Readonly<
        {
            dropdownId: string;
            items: readonly DropdownItem[];
            onClose?: () => void;
            onSelect?: (item: DropdownItem) => void;
            selectedIndex: number;
        },
    >

    Dropdown routing context.