Interface DockviewOptions

interface DockviewOptions {
    className?: string;
    debug?: boolean;
    defaultRenderer?: "onlyWhenVisible" | "always";
    disableAutoResizing?: boolean;
    disableDnd?: boolean;
    disableFloatingGroups?: boolean;
    floatingGroupBounds?: "boundedWithinViewport" | {
        minimumHeightWithinViewport?: number;
        minimumWidthWithinViewport?: number;
    };
    gap?: number;
    hideBorders?: boolean;
    locked?: boolean;
    popoutUrl?: string;
    rootOverlayModel?: DroptargetOverlayModel;
    singleTabMode?: "fullwidth" | "default";
}

Hierarchy

  • DockviewOptions

    Properties

    className?: string
    debug?: boolean
    defaultRenderer?: "onlyWhenVisible" | "always"
    disableAutoResizing?: boolean

    Disable the auto-resizing which is controlled through a ResizeObserver. Call .layout(width, height) to manually resize the container.

    disableDnd?: boolean
    disableFloatingGroups?: boolean
    floatingGroupBounds?: "boundedWithinViewport" | {
        minimumHeightWithinViewport?: number;
        minimumWidthWithinViewport?: number;
    }

    Type declaration

    • Optional minimumHeightWithinViewport?: number
    • Optional minimumWidthWithinViewport?: number
    gap?: number

    Pixel gap between groups

    hideBorders?: boolean
    locked?: boolean
    popoutUrl?: string
    rootOverlayModel?: DroptargetOverlayModel
    singleTabMode?: "fullwidth" | "default"

    Generated using TypeDoc