@cartridge-engine/keyboard-engine
    Preparing search index...

    Type Alias FocusTargetsMap<TFocusTarget>

    Focus targets of one named focus group: the target map keyed by focus id, plus the order in which the group's targets are cycled during automatic focus switching.

    type FocusTargetsMap<TFocusTarget extends BaseFocusTarget> = {
        map: Map<string, TFocusTarget>;
        order: string[];
    }

    Type Parameters

    • TFocusTarget extends BaseFocusTarget

      The focus-target variant held by the group (element-level or page-level).

    Index
    map: Map<string, TFocusTarget>

    Focus targets of the group, keyed by their focus id.

    order: string[]

    Order in which the group's targets are cycled during automatic focus switching.