@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface DashboardPanelConfig

    Static configuration for a single dashboard panel.

    Passed as the [config] input to <ui-dashboard-panel>.

    interface DashboardPanelConfig {
        collapsible?: boolean;
        icon?: string;
        id: string;
        placement?: DashboardGridPlacement;
        removable?: boolean;
        title: string;
    }
    Index

    Properties

    collapsible?: boolean

    Whether the panel body can be collapsed by the user. Defaults to false.

    icon?: string

    SVG icon content for the panel header and dock chip. Pass an SVG inner-content string (e.g. from UIIcons.Lucide.*). Falls back to the dashboard's defaultDockIcon when omitted.

    id: string

    Unique identifier for this panel.

    Grid placement (column / row span).

    removable?: boolean

    Whether the panel can be removed (hidden) by the user. Defaults to false.

    title: string

    Display title rendered in the panel header.