Member Junction
    Preparing search index...

    Defines a single menu item in the user context menu

    interface UserMenuItem {
        color?: string;
        cssClass?: string;
        developerOnly: boolean;
        enabled: boolean;
        group: string;
        icon: string;
        id: string;
        label: string;
        order: number;
        shortcut?: string;
        tooltip?: string;
        visible: boolean;
    }
    Index

    Properties

    color?: string

    Optional icon/text color (CSS color value)

    cssClass?: string

    Optional CSS class for custom styling

    developerOnly: boolean

    Whether item requires Developer role to be visible

    enabled: boolean

    Whether the item is currently enabled/clickable

    group: string

    Group ID for organizing items (items with same group have dividers between groups)

    icon: string

    Font Awesome icon class (e.g., 'fa-solid fa-gear')

    id: string

    Unique identifier for the menu item

    label: string

    Display text for the menu item

    order: number

    Sort order within group (lower = higher in menu)

    shortcut?: string

    Optional keyboard shortcut hint

    tooltip?: string

    Optional tooltip text

    visible: boolean

    Whether the item is currently visible (dynamic control)