@moxijs/ui - v0.3.5
    Preparing search index...

    Interface Focusable

    Interface for focusable UI components

    interface Focusable {
        tabIndex: number;
        canFocus(): boolean;
        isFocused(): boolean;
        onBlur(): void;
        onFocus(): void;
    }
    Index

    Properties

    tabIndex: number

    The tab index for focus order (lower values focused first)

    Methods