UNPKG

1.69 kBJavaScriptView Raw
1/**
2 * Copyright (c) 2013-present, Facebook, Inc.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 */
8
9'use strict';
10
11var ARIADOMPropertyConfig = {
12 Properties: {
13 // Global States and Properties
14 'aria-current': 0, // state
15 'aria-details': 0,
16 'aria-disabled': 0, // state
17 'aria-hidden': 0, // state
18 'aria-invalid': 0, // state
19 'aria-keyshortcuts': 0,
20 'aria-label': 0,
21 'aria-roledescription': 0,
22 // Widget Attributes
23 'aria-autocomplete': 0,
24 'aria-checked': 0,
25 'aria-expanded': 0,
26 'aria-haspopup': 0,
27 'aria-level': 0,
28 'aria-modal': 0,
29 'aria-multiline': 0,
30 'aria-multiselectable': 0,
31 'aria-orientation': 0,
32 'aria-placeholder': 0,
33 'aria-pressed': 0,
34 'aria-readonly': 0,
35 'aria-required': 0,
36 'aria-selected': 0,
37 'aria-sort': 0,
38 'aria-valuemax': 0,
39 'aria-valuemin': 0,
40 'aria-valuenow': 0,
41 'aria-valuetext': 0,
42 // Live Region Attributes
43 'aria-atomic': 0,
44 'aria-busy': 0,
45 'aria-live': 0,
46 'aria-relevant': 0,
47 // Drag-and-Drop Attributes
48 'aria-dropeffect': 0,
49 'aria-grabbed': 0,
50 // Relationship Attributes
51 'aria-activedescendant': 0,
52 'aria-colcount': 0,
53 'aria-colindex': 0,
54 'aria-colspan': 0,
55 'aria-controls': 0,
56 'aria-describedby': 0,
57 'aria-errormessage': 0,
58 'aria-flowto': 0,
59 'aria-labelledby': 0,
60 'aria-owns': 0,
61 'aria-posinset': 0,
62 'aria-rowcount': 0,
63 'aria-rowindex': 0,
64 'aria-rowspan': 0,
65 'aria-setsize': 0
66 },
67 DOMAttributeNames: {},
68 DOMPropertyNames: {}
69};
70
71module.exports = ARIADOMPropertyConfig;
\No newline at end of file