hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface INextFocusResolutionEvent

    Interface representing an event for resolving the next focusable element.

    interface INextFocusResolutionEvent {
        direction: api.Direction;
        originView: IFocusable;
        previousView?: IFocusable;
        sourceKeyEvent?: KeyEvent<IHosannaView<ViewState>>;
        view?: IHosannaView<ViewState>;
    }
    Index

    Properties

    direction: api.Direction

    The direction in which the focus is moving.

    originView: IFocusable

    The view from which the focus is moving.

    previousView?: IFocusable

    The parent of the view from which the focus is moving.

    sourceKeyEvent?: KeyEvent<IHosannaView<ViewState>>

    The last key event that triggered the focus change.

    view?: IHosannaView<ViewState>

    The view to which the focus is moving.