UNPKG

2.52 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright 2018 Google Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 * THE SOFTWARE.
22 */
23declare const cssClasses: {
24 LIST_ITEM_ACTIVATED_CLASS: string;
25 LIST_ITEM_CLASS: string;
26 LIST_ITEM_DISABLED_CLASS: string;
27 LIST_ITEM_SELECTED_CLASS: string;
28 LIST_ITEM_TEXT_CLASS: string;
29 LIST_ITEM_PRIMARY_TEXT_CLASS: string;
30 ROOT: string;
31};
32declare const evolutionClassNameMap: {
33 [x: string]: string;
34};
35declare const deprecatedClassNameMap: {
36 [x: string]: string;
37};
38declare const strings: {
39 ACTION_EVENT: string;
40 SELECTION_CHANGE_EVENT: string;
41 ARIA_CHECKED: string;
42 ARIA_CHECKED_CHECKBOX_SELECTOR: string;
43 ARIA_CHECKED_RADIO_SELECTOR: string;
44 ARIA_CURRENT: string;
45 ARIA_DISABLED: string;
46 ARIA_ORIENTATION: string;
47 ARIA_ORIENTATION_HORIZONTAL: string;
48 ARIA_ROLE_CHECKBOX_SELECTOR: string;
49 ARIA_SELECTED: string;
50 ARIA_INTERACTIVE_ROLES_SELECTOR: string;
51 ARIA_MULTI_SELECTABLE_SELECTOR: string;
52 CHECKBOX_RADIO_SELECTOR: string;
53 CHECKBOX_SELECTOR: string;
54 CHILD_ELEMENTS_TO_TOGGLE_TABINDEX: string;
55 DEPRECATED_SELECTOR: string;
56 FOCUSABLE_CHILD_ELEMENTS: string;
57 RADIO_SELECTOR: string;
58 SELECTED_ITEM_SELECTOR: string;
59};
60declare const numbers: {
61 UNSET_INDEX: number;
62 TYPEAHEAD_BUFFER_CLEAR_TIMEOUT_MS: number;
63};
64declare const evolutionAttribute = "evolution";
65export { strings, cssClasses, numbers, deprecatedClassNameMap, evolutionAttribute, evolutionClassNameMap };