UNPKG

748 BTypeScriptView Raw
1/**
2 * defines a focus group
3 */
4export declare const FOCUS_GROUP = "data-focus-lock";
5/**
6 * disables element discovery inside a group marked by key
7 */
8export declare const FOCUS_DISABLED = "data-focus-lock-disabled";
9/**
10 * allows uncontrolled focus within the marked area, effectively disabling focus lock for it's content
11 */
12export declare const FOCUS_ALLOW = "data-no-focus-lock";
13/**
14 * instructs autofocus engine to pick default autofocus inside a given node
15 * can be set on the element or container
16 */
17export declare const FOCUS_AUTO = "data-autofocus-inside";
18/**
19 * instructs autofocus to ignore elements within a given node
20 * can be set on the element or container
21 */
22export declare const FOCUS_NO_AUTOFOCUS = "data-no-autofocus";