Dockview
    Preparing search index...

    Interface FloatingGroupDragContext

    Context handed to DockviewOptions.transformFloatingGroupDrag on each pointer-move frame while a floating group is being dragged.

    interface FloatingGroupDragContext {
        container: { height: number; width: number };
        group: DockviewGroupPanel;
        others: readonly Box[];
        proposed: Box;
    }
    Index

    Properties

    container: { height: number; width: number }

    Size of the container the floating group is dragged within.

    The floating group being dragged.

    others: readonly Box[]

    Bounds of the other floating groups (relative to the same container), snapshotted at drag start.

    proposed: Box

    Proposed top-left + size this frame, in container pixels (pre-clamp).