sesaparcours
    Preparing search index...

    Type Alias MenuItemSubmenu

    type MenuItemSubmenu = {
        ariaLabel?: DynamicValue<string>;
        class?: string;
        columnCount?: number;
        enabled?: DynamicValue<boolean>;
        label?: DynamicValue<string>;
        submenu: MenuItem[];
        submenuClass?: string;
        tooltip?: DynamicValue<string>;
        type?: "submenu";
        visible?: DynamicValue<boolean>;
    }
    Index

    Properties

    ariaLabel?: DynamicValue<string>
    class?: string
    columnCount?: number

    If the menu is arranged in a custom grid, this is the number of columns.

    This property is used for keyboard navigation with the arrow keys.

    Default: 1.

    enabled?: DynamicValue<boolean>
    label?: DynamicValue<string>
    submenu: MenuItem[]
    submenuClass?: string

    The class applied to the submenu container.

    tooltip?: DynamicValue<string>
    type?: "submenu"
    visible?: DynamicValue<boolean>