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

    Interface KeyRuleContainer

    Minimal shape shared by ScreenKeyboardLayer and FocusTarget — any object that holds allowedKeys, penetrationKeys, and stoppedKeys as KeyRule arrays.

    interface KeyRuleContainer {
        allowedKeys?: KeyRule[];
        penetrationKeys: KeyRule[];
        stoppedKeys: KeyRule[];
    }
    Index
    allowedKeys?: KeyRule[]

    Keys allowed to pass through the modal barrier (present on modal elements).

    penetrationKeys: KeyRule[]

    Key rules marked as transparent (pass-through to lower layers or focus targets).

    stoppedKeys: KeyRule[]

    Key rules stopped here (propagation barrier).