device-navigation - v4.9.1
    Preparing search index...

    Type Alias NavigationInputs

    Inputs for controlling navigation.

    type NavigationInputs = {
        allowWrapping: boolean;
        blockPerpendicularNavigation?: boolean;
        direction: NavDirection;
        shouldSkipHoles?: boolean;
    }
    Index
    allowWrapping: boolean

    Set to true to allow navigation to wrap.

    blockPerpendicularNavigation?: boolean

    Prevent a one-dimensional nav tree from using its available axis for perpendicular navigation.

    false
    
    direction: NavDirection

    The direction to navigate within the tree.

    shouldSkipHoles?: boolean

    Skip target rows or columns when the current position is empty.

    When this is false, navigation selects the nearest enabled item in the target row or column.

    false