File size: 1,552 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
 * A constant object that maps commonly used keyboard keys to their corresponding string values.
 * This object can be used in other parts of the application to handle keyboard input and prevent
 * hard-coded strings throughout.
 */
export declare const kbd: {
    ALT: string;
    ARROW_DOWN: string;
    ARROW_LEFT: string;
    ARROW_RIGHT: string;
    ARROW_UP: string;
    BACKSPACE: string;
    CAPS_LOCK: string;
    CONTROL: string;
    DELETE: string;
    END: string;
    ENTER: string;
    ESCAPE: string;
    F1: string;
    F10: string;
    F11: string;
    F12: string;
    F2: string;
    F3: string;
    F4: string;
    F5: string;
    F6: string;
    F7: string;
    F8: string;
    F9: string;
    HOME: string;
    META: string;
    PAGE_DOWN: string;
    PAGE_UP: string;
    SHIFT: string;
    SPACE: string;
    TAB: string;
    CTRL: string;
    ASTERISK: string;
    A: string;
    P: string;
};
/** Key sets for navigation within lists, such as select, menu, and combobox. */
export declare const FIRST_KEYS: string[];
export declare const LAST_KEYS: string[];
export declare const FIRST_LAST_KEYS: string[];
export declare const SELECTION_KEYS: string[];
export declare const getNextKey: (dir?: 'ltr' | 'rtl', orientation?: 'horizontal' | 'vertical') => string;
export declare const getPrevKey: (dir?: 'ltr' | 'rtl', orientation?: 'horizontal' | 'vertical') => string;
export declare const getDirectionalKeys: (dir?: 'ltr' | 'rtl', orientation?: 'horizontal' | 'vertical') => {
    nextKey: string;
    prevKey: string;
};