@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface SplitResizeEvent

    Event emitted when the split sizes change.

    Sizes are expressed as an array of percentages, one per panel, where each value is the percentage of the container occupied by that panel. Values sum to 100.

    interface SplitResizeEvent {
        orientation: SplitOrientation;
        sizes: readonly number[];
    }
    Index

    Properties

    Properties

    orientation: SplitOrientation

    The orientation of the split at the time of the event.

    sizes: readonly number[]

    Panel sizes as percentages (0–100). One entry per <ui-split-panel> child.