Member Junction
    Preparing search index...

    Root configuration stored in Workspace.Configuration

    interface WorkspaceConfiguration {
        activeTabId: string | null;
        layout?: LayoutConfig;
        preferences: WorkspacePreferences;
        recordsLayout?: LayoutConfig;
        tabs: WorkspaceTab[];
        theme: "light" | "dark";
        version: number;
    }
    Index

    Properties

    activeTabId: string | null

    ID of currently active tab

    layout?: LayoutConfig

    Golden Layout state (may be undefined if cleared due to corruption)

    User preferences

    recordsLayout?: LayoutConfig

    Golden Layout state for the RECORDS region — the separate layout hosting record tabs under the records-style record-open model. Independent of layout (the main workspace layout) so records never mix into the main tab bar and vice versa.

    tabs: WorkspaceTab[]

    All tabs (replaces WorkspaceItem table)

    theme: "light" | "dark"

    UI theme

    version: number

    Schema version for future migrations