vira - v27.0.0
    Preparing search index...

    Type Alias ShowPopoverResult

    Output type from PopoverManager.showPopover

    type ShowPopoverResult = {
        popDown: boolean;
        popRight: boolean;
        positions: { container: PositionRect; diff: DiffRect; root: PositionRect };
    }
    Index

    Properties

    popDown: boolean

    Indicates if the popover should pop in the downwards direction or not. If not, it should pop in the upwards direction. This is determined by how much space is available on either vertical side of the root element.

    popRight: boolean

    Indicates if the popover should pop in the rightwards direction or not. If not, it should pop in the leftwards position. This is determined by how much space is available on either horizontal side of the root element.

    positions: { container: PositionRect; diff: DiffRect; root: PositionRect }