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

    Type Alias NavigationInputs

    Inputs for controlling navigation.

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

    Set to true to allow navigation to wrap.

    direction: NavDirection

    The direction to navigate within the tree. Note that 1 dimensional navigation treads up and left as the same, down and right as the same.

    shouldSkipHoles?: boolean

    Skip vertical target rows when the current x slot is empty.

    When this is false, vertical navigation stays on the adjacent target row by selecting the nearest lower x slot, then the nearest higher x slot if no lower slot exists.

    false