Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Configuration for a single dropdown menu item.

    interface DropdownItem {
        active?: boolean;
        disabled?: boolean;
        dividerBefore?: boolean;
        icon?: string;
        id: string;
        label: string;
        onClick: () => void;
        shortcut?: string;
    }
    Index

    Properties

    active?: boolean

    Whether the item is currently active/selected

    disabled?: boolean

    Whether the item is disabled and cannot be clicked

    dividerBefore?: boolean

    Whether to show a divider line before this item

    icon?: string

    Optional icon class (e.g., codicon class name)

    id: string

    Unique identifier for the dropdown item

    label: string

    Display text for the menu item

    onClick: () => void

    Callback function executed when item is clicked

    shortcut?: string

    Optional keyboard shortcut display text