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

    Interface SplitResizeEvent

    Event emitted when the split sizes change.

    Sizes are expressed as a [first, second] tuple where each value is the percentage of the container occupied by that panel.

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

    Properties

    Properties

    orientation: SplitOrientation

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

    sizes: readonly [number, number]

    Panel sizes as percentages (0–100).