Strata - v1.4.10
    Preparing search index...

    Interface DebugPanelConfig

    Configuration for creating a debug panel.

    interface DebugPanelConfig {
        collapsed?: boolean;
        debounce?: number;
        fill?: boolean;
        flat?: boolean;
        hidden?: boolean;
        name?: string;
        oneLineLabels?: boolean;
        position?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
        theme?: Partial<DebugPanelTheme>;
        titleBar?: boolean | { drag?: boolean; filter?: boolean; title?: string };
    }
    Index

    Properties

    collapsed?: boolean

    Whether the panel is collapsed by default.

    debounce?: number

    Debounce delay in milliseconds for control updates.

    fill?: boolean

    Whether the panel should fill its container.

    flat?: boolean

    Whether to disable nested folders.

    hidden?: boolean

    Whether the panel is hidden by default.

    name?: string

    Unique store name for the panel.

    oneLineLabels?: boolean

    Whether to show labels on the same line as inputs.

    position?: "top-left" | "top-right" | "bottom-left" | "bottom-right"

    Fixed position of the panel on screen.

    theme?: Partial<DebugPanelTheme>

    Custom theme overrides for visual appearance.

    titleBar?: boolean | { drag?: boolean; filter?: boolean; title?: string }

    Configuration for the interactive title bar.