Dockview
    Preparing search index...

    Interface DockviewOverflowOptions

    Tab-header overflow behaviour. One shared block across the overflow axis: mode chooses dropdown vs wrap; the remaining fields enrich the dropdown. Each capability names the module it needs; without that module the field is ignored and the free single-row strip + dropdown is used.

    interface DockviewOverflowOptions {
        maxRows?: number;
        mode?: "dropdown" | "wrap";
        mru?: boolean;
        search?: boolean | { placeholder?: string; scope?: "overflow" | "group" };
    }
    Index

    Properties

    maxRows?: number

    Wrap mode only: cap the number of header rows. The strip grows to at most maxRows rows; tabs that would land on a row beyond the cap spill into the overflow dropdown instead. Requires the MultiRowTabsModule. Default: unbounded (wrap grows to fit every tab).

    mode?: "dropdown" | "wrap"

    What happens when tabs don't fit. Default 'dropdown' (today's free path). 'wrap' requires the MultiRowTabsModule.

    mru?: boolean

    Order the dropdown by most-recently-activated. Reserved for AdvancedOverflowModule; ignored until present. Default: false.

    search?: boolean | { placeholder?: string; scope?: "overflow" | "group" }

    Filter input over the group's tabs. Reserved for AdvancedOverflowModule; ignored until that module is present. Default: false.