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

    Toolbar action configuration for buttons. Actions are sorted by priority (lower number = shown first).

    interface ToolbarAction {
        active?: boolean;
        disabled?: boolean;
        icon?: string;
        id: string;
        label: string;
        onClick: () => void;
        priority: number;
        title?: string;
    }
    Index

    Properties

    active?: boolean

    Whether the action is currently active/selected

    disabled?: boolean

    Whether the action button is disabled

    icon?: string

    Optional icon class (e.g., "codicon codicon-play")

    id: string

    Unique identifier for the action

    label: string

    Display label for the action button

    onClick: () => void

    Callback invoked when the action is clicked

    priority: number

    Priority for overflow handling (lower values shown first, higher overflow first)

    title?: string

    Optional tooltip text shown on hover