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

    Interface representing a focusable element.

    interface IFocusable {
        _hid?: string;
        canReceiveFocus: boolean;
        contentId?: string;
        id: string;
        isFocused: boolean;
        parent?: IFocusable;
        findNextFocusable(
            event: INextFocusResolutionEvent,
        ): undefined | IFocusable | NextViewFocus;
        onBlur(): void;
        onFocus(event?: INextFocusResolutionEvent): void;
        onFocusedChildChange(childId: string): void;
        onKeyEvent(keyEvent: KeyEvent): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _hid?: string
    canReceiveFocus: boolean

    Indicates whether the element can receive focus.

    contentId?: string
    id: string
    isFocused: boolean

    Indicates whether the element is currently focused.

    parent?: IFocusable

    The parent focusable element, if any.

    Methods