@webstudio-is/sdk-components-react-radix 0.217.0 → 0.218.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__generated__/accordion.props.js +172 -1842
- package/lib/__generated__/checkbox.props.js +1 -669
- package/lib/__generated__/collapsible.props.js +0 -668
- package/lib/__generated__/dialog.props.js +240 -1910
- package/lib/__generated__/label.props.js +0 -334
- package/lib/__generated__/navigation-menu.props.js +257 -2588
- package/lib/__generated__/popover.props.js +0 -334
- package/lib/__generated__/radio-group.props.js +46 -1048
- package/lib/__generated__/select.props.js +350 -2688
- package/lib/__generated__/switch.props.js +0 -668
- package/lib/__generated__/tabs.props.js +79 -1415
- package/lib/__generated__/tooltip.props.js +0 -328
- package/package.json +7 -7
|
@@ -6,332 +6,195 @@ const e = {
|
|
|
6
6
|
type: "string",
|
|
7
7
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
8
8
|
},
|
|
9
|
-
|
|
10
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
9
|
+
autoCapitalize: {
|
|
11
10
|
required: !1,
|
|
12
11
|
control: "text",
|
|
13
|
-
type: "string"
|
|
12
|
+
type: "string",
|
|
13
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
14
14
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
15
|
+
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
16
|
+
autoFocus: {
|
|
17
17
|
required: !1,
|
|
18
18
|
control: "boolean",
|
|
19
|
-
type: "boolean"
|
|
19
|
+
type: "boolean",
|
|
20
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
20
21
|
},
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
autoSave: { required: !1, control: "text", type: "string" },
|
|
23
|
+
className: { required: !1, control: "text", type: "string" },
|
|
24
|
+
color: {
|
|
24
25
|
required: !1,
|
|
25
|
-
control: "
|
|
26
|
+
control: "color",
|
|
26
27
|
type: "string",
|
|
27
|
-
|
|
28
|
-
},
|
|
29
|
-
"aria-braillelabel": {
|
|
30
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
31
|
-
required: !1,
|
|
32
|
-
control: "text",
|
|
33
|
-
type: "string"
|
|
34
|
-
},
|
|
35
|
-
"aria-brailleroledescription": {
|
|
36
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
37
|
-
required: !1,
|
|
38
|
-
control: "text",
|
|
39
|
-
type: "string"
|
|
28
|
+
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
40
29
|
},
|
|
41
|
-
|
|
42
|
-
"aria-checked": {
|
|
43
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
30
|
+
content: {
|
|
44
31
|
required: !1,
|
|
45
32
|
control: "text",
|
|
46
|
-
type: "string"
|
|
47
|
-
|
|
48
|
-
"aria-colcount": {
|
|
49
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
50
|
-
required: !1,
|
|
51
|
-
control: "number",
|
|
52
|
-
type: "number"
|
|
53
|
-
},
|
|
54
|
-
"aria-colindex": {
|
|
55
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
56
|
-
required: !1,
|
|
57
|
-
control: "number",
|
|
58
|
-
type: "number"
|
|
33
|
+
type: "string",
|
|
34
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
59
35
|
},
|
|
60
|
-
|
|
61
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
36
|
+
contextMenu: {
|
|
62
37
|
required: !1,
|
|
63
38
|
control: "text",
|
|
64
|
-
type: "string"
|
|
39
|
+
type: "string",
|
|
40
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
65
41
|
},
|
|
66
|
-
"
|
|
67
|
-
|
|
42
|
+
datatype: { required: !1, control: "text", type: "string" },
|
|
43
|
+
defaultValue: { required: !1, control: "text", type: "string" },
|
|
44
|
+
delayDuration: {
|
|
45
|
+
description: `The duration from when the pointer enters the trigger until the tooltip gets opened.
|
|
46
|
+
@defaultValue 200`,
|
|
68
47
|
required: !1,
|
|
69
48
|
control: "number",
|
|
70
49
|
type: "number"
|
|
71
50
|
},
|
|
72
|
-
|
|
73
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
74
|
-
required: !1,
|
|
75
|
-
control: "text",
|
|
76
|
-
type: "string"
|
|
77
|
-
},
|
|
78
|
-
"aria-current": {
|
|
79
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
80
|
-
required: !1,
|
|
81
|
-
control: "text",
|
|
82
|
-
type: "string"
|
|
83
|
-
},
|
|
84
|
-
"aria-describedby": {
|
|
85
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
86
|
-
required: !1,
|
|
87
|
-
control: "text",
|
|
88
|
-
type: "string"
|
|
89
|
-
},
|
|
90
|
-
"aria-description": {
|
|
91
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
92
|
-
required: !1,
|
|
93
|
-
control: "text",
|
|
94
|
-
type: "string"
|
|
95
|
-
},
|
|
96
|
-
"aria-details": {
|
|
97
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
98
|
-
required: !1,
|
|
99
|
-
control: "text",
|
|
100
|
-
type: "string"
|
|
101
|
-
},
|
|
102
|
-
"aria-disabled": {
|
|
103
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
104
|
-
required: !1,
|
|
105
|
-
control: "boolean",
|
|
106
|
-
type: "boolean"
|
|
107
|
-
},
|
|
108
|
-
"aria-dropeffect": {
|
|
109
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
51
|
+
dir: {
|
|
110
52
|
required: !1,
|
|
111
|
-
control: "
|
|
53
|
+
control: "radio",
|
|
112
54
|
type: "string",
|
|
113
|
-
options: ["
|
|
114
|
-
|
|
115
|
-
"aria-errormessage": {
|
|
116
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
117
|
-
required: !1,
|
|
118
|
-
control: "text",
|
|
119
|
-
type: "string"
|
|
55
|
+
options: ["ltr", "rtl"],
|
|
56
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
120
57
|
},
|
|
121
|
-
|
|
122
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
58
|
+
draggable: {
|
|
123
59
|
required: !1,
|
|
124
60
|
control: "boolean",
|
|
125
|
-
type: "boolean"
|
|
126
|
-
|
|
127
|
-
"aria-flowto": {
|
|
128
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
129
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
130
|
-
required: !1,
|
|
131
|
-
control: "text",
|
|
132
|
-
type: "string"
|
|
61
|
+
type: "boolean",
|
|
62
|
+
description: "Defines whether the element can be dragged."
|
|
133
63
|
},
|
|
134
|
-
|
|
135
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
64
|
+
hidden: {
|
|
136
65
|
required: !1,
|
|
137
66
|
control: "boolean",
|
|
138
|
-
type: "boolean"
|
|
67
|
+
type: "boolean",
|
|
68
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
139
69
|
},
|
|
140
|
-
|
|
141
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
70
|
+
id: {
|
|
142
71
|
required: !1,
|
|
143
72
|
control: "text",
|
|
144
|
-
type: "string"
|
|
73
|
+
type: "string",
|
|
74
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
145
75
|
},
|
|
146
|
-
|
|
147
|
-
description: "
|
|
76
|
+
inputMode: {
|
|
77
|
+
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
148
78
|
required: !1,
|
|
149
|
-
control: "
|
|
150
|
-
type: "
|
|
79
|
+
control: "select",
|
|
80
|
+
type: "string",
|
|
81
|
+
options: [
|
|
82
|
+
"search",
|
|
83
|
+
"text",
|
|
84
|
+
"none",
|
|
85
|
+
"tel",
|
|
86
|
+
"url",
|
|
87
|
+
"email",
|
|
88
|
+
"numeric",
|
|
89
|
+
"decimal"
|
|
90
|
+
]
|
|
151
91
|
},
|
|
152
|
-
|
|
153
|
-
description: "
|
|
92
|
+
is: {
|
|
93
|
+
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
154
94
|
required: !1,
|
|
155
95
|
control: "text",
|
|
156
96
|
type: "string"
|
|
157
97
|
},
|
|
158
|
-
"
|
|
159
|
-
|
|
98
|
+
itemID: { required: !1, control: "text", type: "string" },
|
|
99
|
+
itemProp: { required: !1, control: "text", type: "string" },
|
|
100
|
+
itemRef: { required: !1, control: "text", type: "string" },
|
|
101
|
+
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
102
|
+
itemType: { required: !1, control: "text", type: "string" },
|
|
103
|
+
lang: {
|
|
160
104
|
required: !1,
|
|
161
105
|
control: "text",
|
|
162
|
-
type: "string"
|
|
106
|
+
type: "string",
|
|
107
|
+
description: "Defines the language used in the element."
|
|
163
108
|
},
|
|
164
|
-
"
|
|
165
|
-
|
|
109
|
+
nonce: { required: !1, control: "text", type: "string" },
|
|
110
|
+
prefix: { required: !1, control: "text", type: "string" },
|
|
111
|
+
property: { required: !1, control: "text", type: "string" },
|
|
112
|
+
radioGroup: { required: !1, control: "text", type: "string" },
|
|
113
|
+
rel: {
|
|
166
114
|
required: !1,
|
|
167
115
|
control: "text",
|
|
168
|
-
type: "string"
|
|
116
|
+
type: "string",
|
|
117
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
169
118
|
},
|
|
170
|
-
"
|
|
171
|
-
|
|
119
|
+
resource: { required: !1, control: "text", type: "string" },
|
|
120
|
+
results: { required: !1, control: "number", type: "number" },
|
|
121
|
+
rev: { required: !1, control: "text", type: "string" },
|
|
122
|
+
role: {
|
|
172
123
|
required: !1,
|
|
173
124
|
control: "text",
|
|
174
|
-
type: "string"
|
|
125
|
+
type: "string",
|
|
126
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
175
127
|
},
|
|
176
|
-
"
|
|
177
|
-
|
|
128
|
+
security: { required: !1, control: "text", type: "string" },
|
|
129
|
+
skipDelayDuration: {
|
|
130
|
+
description: `How much time a user has to enter another trigger without incurring a delay again.
|
|
131
|
+
@defaultValue 300`,
|
|
178
132
|
required: !1,
|
|
179
133
|
control: "number",
|
|
180
134
|
type: "number"
|
|
181
135
|
},
|
|
182
|
-
|
|
183
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
136
|
+
slot: {
|
|
184
137
|
required: !1,
|
|
185
|
-
control: "
|
|
138
|
+
control: "text",
|
|
186
139
|
type: "string",
|
|
187
|
-
|
|
140
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
188
141
|
},
|
|
189
|
-
|
|
190
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
142
|
+
spellCheck: {
|
|
191
143
|
required: !1,
|
|
192
144
|
control: "boolean",
|
|
193
|
-
type: "boolean"
|
|
145
|
+
type: "boolean",
|
|
146
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
194
147
|
},
|
|
195
|
-
|
|
196
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
148
|
+
suppressContentEditableWarning: {
|
|
197
149
|
required: !1,
|
|
198
150
|
control: "boolean",
|
|
199
151
|
type: "boolean"
|
|
200
152
|
},
|
|
201
|
-
|
|
202
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
153
|
+
suppressHydrationWarning: {
|
|
203
154
|
required: !1,
|
|
204
155
|
control: "boolean",
|
|
205
156
|
type: "boolean"
|
|
206
157
|
},
|
|
207
|
-
|
|
208
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
209
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
210
|
-
required: !1,
|
|
211
|
-
control: "text",
|
|
212
|
-
type: "string"
|
|
213
|
-
},
|
|
214
|
-
"aria-placeholder": {
|
|
215
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
216
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
217
|
-
required: !1,
|
|
218
|
-
control: "text",
|
|
219
|
-
type: "string"
|
|
220
|
-
},
|
|
221
|
-
"aria-posinset": {
|
|
222
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
158
|
+
tabIndex: {
|
|
223
159
|
required: !1,
|
|
224
160
|
control: "number",
|
|
225
|
-
type: "number"
|
|
161
|
+
type: "number",
|
|
162
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
226
163
|
},
|
|
227
|
-
|
|
228
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
164
|
+
title: {
|
|
229
165
|
required: !1,
|
|
230
166
|
control: "text",
|
|
231
|
-
type: "string"
|
|
232
|
-
},
|
|
233
|
-
"aria-readonly": {
|
|
234
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
235
|
-
required: !1,
|
|
236
|
-
control: "boolean",
|
|
237
|
-
type: "boolean"
|
|
238
|
-
},
|
|
239
|
-
"aria-relevant": {
|
|
240
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
241
|
-
required: !1,
|
|
242
|
-
control: "select",
|
|
243
167
|
type: "string",
|
|
244
|
-
|
|
245
|
-
"text",
|
|
246
|
-
"additions",
|
|
247
|
-
"additions removals",
|
|
248
|
-
"additions text",
|
|
249
|
-
"all",
|
|
250
|
-
"removals",
|
|
251
|
-
"removals additions",
|
|
252
|
-
"removals text",
|
|
253
|
-
"text additions",
|
|
254
|
-
"text removals"
|
|
255
|
-
]
|
|
256
|
-
},
|
|
257
|
-
"aria-required": {
|
|
258
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
259
|
-
required: !1,
|
|
260
|
-
control: "boolean",
|
|
261
|
-
type: "boolean"
|
|
262
|
-
},
|
|
263
|
-
"aria-roledescription": {
|
|
264
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
265
|
-
required: !1,
|
|
266
|
-
control: "text",
|
|
267
|
-
type: "string"
|
|
168
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
268
169
|
},
|
|
269
|
-
|
|
270
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
170
|
+
translate: {
|
|
271
171
|
required: !1,
|
|
272
|
-
control: "
|
|
273
|
-
type: "
|
|
172
|
+
control: "radio",
|
|
173
|
+
type: "string",
|
|
174
|
+
options: ["yes", "no"],
|
|
175
|
+
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
274
176
|
},
|
|
275
|
-
"
|
|
276
|
-
|
|
177
|
+
typeof: { required: !1, control: "text", type: "string" },
|
|
178
|
+
unselectable: {
|
|
277
179
|
required: !1,
|
|
278
|
-
control: "
|
|
279
|
-
type: "
|
|
180
|
+
control: "radio",
|
|
181
|
+
type: "string",
|
|
182
|
+
options: ["on", "off"]
|
|
280
183
|
},
|
|
281
|
-
|
|
282
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
184
|
+
value: {
|
|
283
185
|
required: !1,
|
|
284
186
|
control: "text",
|
|
285
|
-
type: "string"
|
|
286
|
-
},
|
|
287
|
-
"aria-rowspan": {
|
|
288
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
289
|
-
required: !1,
|
|
290
|
-
control: "number",
|
|
291
|
-
type: "number"
|
|
292
|
-
},
|
|
293
|
-
"aria-selected": {
|
|
294
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
295
|
-
required: !1,
|
|
296
|
-
control: "boolean",
|
|
297
|
-
type: "boolean"
|
|
298
|
-
},
|
|
299
|
-
"aria-setsize": {
|
|
300
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
301
|
-
required: !1,
|
|
302
|
-
control: "number",
|
|
303
|
-
type: "number"
|
|
304
|
-
},
|
|
305
|
-
"aria-sort": {
|
|
306
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
307
|
-
required: !1,
|
|
308
|
-
control: "select",
|
|
309
187
|
type: "string",
|
|
310
|
-
|
|
311
|
-
},
|
|
312
|
-
"aria-valuemax": {
|
|
313
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
314
|
-
required: !1,
|
|
315
|
-
control: "number",
|
|
316
|
-
type: "number"
|
|
317
|
-
},
|
|
318
|
-
"aria-valuemin": {
|
|
319
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
320
|
-
required: !1,
|
|
321
|
-
control: "number",
|
|
322
|
-
type: "number"
|
|
323
|
-
},
|
|
324
|
-
"aria-valuenow": {
|
|
325
|
-
description: "Defines the current value for a range widget.",
|
|
326
|
-
required: !1,
|
|
327
|
-
control: "number",
|
|
328
|
-
type: "number"
|
|
188
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
329
189
|
},
|
|
330
|
-
"
|
|
331
|
-
|
|
190
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
191
|
+
}, t = {
|
|
192
|
+
about: { required: !1, control: "text", type: "string" },
|
|
193
|
+
accessKey: {
|
|
332
194
|
required: !1,
|
|
333
195
|
control: "text",
|
|
334
|
-
type: "string"
|
|
196
|
+
type: "string",
|
|
197
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
335
198
|
},
|
|
336
199
|
autoCapitalize: {
|
|
337
200
|
required: !1,
|
|
@@ -368,18 +231,10 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
368
231
|
},
|
|
369
232
|
datatype: { required: !1, control: "text", type: "string" },
|
|
370
233
|
defaultValue: { required: !1, control: "text", type: "string" },
|
|
371
|
-
delayDuration: {
|
|
372
|
-
description: `The duration from when the pointer enters the trigger until the tooltip gets opened.
|
|
373
|
-
@defaultValue 200`,
|
|
374
|
-
required: !1,
|
|
375
|
-
control: "number",
|
|
376
|
-
type: "number"
|
|
377
|
-
},
|
|
378
234
|
dir: {
|
|
379
235
|
required: !1,
|
|
380
|
-
control: "
|
|
236
|
+
control: "text",
|
|
381
237
|
type: "string",
|
|
382
|
-
options: ["ltr", "rtl"],
|
|
383
238
|
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
384
239
|
},
|
|
385
240
|
draggable: {
|
|
@@ -453,13 +308,6 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
453
308
|
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
454
309
|
},
|
|
455
310
|
security: { required: !1, control: "text", type: "string" },
|
|
456
|
-
skipDelayDuration: {
|
|
457
|
-
description: `How much time a user has to enter another trigger without incurring a delay again.
|
|
458
|
-
@defaultValue 300`,
|
|
459
|
-
required: !1,
|
|
460
|
-
control: "number",
|
|
461
|
-
type: "number"
|
|
462
|
-
},
|
|
463
311
|
slot: {
|
|
464
312
|
required: !1,
|
|
465
313
|
control: "text",
|
|
@@ -508,354 +356,183 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
508
356
|
type: "string",
|
|
509
357
|
options: ["on", "off"]
|
|
510
358
|
},
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
description: "Defines a default value which will be displayed in the element on pageload."
|
|
516
|
-
},
|
|
517
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
518
|
-
}, t = {
|
|
519
|
-
about: { required: !1, control: "text", type: "string" },
|
|
520
|
-
accessKey: {
|
|
359
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
360
|
+
}, r = {
|
|
361
|
+
about: { required: !1, control: "text", type: "string" },
|
|
362
|
+
accessKey: {
|
|
521
363
|
required: !1,
|
|
522
364
|
control: "text",
|
|
523
365
|
type: "string",
|
|
524
366
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
525
367
|
},
|
|
526
|
-
|
|
527
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
368
|
+
autoCapitalize: {
|
|
528
369
|
required: !1,
|
|
529
370
|
control: "text",
|
|
530
|
-
type: "string"
|
|
371
|
+
type: "string",
|
|
372
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
531
373
|
},
|
|
532
|
-
"
|
|
533
|
-
|
|
374
|
+
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
375
|
+
autoFocus: {
|
|
534
376
|
required: !1,
|
|
535
377
|
control: "boolean",
|
|
536
|
-
type: "boolean"
|
|
378
|
+
type: "boolean",
|
|
379
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
537
380
|
},
|
|
538
|
-
"
|
|
539
|
-
|
|
540
|
-
|
|
381
|
+
autoSave: { required: !1, control: "text", type: "string" },
|
|
382
|
+
className: { required: !1, control: "text", type: "string" },
|
|
383
|
+
color: {
|
|
541
384
|
required: !1,
|
|
542
|
-
control: "
|
|
385
|
+
control: "color",
|
|
543
386
|
type: "string",
|
|
544
|
-
|
|
545
|
-
},
|
|
546
|
-
"aria-braillelabel": {
|
|
547
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
548
|
-
required: !1,
|
|
549
|
-
control: "text",
|
|
550
|
-
type: "string"
|
|
551
|
-
},
|
|
552
|
-
"aria-brailleroledescription": {
|
|
553
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
554
|
-
required: !1,
|
|
555
|
-
control: "text",
|
|
556
|
-
type: "string"
|
|
557
|
-
},
|
|
558
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
559
|
-
"aria-checked": {
|
|
560
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
561
|
-
required: !1,
|
|
562
|
-
control: "text",
|
|
563
|
-
type: "string"
|
|
564
|
-
},
|
|
565
|
-
"aria-colcount": {
|
|
566
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
567
|
-
required: !1,
|
|
568
|
-
control: "number",
|
|
569
|
-
type: "number"
|
|
570
|
-
},
|
|
571
|
-
"aria-colindex": {
|
|
572
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
573
|
-
required: !1,
|
|
574
|
-
control: "number",
|
|
575
|
-
type: "number"
|
|
576
|
-
},
|
|
577
|
-
"aria-colindextext": {
|
|
578
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
579
|
-
required: !1,
|
|
580
|
-
control: "text",
|
|
581
|
-
type: "string"
|
|
582
|
-
},
|
|
583
|
-
"aria-colspan": {
|
|
584
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
585
|
-
required: !1,
|
|
586
|
-
control: "number",
|
|
587
|
-
type: "number"
|
|
588
|
-
},
|
|
589
|
-
"aria-controls": {
|
|
590
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
591
|
-
required: !1,
|
|
592
|
-
control: "text",
|
|
593
|
-
type: "string"
|
|
594
|
-
},
|
|
595
|
-
"aria-current": {
|
|
596
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
597
|
-
required: !1,
|
|
598
|
-
control: "text",
|
|
599
|
-
type: "string"
|
|
600
|
-
},
|
|
601
|
-
"aria-describedby": {
|
|
602
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
603
|
-
required: !1,
|
|
604
|
-
control: "text",
|
|
605
|
-
type: "string"
|
|
387
|
+
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
606
388
|
},
|
|
607
|
-
|
|
608
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
389
|
+
content: {
|
|
609
390
|
required: !1,
|
|
610
391
|
control: "text",
|
|
611
|
-
type: "string"
|
|
392
|
+
type: "string",
|
|
393
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
612
394
|
},
|
|
613
|
-
|
|
614
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
395
|
+
contextMenu: {
|
|
615
396
|
required: !1,
|
|
616
397
|
control: "text",
|
|
617
|
-
type: "string"
|
|
618
|
-
},
|
|
619
|
-
"aria-disabled": {
|
|
620
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
621
|
-
required: !1,
|
|
622
|
-
control: "boolean",
|
|
623
|
-
type: "boolean"
|
|
624
|
-
},
|
|
625
|
-
"aria-dropeffect": {
|
|
626
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
627
|
-
required: !1,
|
|
628
|
-
control: "select",
|
|
629
398
|
type: "string",
|
|
630
|
-
|
|
399
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
631
400
|
},
|
|
632
|
-
"
|
|
633
|
-
|
|
401
|
+
datatype: { required: !1, control: "text", type: "string" },
|
|
402
|
+
defaultValue: { required: !1, control: "text", type: "string" },
|
|
403
|
+
dir: {
|
|
634
404
|
required: !1,
|
|
635
405
|
control: "text",
|
|
636
|
-
type: "string"
|
|
406
|
+
type: "string",
|
|
407
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
637
408
|
},
|
|
638
|
-
|
|
639
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
409
|
+
draggable: {
|
|
640
410
|
required: !1,
|
|
641
411
|
control: "boolean",
|
|
642
|
-
type: "boolean"
|
|
643
|
-
|
|
644
|
-
"aria-flowto": {
|
|
645
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
646
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
647
|
-
required: !1,
|
|
648
|
-
control: "text",
|
|
649
|
-
type: "string"
|
|
412
|
+
type: "boolean",
|
|
413
|
+
description: "Defines whether the element can be dragged."
|
|
650
414
|
},
|
|
651
|
-
|
|
652
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
415
|
+
hidden: {
|
|
653
416
|
required: !1,
|
|
654
417
|
control: "boolean",
|
|
655
|
-
type: "boolean"
|
|
418
|
+
type: "boolean",
|
|
419
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
656
420
|
},
|
|
657
|
-
|
|
658
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
421
|
+
id: {
|
|
659
422
|
required: !1,
|
|
660
423
|
control: "text",
|
|
661
|
-
type: "string"
|
|
424
|
+
type: "string",
|
|
425
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
662
426
|
},
|
|
663
|
-
|
|
664
|
-
description: "
|
|
427
|
+
inputMode: {
|
|
428
|
+
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
665
429
|
required: !1,
|
|
666
|
-
control: "
|
|
667
|
-
type: "
|
|
430
|
+
control: "select",
|
|
431
|
+
type: "string",
|
|
432
|
+
options: [
|
|
433
|
+
"search",
|
|
434
|
+
"text",
|
|
435
|
+
"none",
|
|
436
|
+
"tel",
|
|
437
|
+
"url",
|
|
438
|
+
"email",
|
|
439
|
+
"numeric",
|
|
440
|
+
"decimal"
|
|
441
|
+
]
|
|
668
442
|
},
|
|
669
|
-
|
|
670
|
-
description: "
|
|
443
|
+
is: {
|
|
444
|
+
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
671
445
|
required: !1,
|
|
672
446
|
control: "text",
|
|
673
447
|
type: "string"
|
|
674
448
|
},
|
|
675
|
-
"
|
|
676
|
-
|
|
449
|
+
itemID: { required: !1, control: "text", type: "string" },
|
|
450
|
+
itemProp: { required: !1, control: "text", type: "string" },
|
|
451
|
+
itemRef: { required: !1, control: "text", type: "string" },
|
|
452
|
+
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
453
|
+
itemType: { required: !1, control: "text", type: "string" },
|
|
454
|
+
lang: {
|
|
677
455
|
required: !1,
|
|
678
456
|
control: "text",
|
|
679
|
-
type: "string"
|
|
457
|
+
type: "string",
|
|
458
|
+
description: "Defines the language used in the element."
|
|
680
459
|
},
|
|
681
|
-
"
|
|
682
|
-
|
|
460
|
+
nonce: { required: !1, control: "text", type: "string" },
|
|
461
|
+
prefix: { required: !1, control: "text", type: "string" },
|
|
462
|
+
property: { required: !1, control: "text", type: "string" },
|
|
463
|
+
radioGroup: { required: !1, control: "text", type: "string" },
|
|
464
|
+
rel: {
|
|
683
465
|
required: !1,
|
|
684
466
|
control: "text",
|
|
685
|
-
type: "string"
|
|
467
|
+
type: "string",
|
|
468
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
686
469
|
},
|
|
687
|
-
"
|
|
688
|
-
|
|
470
|
+
resource: { required: !1, control: "text", type: "string" },
|
|
471
|
+
results: { required: !1, control: "number", type: "number" },
|
|
472
|
+
rev: { required: !1, control: "text", type: "string" },
|
|
473
|
+
role: {
|
|
689
474
|
required: !1,
|
|
690
475
|
control: "text",
|
|
691
|
-
type: "string"
|
|
692
|
-
|
|
693
|
-
"aria-level": {
|
|
694
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
695
|
-
required: !1,
|
|
696
|
-
control: "number",
|
|
697
|
-
type: "number"
|
|
476
|
+
type: "string",
|
|
477
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
698
478
|
},
|
|
699
|
-
"
|
|
700
|
-
|
|
479
|
+
security: { required: !1, control: "text", type: "string" },
|
|
480
|
+
slot: {
|
|
701
481
|
required: !1,
|
|
702
|
-
control: "
|
|
482
|
+
control: "text",
|
|
703
483
|
type: "string",
|
|
704
|
-
|
|
484
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
705
485
|
},
|
|
706
|
-
|
|
707
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
486
|
+
spellCheck: {
|
|
708
487
|
required: !1,
|
|
709
488
|
control: "boolean",
|
|
710
|
-
type: "boolean"
|
|
489
|
+
type: "boolean",
|
|
490
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
711
491
|
},
|
|
712
|
-
|
|
713
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
492
|
+
suppressContentEditableWarning: {
|
|
714
493
|
required: !1,
|
|
715
494
|
control: "boolean",
|
|
716
495
|
type: "boolean"
|
|
717
496
|
},
|
|
718
|
-
|
|
719
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
497
|
+
suppressHydrationWarning: {
|
|
720
498
|
required: !1,
|
|
721
499
|
control: "boolean",
|
|
722
500
|
type: "boolean"
|
|
723
501
|
},
|
|
724
|
-
|
|
725
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
726
|
-
required: !1,
|
|
727
|
-
control: "radio",
|
|
728
|
-
type: "string",
|
|
729
|
-
options: ["horizontal", "vertical"]
|
|
730
|
-
},
|
|
731
|
-
"aria-owns": {
|
|
732
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
733
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
734
|
-
required: !1,
|
|
735
|
-
control: "text",
|
|
736
|
-
type: "string"
|
|
737
|
-
},
|
|
738
|
-
"aria-placeholder": {
|
|
739
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
740
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
741
|
-
required: !1,
|
|
742
|
-
control: "text",
|
|
743
|
-
type: "string"
|
|
744
|
-
},
|
|
745
|
-
"aria-posinset": {
|
|
746
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
502
|
+
tabIndex: {
|
|
747
503
|
required: !1,
|
|
748
504
|
control: "number",
|
|
749
|
-
type: "number"
|
|
505
|
+
type: "number",
|
|
506
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
750
507
|
},
|
|
751
|
-
|
|
752
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
508
|
+
title: {
|
|
753
509
|
required: !1,
|
|
754
510
|
control: "text",
|
|
755
|
-
type: "string"
|
|
756
|
-
},
|
|
757
|
-
"aria-readonly": {
|
|
758
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
759
|
-
required: !1,
|
|
760
|
-
control: "boolean",
|
|
761
|
-
type: "boolean"
|
|
762
|
-
},
|
|
763
|
-
"aria-relevant": {
|
|
764
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
765
|
-
required: !1,
|
|
766
|
-
control: "select",
|
|
767
511
|
type: "string",
|
|
768
|
-
|
|
769
|
-
"text",
|
|
770
|
-
"additions",
|
|
771
|
-
"additions removals",
|
|
772
|
-
"additions text",
|
|
773
|
-
"all",
|
|
774
|
-
"removals",
|
|
775
|
-
"removals additions",
|
|
776
|
-
"removals text",
|
|
777
|
-
"text additions",
|
|
778
|
-
"text removals"
|
|
779
|
-
]
|
|
780
|
-
},
|
|
781
|
-
"aria-required": {
|
|
782
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
783
|
-
required: !1,
|
|
784
|
-
control: "boolean",
|
|
785
|
-
type: "boolean"
|
|
786
|
-
},
|
|
787
|
-
"aria-roledescription": {
|
|
788
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
789
|
-
required: !1,
|
|
790
|
-
control: "text",
|
|
791
|
-
type: "string"
|
|
792
|
-
},
|
|
793
|
-
"aria-rowcount": {
|
|
794
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
795
|
-
required: !1,
|
|
796
|
-
control: "number",
|
|
797
|
-
type: "number"
|
|
798
|
-
},
|
|
799
|
-
"aria-rowindex": {
|
|
800
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
801
|
-
required: !1,
|
|
802
|
-
control: "number",
|
|
803
|
-
type: "number"
|
|
804
|
-
},
|
|
805
|
-
"aria-rowindextext": {
|
|
806
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
807
|
-
required: !1,
|
|
808
|
-
control: "text",
|
|
809
|
-
type: "string"
|
|
810
|
-
},
|
|
811
|
-
"aria-rowspan": {
|
|
812
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
813
|
-
required: !1,
|
|
814
|
-
control: "number",
|
|
815
|
-
type: "number"
|
|
816
|
-
},
|
|
817
|
-
"aria-selected": {
|
|
818
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
819
|
-
required: !1,
|
|
820
|
-
control: "boolean",
|
|
821
|
-
type: "boolean"
|
|
822
|
-
},
|
|
823
|
-
"aria-setsize": {
|
|
824
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
825
|
-
required: !1,
|
|
826
|
-
control: "number",
|
|
827
|
-
type: "number"
|
|
512
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
828
513
|
},
|
|
829
|
-
|
|
830
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
514
|
+
translate: {
|
|
831
515
|
required: !1,
|
|
832
|
-
control: "
|
|
516
|
+
control: "radio",
|
|
833
517
|
type: "string",
|
|
834
|
-
options: ["
|
|
835
|
-
|
|
836
|
-
"aria-valuemax": {
|
|
837
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
838
|
-
required: !1,
|
|
839
|
-
control: "number",
|
|
840
|
-
type: "number"
|
|
841
|
-
},
|
|
842
|
-
"aria-valuemin": {
|
|
843
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
844
|
-
required: !1,
|
|
845
|
-
control: "number",
|
|
846
|
-
type: "number"
|
|
518
|
+
options: ["yes", "no"],
|
|
519
|
+
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
847
520
|
},
|
|
848
|
-
"
|
|
849
|
-
|
|
521
|
+
typeof: { required: !1, control: "text", type: "string" },
|
|
522
|
+
unselectable: {
|
|
850
523
|
required: !1,
|
|
851
|
-
control: "
|
|
852
|
-
type: "
|
|
524
|
+
control: "radio",
|
|
525
|
+
type: "string",
|
|
526
|
+
options: ["on", "off"]
|
|
853
527
|
},
|
|
854
|
-
"
|
|
855
|
-
|
|
528
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
529
|
+
}, o = {
|
|
530
|
+
about: { required: !1, control: "text", type: "string" },
|
|
531
|
+
accessKey: {
|
|
856
532
|
required: !1,
|
|
857
533
|
control: "text",
|
|
858
|
-
type: "string"
|
|
534
|
+
type: "string",
|
|
535
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
859
536
|
},
|
|
860
537
|
autoCapitalize: {
|
|
861
538
|
required: !1,
|
|
@@ -1018,7 +695,7 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
1018
695
|
options: ["on", "off"]
|
|
1019
696
|
},
|
|
1020
697
|
vocab: { required: !1, control: "text", type: "string" }
|
|
1021
|
-
},
|
|
698
|
+
}, i = {
|
|
1022
699
|
about: { required: !1, control: "text", type: "string" },
|
|
1023
700
|
accessKey: {
|
|
1024
701
|
required: !1,
|
|
@@ -1026,1358 +703,18 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
1026
703
|
type: "string",
|
|
1027
704
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1028
705
|
},
|
|
1029
|
-
|
|
1030
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
706
|
+
autoCapitalize: {
|
|
1031
707
|
required: !1,
|
|
1032
708
|
control: "text",
|
|
1033
|
-
type: "string"
|
|
709
|
+
type: "string",
|
|
710
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1034
711
|
},
|
|
1035
|
-
"
|
|
1036
|
-
|
|
712
|
+
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
713
|
+
autoFocus: {
|
|
1037
714
|
required: !1,
|
|
1038
715
|
control: "boolean",
|
|
1039
|
-
type: "boolean"
|
|
1040
|
-
|
|
1041
|
-
"aria-autocomplete": {
|
|
1042
|
-
description: `Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
1043
|
-
presented if they are made.`,
|
|
1044
|
-
required: !1,
|
|
1045
|
-
control: "select",
|
|
1046
|
-
type: "string",
|
|
1047
|
-
options: ["list", "none", "inline", "both"]
|
|
1048
|
-
},
|
|
1049
|
-
"aria-braillelabel": {
|
|
1050
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
1051
|
-
required: !1,
|
|
1052
|
-
control: "text",
|
|
1053
|
-
type: "string"
|
|
1054
|
-
},
|
|
1055
|
-
"aria-brailleroledescription": {
|
|
1056
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
1057
|
-
required: !1,
|
|
1058
|
-
control: "text",
|
|
1059
|
-
type: "string"
|
|
1060
|
-
},
|
|
1061
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
1062
|
-
"aria-checked": {
|
|
1063
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
1064
|
-
required: !1,
|
|
1065
|
-
control: "text",
|
|
1066
|
-
type: "string"
|
|
1067
|
-
},
|
|
1068
|
-
"aria-colcount": {
|
|
1069
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
1070
|
-
required: !1,
|
|
1071
|
-
control: "number",
|
|
1072
|
-
type: "number"
|
|
1073
|
-
},
|
|
1074
|
-
"aria-colindex": {
|
|
1075
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
1076
|
-
required: !1,
|
|
1077
|
-
control: "number",
|
|
1078
|
-
type: "number"
|
|
1079
|
-
},
|
|
1080
|
-
"aria-colindextext": {
|
|
1081
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
1082
|
-
required: !1,
|
|
1083
|
-
control: "text",
|
|
1084
|
-
type: "string"
|
|
1085
|
-
},
|
|
1086
|
-
"aria-colspan": {
|
|
1087
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1088
|
-
required: !1,
|
|
1089
|
-
control: "number",
|
|
1090
|
-
type: "number"
|
|
1091
|
-
},
|
|
1092
|
-
"aria-controls": {
|
|
1093
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
1094
|
-
required: !1,
|
|
1095
|
-
control: "text",
|
|
1096
|
-
type: "string"
|
|
1097
|
-
},
|
|
1098
|
-
"aria-current": {
|
|
1099
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
1100
|
-
required: !1,
|
|
1101
|
-
control: "text",
|
|
1102
|
-
type: "string"
|
|
1103
|
-
},
|
|
1104
|
-
"aria-describedby": {
|
|
1105
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
1106
|
-
required: !1,
|
|
1107
|
-
control: "text",
|
|
1108
|
-
type: "string"
|
|
1109
|
-
},
|
|
1110
|
-
"aria-description": {
|
|
1111
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
1112
|
-
required: !1,
|
|
1113
|
-
control: "text",
|
|
1114
|
-
type: "string"
|
|
1115
|
-
},
|
|
1116
|
-
"aria-details": {
|
|
1117
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
1118
|
-
required: !1,
|
|
1119
|
-
control: "text",
|
|
1120
|
-
type: "string"
|
|
1121
|
-
},
|
|
1122
|
-
"aria-disabled": {
|
|
1123
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
1124
|
-
required: !1,
|
|
1125
|
-
control: "boolean",
|
|
1126
|
-
type: "boolean"
|
|
1127
|
-
},
|
|
1128
|
-
"aria-dropeffect": {
|
|
1129
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
1130
|
-
required: !1,
|
|
1131
|
-
control: "select",
|
|
1132
|
-
type: "string",
|
|
1133
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
1134
|
-
},
|
|
1135
|
-
"aria-errormessage": {
|
|
1136
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
1137
|
-
required: !1,
|
|
1138
|
-
control: "text",
|
|
1139
|
-
type: "string"
|
|
1140
|
-
},
|
|
1141
|
-
"aria-expanded": {
|
|
1142
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
1143
|
-
required: !1,
|
|
1144
|
-
control: "boolean",
|
|
1145
|
-
type: "boolean"
|
|
1146
|
-
},
|
|
1147
|
-
"aria-flowto": {
|
|
1148
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
1149
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
1150
|
-
required: !1,
|
|
1151
|
-
control: "text",
|
|
1152
|
-
type: "string"
|
|
1153
|
-
},
|
|
1154
|
-
"aria-grabbed": {
|
|
1155
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
1156
|
-
required: !1,
|
|
1157
|
-
control: "boolean",
|
|
1158
|
-
type: "boolean"
|
|
1159
|
-
},
|
|
1160
|
-
"aria-haspopup": {
|
|
1161
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
1162
|
-
required: !1,
|
|
1163
|
-
control: "text",
|
|
1164
|
-
type: "string"
|
|
1165
|
-
},
|
|
1166
|
-
"aria-hidden": {
|
|
1167
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
1168
|
-
required: !1,
|
|
1169
|
-
control: "boolean",
|
|
1170
|
-
type: "boolean"
|
|
1171
|
-
},
|
|
1172
|
-
"aria-invalid": {
|
|
1173
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
1174
|
-
required: !1,
|
|
1175
|
-
control: "text",
|
|
1176
|
-
type: "string"
|
|
1177
|
-
},
|
|
1178
|
-
"aria-keyshortcuts": {
|
|
1179
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
1180
|
-
required: !1,
|
|
1181
|
-
control: "text",
|
|
1182
|
-
type: "string"
|
|
1183
|
-
},
|
|
1184
|
-
"aria-label": {
|
|
1185
|
-
description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
|
|
1186
|
-
required: !1,
|
|
1187
|
-
control: "text",
|
|
1188
|
-
type: "string"
|
|
1189
|
-
},
|
|
1190
|
-
"aria-labelledby": {
|
|
1191
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
1192
|
-
required: !1,
|
|
1193
|
-
control: "text",
|
|
1194
|
-
type: "string"
|
|
1195
|
-
},
|
|
1196
|
-
"aria-level": {
|
|
1197
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
1198
|
-
required: !1,
|
|
1199
|
-
control: "number",
|
|
1200
|
-
type: "number"
|
|
1201
|
-
},
|
|
1202
|
-
"aria-live": {
|
|
1203
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
1204
|
-
required: !1,
|
|
1205
|
-
control: "radio",
|
|
1206
|
-
type: "string",
|
|
1207
|
-
options: ["off", "assertive", "polite"]
|
|
1208
|
-
},
|
|
1209
|
-
"aria-modal": {
|
|
1210
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
1211
|
-
required: !1,
|
|
1212
|
-
control: "boolean",
|
|
1213
|
-
type: "boolean"
|
|
1214
|
-
},
|
|
1215
|
-
"aria-multiline": {
|
|
1216
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
1217
|
-
required: !1,
|
|
1218
|
-
control: "boolean",
|
|
1219
|
-
type: "boolean"
|
|
1220
|
-
},
|
|
1221
|
-
"aria-multiselectable": {
|
|
1222
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
1223
|
-
required: !1,
|
|
1224
|
-
control: "boolean",
|
|
1225
|
-
type: "boolean"
|
|
1226
|
-
},
|
|
1227
|
-
"aria-orientation": {
|
|
1228
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
1229
|
-
required: !1,
|
|
1230
|
-
control: "radio",
|
|
1231
|
-
type: "string",
|
|
1232
|
-
options: ["horizontal", "vertical"]
|
|
1233
|
-
},
|
|
1234
|
-
"aria-owns": {
|
|
1235
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
1236
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
1237
|
-
required: !1,
|
|
1238
|
-
control: "text",
|
|
1239
|
-
type: "string"
|
|
1240
|
-
},
|
|
1241
|
-
"aria-placeholder": {
|
|
1242
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
1243
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
1244
|
-
required: !1,
|
|
1245
|
-
control: "text",
|
|
1246
|
-
type: "string"
|
|
1247
|
-
},
|
|
1248
|
-
"aria-posinset": {
|
|
1249
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
1250
|
-
required: !1,
|
|
1251
|
-
control: "number",
|
|
1252
|
-
type: "number"
|
|
1253
|
-
},
|
|
1254
|
-
"aria-pressed": {
|
|
1255
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
1256
|
-
required: !1,
|
|
1257
|
-
control: "text",
|
|
1258
|
-
type: "string"
|
|
1259
|
-
},
|
|
1260
|
-
"aria-readonly": {
|
|
1261
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
1262
|
-
required: !1,
|
|
1263
|
-
control: "boolean",
|
|
1264
|
-
type: "boolean"
|
|
1265
|
-
},
|
|
1266
|
-
"aria-relevant": {
|
|
1267
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
1268
|
-
required: !1,
|
|
1269
|
-
control: "select",
|
|
1270
|
-
type: "string",
|
|
1271
|
-
options: [
|
|
1272
|
-
"text",
|
|
1273
|
-
"additions",
|
|
1274
|
-
"additions removals",
|
|
1275
|
-
"additions text",
|
|
1276
|
-
"all",
|
|
1277
|
-
"removals",
|
|
1278
|
-
"removals additions",
|
|
1279
|
-
"removals text",
|
|
1280
|
-
"text additions",
|
|
1281
|
-
"text removals"
|
|
1282
|
-
]
|
|
1283
|
-
},
|
|
1284
|
-
"aria-required": {
|
|
1285
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
1286
|
-
required: !1,
|
|
1287
|
-
control: "boolean",
|
|
1288
|
-
type: "boolean"
|
|
1289
|
-
},
|
|
1290
|
-
"aria-roledescription": {
|
|
1291
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
1292
|
-
required: !1,
|
|
1293
|
-
control: "text",
|
|
1294
|
-
type: "string"
|
|
1295
|
-
},
|
|
1296
|
-
"aria-rowcount": {
|
|
1297
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
1298
|
-
required: !1,
|
|
1299
|
-
control: "number",
|
|
1300
|
-
type: "number"
|
|
1301
|
-
},
|
|
1302
|
-
"aria-rowindex": {
|
|
1303
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
1304
|
-
required: !1,
|
|
1305
|
-
control: "number",
|
|
1306
|
-
type: "number"
|
|
1307
|
-
},
|
|
1308
|
-
"aria-rowindextext": {
|
|
1309
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
1310
|
-
required: !1,
|
|
1311
|
-
control: "text",
|
|
1312
|
-
type: "string"
|
|
1313
|
-
},
|
|
1314
|
-
"aria-rowspan": {
|
|
1315
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1316
|
-
required: !1,
|
|
1317
|
-
control: "number",
|
|
1318
|
-
type: "number"
|
|
1319
|
-
},
|
|
1320
|
-
"aria-selected": {
|
|
1321
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
1322
|
-
required: !1,
|
|
1323
|
-
control: "boolean",
|
|
1324
|
-
type: "boolean"
|
|
1325
|
-
},
|
|
1326
|
-
"aria-setsize": {
|
|
1327
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
1328
|
-
required: !1,
|
|
1329
|
-
control: "number",
|
|
1330
|
-
type: "number"
|
|
1331
|
-
},
|
|
1332
|
-
"aria-sort": {
|
|
1333
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
1334
|
-
required: !1,
|
|
1335
|
-
control: "select",
|
|
1336
|
-
type: "string",
|
|
1337
|
-
options: ["none", "ascending", "descending", "other"]
|
|
1338
|
-
},
|
|
1339
|
-
"aria-valuemax": {
|
|
1340
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
1341
|
-
required: !1,
|
|
1342
|
-
control: "number",
|
|
1343
|
-
type: "number"
|
|
1344
|
-
},
|
|
1345
|
-
"aria-valuemin": {
|
|
1346
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
1347
|
-
required: !1,
|
|
1348
|
-
control: "number",
|
|
1349
|
-
type: "number"
|
|
1350
|
-
},
|
|
1351
|
-
"aria-valuenow": {
|
|
1352
|
-
description: "Defines the current value for a range widget.",
|
|
1353
|
-
required: !1,
|
|
1354
|
-
control: "number",
|
|
1355
|
-
type: "number"
|
|
1356
|
-
},
|
|
1357
|
-
"aria-valuetext": {
|
|
1358
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
1359
|
-
required: !1,
|
|
1360
|
-
control: "text",
|
|
1361
|
-
type: "string"
|
|
1362
|
-
},
|
|
1363
|
-
autoCapitalize: {
|
|
1364
|
-
required: !1,
|
|
1365
|
-
control: "text",
|
|
1366
|
-
type: "string",
|
|
1367
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1368
|
-
},
|
|
1369
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
1370
|
-
autoFocus: {
|
|
1371
|
-
required: !1,
|
|
1372
|
-
control: "boolean",
|
|
1373
|
-
type: "boolean",
|
|
1374
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1375
|
-
},
|
|
1376
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
1377
|
-
className: { required: !1, control: "text", type: "string" },
|
|
1378
|
-
color: {
|
|
1379
|
-
required: !1,
|
|
1380
|
-
control: "color",
|
|
1381
|
-
type: "string",
|
|
1382
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
1383
|
-
},
|
|
1384
|
-
content: {
|
|
1385
|
-
required: !1,
|
|
1386
|
-
control: "text",
|
|
1387
|
-
type: "string",
|
|
1388
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
1389
|
-
},
|
|
1390
|
-
contextMenu: {
|
|
1391
|
-
required: !1,
|
|
1392
|
-
control: "text",
|
|
1393
|
-
type: "string",
|
|
1394
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1395
|
-
},
|
|
1396
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
1397
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
1398
|
-
dir: {
|
|
1399
|
-
required: !1,
|
|
1400
|
-
control: "text",
|
|
1401
|
-
type: "string",
|
|
1402
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1403
|
-
},
|
|
1404
|
-
draggable: {
|
|
1405
|
-
required: !1,
|
|
1406
|
-
control: "boolean",
|
|
1407
|
-
type: "boolean",
|
|
1408
|
-
description: "Defines whether the element can be dragged."
|
|
1409
|
-
},
|
|
1410
|
-
hidden: {
|
|
1411
|
-
required: !1,
|
|
1412
|
-
control: "boolean",
|
|
1413
|
-
type: "boolean",
|
|
1414
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1415
|
-
},
|
|
1416
|
-
id: {
|
|
1417
|
-
required: !1,
|
|
1418
|
-
control: "text",
|
|
1419
|
-
type: "string",
|
|
1420
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1421
|
-
},
|
|
1422
|
-
inputMode: {
|
|
1423
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
1424
|
-
required: !1,
|
|
1425
|
-
control: "select",
|
|
1426
|
-
type: "string",
|
|
1427
|
-
options: [
|
|
1428
|
-
"search",
|
|
1429
|
-
"text",
|
|
1430
|
-
"none",
|
|
1431
|
-
"tel",
|
|
1432
|
-
"url",
|
|
1433
|
-
"email",
|
|
1434
|
-
"numeric",
|
|
1435
|
-
"decimal"
|
|
1436
|
-
]
|
|
1437
|
-
},
|
|
1438
|
-
is: {
|
|
1439
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
1440
|
-
required: !1,
|
|
1441
|
-
control: "text",
|
|
1442
|
-
type: "string"
|
|
1443
|
-
},
|
|
1444
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
1445
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
1446
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
1447
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
1448
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
1449
|
-
lang: {
|
|
1450
|
-
required: !1,
|
|
1451
|
-
control: "text",
|
|
1452
|
-
type: "string",
|
|
1453
|
-
description: "Defines the language used in the element."
|
|
1454
|
-
},
|
|
1455
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
1456
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
1457
|
-
property: { required: !1, control: "text", type: "string" },
|
|
1458
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
1459
|
-
rel: {
|
|
1460
|
-
required: !1,
|
|
1461
|
-
control: "text",
|
|
1462
|
-
type: "string",
|
|
1463
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
1464
|
-
},
|
|
1465
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
1466
|
-
results: { required: !1, control: "number", type: "number" },
|
|
1467
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
1468
|
-
role: {
|
|
1469
|
-
required: !1,
|
|
1470
|
-
control: "text",
|
|
1471
|
-
type: "string",
|
|
1472
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1473
|
-
},
|
|
1474
|
-
security: { required: !1, control: "text", type: "string" },
|
|
1475
|
-
slot: {
|
|
1476
|
-
required: !1,
|
|
1477
|
-
control: "text",
|
|
1478
|
-
type: "string",
|
|
1479
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1480
|
-
},
|
|
1481
|
-
spellCheck: {
|
|
1482
|
-
required: !1,
|
|
1483
|
-
control: "boolean",
|
|
1484
|
-
type: "boolean",
|
|
1485
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
1486
|
-
},
|
|
1487
|
-
suppressContentEditableWarning: {
|
|
1488
|
-
required: !1,
|
|
1489
|
-
control: "boolean",
|
|
1490
|
-
type: "boolean"
|
|
1491
|
-
},
|
|
1492
|
-
suppressHydrationWarning: {
|
|
1493
|
-
required: !1,
|
|
1494
|
-
control: "boolean",
|
|
1495
|
-
type: "boolean"
|
|
1496
|
-
},
|
|
1497
|
-
tabIndex: {
|
|
1498
|
-
required: !1,
|
|
1499
|
-
control: "number",
|
|
1500
|
-
type: "number",
|
|
1501
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1502
|
-
},
|
|
1503
|
-
title: {
|
|
1504
|
-
required: !1,
|
|
1505
|
-
control: "text",
|
|
1506
|
-
type: "string",
|
|
1507
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1508
|
-
},
|
|
1509
|
-
translate: {
|
|
1510
|
-
required: !1,
|
|
1511
|
-
control: "radio",
|
|
1512
|
-
type: "string",
|
|
1513
|
-
options: ["yes", "no"],
|
|
1514
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
1515
|
-
},
|
|
1516
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
1517
|
-
unselectable: {
|
|
1518
|
-
required: !1,
|
|
1519
|
-
control: "radio",
|
|
1520
|
-
type: "string",
|
|
1521
|
-
options: ["on", "off"]
|
|
1522
|
-
},
|
|
1523
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
1524
|
-
}, i = {
|
|
1525
|
-
about: { required: !1, control: "text", type: "string" },
|
|
1526
|
-
accessKey: {
|
|
1527
|
-
required: !1,
|
|
1528
|
-
control: "text",
|
|
1529
|
-
type: "string",
|
|
1530
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1531
|
-
},
|
|
1532
|
-
"aria-activedescendant": {
|
|
1533
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1534
|
-
required: !1,
|
|
1535
|
-
control: "text",
|
|
1536
|
-
type: "string"
|
|
1537
|
-
},
|
|
1538
|
-
"aria-atomic": {
|
|
1539
|
-
description: "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.",
|
|
1540
|
-
required: !1,
|
|
1541
|
-
control: "boolean",
|
|
1542
|
-
type: "boolean"
|
|
1543
|
-
},
|
|
1544
|
-
"aria-autocomplete": {
|
|
1545
|
-
description: `Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
1546
|
-
presented if they are made.`,
|
|
1547
|
-
required: !1,
|
|
1548
|
-
control: "select",
|
|
1549
|
-
type: "string",
|
|
1550
|
-
options: ["list", "none", "inline", "both"]
|
|
1551
|
-
},
|
|
1552
|
-
"aria-braillelabel": {
|
|
1553
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
1554
|
-
required: !1,
|
|
1555
|
-
control: "text",
|
|
1556
|
-
type: "string"
|
|
1557
|
-
},
|
|
1558
|
-
"aria-brailleroledescription": {
|
|
1559
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
1560
|
-
required: !1,
|
|
1561
|
-
control: "text",
|
|
1562
|
-
type: "string"
|
|
1563
|
-
},
|
|
1564
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
1565
|
-
"aria-checked": {
|
|
1566
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
1567
|
-
required: !1,
|
|
1568
|
-
control: "text",
|
|
1569
|
-
type: "string"
|
|
1570
|
-
},
|
|
1571
|
-
"aria-colcount": {
|
|
1572
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
1573
|
-
required: !1,
|
|
1574
|
-
control: "number",
|
|
1575
|
-
type: "number"
|
|
1576
|
-
},
|
|
1577
|
-
"aria-colindex": {
|
|
1578
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
1579
|
-
required: !1,
|
|
1580
|
-
control: "number",
|
|
1581
|
-
type: "number"
|
|
1582
|
-
},
|
|
1583
|
-
"aria-colindextext": {
|
|
1584
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
1585
|
-
required: !1,
|
|
1586
|
-
control: "text",
|
|
1587
|
-
type: "string"
|
|
1588
|
-
},
|
|
1589
|
-
"aria-colspan": {
|
|
1590
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1591
|
-
required: !1,
|
|
1592
|
-
control: "number",
|
|
1593
|
-
type: "number"
|
|
1594
|
-
},
|
|
1595
|
-
"aria-controls": {
|
|
1596
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
1597
|
-
required: !1,
|
|
1598
|
-
control: "text",
|
|
1599
|
-
type: "string"
|
|
1600
|
-
},
|
|
1601
|
-
"aria-current": {
|
|
1602
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
1603
|
-
required: !1,
|
|
1604
|
-
control: "text",
|
|
1605
|
-
type: "string"
|
|
1606
|
-
},
|
|
1607
|
-
"aria-describedby": {
|
|
1608
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
1609
|
-
required: !1,
|
|
1610
|
-
control: "text",
|
|
1611
|
-
type: "string"
|
|
1612
|
-
},
|
|
1613
|
-
"aria-description": {
|
|
1614
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
1615
|
-
required: !1,
|
|
1616
|
-
control: "text",
|
|
1617
|
-
type: "string"
|
|
1618
|
-
},
|
|
1619
|
-
"aria-details": {
|
|
1620
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
1621
|
-
required: !1,
|
|
1622
|
-
control: "text",
|
|
1623
|
-
type: "string"
|
|
1624
|
-
},
|
|
1625
|
-
"aria-disabled": {
|
|
1626
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
1627
|
-
required: !1,
|
|
1628
|
-
control: "boolean",
|
|
1629
|
-
type: "boolean"
|
|
1630
|
-
},
|
|
1631
|
-
"aria-dropeffect": {
|
|
1632
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
1633
|
-
required: !1,
|
|
1634
|
-
control: "select",
|
|
1635
|
-
type: "string",
|
|
1636
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
1637
|
-
},
|
|
1638
|
-
"aria-errormessage": {
|
|
1639
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
1640
|
-
required: !1,
|
|
1641
|
-
control: "text",
|
|
1642
|
-
type: "string"
|
|
1643
|
-
},
|
|
1644
|
-
"aria-expanded": {
|
|
1645
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
1646
|
-
required: !1,
|
|
1647
|
-
control: "boolean",
|
|
1648
|
-
type: "boolean"
|
|
1649
|
-
},
|
|
1650
|
-
"aria-flowto": {
|
|
1651
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
1652
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
1653
|
-
required: !1,
|
|
1654
|
-
control: "text",
|
|
1655
|
-
type: "string"
|
|
1656
|
-
},
|
|
1657
|
-
"aria-grabbed": {
|
|
1658
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
1659
|
-
required: !1,
|
|
1660
|
-
control: "boolean",
|
|
1661
|
-
type: "boolean"
|
|
1662
|
-
},
|
|
1663
|
-
"aria-haspopup": {
|
|
1664
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
1665
|
-
required: !1,
|
|
1666
|
-
control: "text",
|
|
1667
|
-
type: "string"
|
|
1668
|
-
},
|
|
1669
|
-
"aria-hidden": {
|
|
1670
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
1671
|
-
required: !1,
|
|
1672
|
-
control: "boolean",
|
|
1673
|
-
type: "boolean"
|
|
1674
|
-
},
|
|
1675
|
-
"aria-invalid": {
|
|
1676
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
1677
|
-
required: !1,
|
|
1678
|
-
control: "text",
|
|
1679
|
-
type: "string"
|
|
1680
|
-
},
|
|
1681
|
-
"aria-keyshortcuts": {
|
|
1682
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
1683
|
-
required: !1,
|
|
1684
|
-
control: "text",
|
|
1685
|
-
type: "string"
|
|
1686
|
-
},
|
|
1687
|
-
"aria-label": {
|
|
1688
|
-
description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
|
|
1689
|
-
required: !1,
|
|
1690
|
-
control: "text",
|
|
1691
|
-
type: "string"
|
|
1692
|
-
},
|
|
1693
|
-
"aria-labelledby": {
|
|
1694
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
1695
|
-
required: !1,
|
|
1696
|
-
control: "text",
|
|
1697
|
-
type: "string"
|
|
1698
|
-
},
|
|
1699
|
-
"aria-level": {
|
|
1700
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
1701
|
-
required: !1,
|
|
1702
|
-
control: "number",
|
|
1703
|
-
type: "number"
|
|
1704
|
-
},
|
|
1705
|
-
"aria-live": {
|
|
1706
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
1707
|
-
required: !1,
|
|
1708
|
-
control: "radio",
|
|
1709
|
-
type: "string",
|
|
1710
|
-
options: ["off", "assertive", "polite"]
|
|
1711
|
-
},
|
|
1712
|
-
"aria-modal": {
|
|
1713
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
1714
|
-
required: !1,
|
|
1715
|
-
control: "boolean",
|
|
1716
|
-
type: "boolean"
|
|
1717
|
-
},
|
|
1718
|
-
"aria-multiline": {
|
|
1719
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
1720
|
-
required: !1,
|
|
1721
|
-
control: "boolean",
|
|
1722
|
-
type: "boolean"
|
|
1723
|
-
},
|
|
1724
|
-
"aria-multiselectable": {
|
|
1725
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
1726
|
-
required: !1,
|
|
1727
|
-
control: "boolean",
|
|
1728
|
-
type: "boolean"
|
|
1729
|
-
},
|
|
1730
|
-
"aria-orientation": {
|
|
1731
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
1732
|
-
required: !1,
|
|
1733
|
-
control: "radio",
|
|
1734
|
-
type: "string",
|
|
1735
|
-
options: ["horizontal", "vertical"]
|
|
1736
|
-
},
|
|
1737
|
-
"aria-owns": {
|
|
1738
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
1739
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
1740
|
-
required: !1,
|
|
1741
|
-
control: "text",
|
|
1742
|
-
type: "string"
|
|
1743
|
-
},
|
|
1744
|
-
"aria-placeholder": {
|
|
1745
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
1746
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
1747
|
-
required: !1,
|
|
1748
|
-
control: "text",
|
|
1749
|
-
type: "string"
|
|
1750
|
-
},
|
|
1751
|
-
"aria-posinset": {
|
|
1752
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
1753
|
-
required: !1,
|
|
1754
|
-
control: "number",
|
|
1755
|
-
type: "number"
|
|
1756
|
-
},
|
|
1757
|
-
"aria-pressed": {
|
|
1758
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
1759
|
-
required: !1,
|
|
1760
|
-
control: "text",
|
|
1761
|
-
type: "string"
|
|
1762
|
-
},
|
|
1763
|
-
"aria-readonly": {
|
|
1764
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
1765
|
-
required: !1,
|
|
1766
|
-
control: "boolean",
|
|
1767
|
-
type: "boolean"
|
|
1768
|
-
},
|
|
1769
|
-
"aria-relevant": {
|
|
1770
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
1771
|
-
required: !1,
|
|
1772
|
-
control: "select",
|
|
1773
|
-
type: "string",
|
|
1774
|
-
options: [
|
|
1775
|
-
"text",
|
|
1776
|
-
"additions",
|
|
1777
|
-
"additions removals",
|
|
1778
|
-
"additions text",
|
|
1779
|
-
"all",
|
|
1780
|
-
"removals",
|
|
1781
|
-
"removals additions",
|
|
1782
|
-
"removals text",
|
|
1783
|
-
"text additions",
|
|
1784
|
-
"text removals"
|
|
1785
|
-
]
|
|
1786
|
-
},
|
|
1787
|
-
"aria-required": {
|
|
1788
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
1789
|
-
required: !1,
|
|
1790
|
-
control: "boolean",
|
|
1791
|
-
type: "boolean"
|
|
1792
|
-
},
|
|
1793
|
-
"aria-roledescription": {
|
|
1794
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
1795
|
-
required: !1,
|
|
1796
|
-
control: "text",
|
|
1797
|
-
type: "string"
|
|
1798
|
-
},
|
|
1799
|
-
"aria-rowcount": {
|
|
1800
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
1801
|
-
required: !1,
|
|
1802
|
-
control: "number",
|
|
1803
|
-
type: "number"
|
|
1804
|
-
},
|
|
1805
|
-
"aria-rowindex": {
|
|
1806
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
1807
|
-
required: !1,
|
|
1808
|
-
control: "number",
|
|
1809
|
-
type: "number"
|
|
1810
|
-
},
|
|
1811
|
-
"aria-rowindextext": {
|
|
1812
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
1813
|
-
required: !1,
|
|
1814
|
-
control: "text",
|
|
1815
|
-
type: "string"
|
|
1816
|
-
},
|
|
1817
|
-
"aria-rowspan": {
|
|
1818
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1819
|
-
required: !1,
|
|
1820
|
-
control: "number",
|
|
1821
|
-
type: "number"
|
|
1822
|
-
},
|
|
1823
|
-
"aria-selected": {
|
|
1824
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
1825
|
-
required: !1,
|
|
1826
|
-
control: "boolean",
|
|
1827
|
-
type: "boolean"
|
|
1828
|
-
},
|
|
1829
|
-
"aria-setsize": {
|
|
1830
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
1831
|
-
required: !1,
|
|
1832
|
-
control: "number",
|
|
1833
|
-
type: "number"
|
|
1834
|
-
},
|
|
1835
|
-
"aria-sort": {
|
|
1836
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
1837
|
-
required: !1,
|
|
1838
|
-
control: "select",
|
|
1839
|
-
type: "string",
|
|
1840
|
-
options: ["none", "ascending", "descending", "other"]
|
|
1841
|
-
},
|
|
1842
|
-
"aria-valuemax": {
|
|
1843
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
1844
|
-
required: !1,
|
|
1845
|
-
control: "number",
|
|
1846
|
-
type: "number"
|
|
1847
|
-
},
|
|
1848
|
-
"aria-valuemin": {
|
|
1849
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
1850
|
-
required: !1,
|
|
1851
|
-
control: "number",
|
|
1852
|
-
type: "number"
|
|
1853
|
-
},
|
|
1854
|
-
"aria-valuenow": {
|
|
1855
|
-
description: "Defines the current value for a range widget.",
|
|
1856
|
-
required: !1,
|
|
1857
|
-
control: "number",
|
|
1858
|
-
type: "number"
|
|
1859
|
-
},
|
|
1860
|
-
"aria-valuetext": {
|
|
1861
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
1862
|
-
required: !1,
|
|
1863
|
-
control: "text",
|
|
1864
|
-
type: "string"
|
|
1865
|
-
},
|
|
1866
|
-
autoCapitalize: {
|
|
1867
|
-
required: !1,
|
|
1868
|
-
control: "text",
|
|
1869
|
-
type: "string",
|
|
1870
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1871
|
-
},
|
|
1872
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
1873
|
-
autoFocus: {
|
|
1874
|
-
required: !1,
|
|
1875
|
-
control: "boolean",
|
|
1876
|
-
type: "boolean",
|
|
1877
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1878
|
-
},
|
|
1879
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
1880
|
-
className: { required: !1, control: "text", type: "string" },
|
|
1881
|
-
color: {
|
|
1882
|
-
required: !1,
|
|
1883
|
-
control: "color",
|
|
1884
|
-
type: "string",
|
|
1885
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
1886
|
-
},
|
|
1887
|
-
content: {
|
|
1888
|
-
required: !1,
|
|
1889
|
-
control: "text",
|
|
1890
|
-
type: "string",
|
|
1891
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
1892
|
-
},
|
|
1893
|
-
contextMenu: {
|
|
1894
|
-
required: !1,
|
|
1895
|
-
control: "text",
|
|
1896
|
-
type: "string",
|
|
1897
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1898
|
-
},
|
|
1899
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
1900
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
1901
|
-
dir: {
|
|
1902
|
-
required: !1,
|
|
1903
|
-
control: "text",
|
|
1904
|
-
type: "string",
|
|
1905
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1906
|
-
},
|
|
1907
|
-
draggable: {
|
|
1908
|
-
required: !1,
|
|
1909
|
-
control: "boolean",
|
|
1910
|
-
type: "boolean",
|
|
1911
|
-
description: "Defines whether the element can be dragged."
|
|
1912
|
-
},
|
|
1913
|
-
hidden: {
|
|
1914
|
-
required: !1,
|
|
1915
|
-
control: "boolean",
|
|
1916
|
-
type: "boolean",
|
|
1917
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1918
|
-
},
|
|
1919
|
-
id: {
|
|
1920
|
-
required: !1,
|
|
1921
|
-
control: "text",
|
|
1922
|
-
type: "string",
|
|
1923
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1924
|
-
},
|
|
1925
|
-
inputMode: {
|
|
1926
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
1927
|
-
required: !1,
|
|
1928
|
-
control: "select",
|
|
1929
|
-
type: "string",
|
|
1930
|
-
options: [
|
|
1931
|
-
"search",
|
|
1932
|
-
"text",
|
|
1933
|
-
"none",
|
|
1934
|
-
"tel",
|
|
1935
|
-
"url",
|
|
1936
|
-
"email",
|
|
1937
|
-
"numeric",
|
|
1938
|
-
"decimal"
|
|
1939
|
-
]
|
|
1940
|
-
},
|
|
1941
|
-
is: {
|
|
1942
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
1943
|
-
required: !1,
|
|
1944
|
-
control: "text",
|
|
1945
|
-
type: "string"
|
|
1946
|
-
},
|
|
1947
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
1948
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
1949
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
1950
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
1951
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
1952
|
-
lang: {
|
|
1953
|
-
required: !1,
|
|
1954
|
-
control: "text",
|
|
1955
|
-
type: "string",
|
|
1956
|
-
description: "Defines the language used in the element."
|
|
1957
|
-
},
|
|
1958
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
1959
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
1960
|
-
property: { required: !1, control: "text", type: "string" },
|
|
1961
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
1962
|
-
rel: {
|
|
1963
|
-
required: !1,
|
|
1964
|
-
control: "text",
|
|
1965
|
-
type: "string",
|
|
1966
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
1967
|
-
},
|
|
1968
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
1969
|
-
results: { required: !1, control: "number", type: "number" },
|
|
1970
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
1971
|
-
role: {
|
|
1972
|
-
required: !1,
|
|
1973
|
-
control: "text",
|
|
1974
|
-
type: "string",
|
|
1975
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1976
|
-
},
|
|
1977
|
-
security: { required: !1, control: "text", type: "string" },
|
|
1978
|
-
slot: {
|
|
1979
|
-
required: !1,
|
|
1980
|
-
control: "text",
|
|
1981
|
-
type: "string",
|
|
1982
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1983
|
-
},
|
|
1984
|
-
spellCheck: {
|
|
1985
|
-
required: !1,
|
|
1986
|
-
control: "boolean",
|
|
1987
|
-
type: "boolean",
|
|
1988
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
1989
|
-
},
|
|
1990
|
-
suppressContentEditableWarning: {
|
|
1991
|
-
required: !1,
|
|
1992
|
-
control: "boolean",
|
|
1993
|
-
type: "boolean"
|
|
1994
|
-
},
|
|
1995
|
-
suppressHydrationWarning: {
|
|
1996
|
-
required: !1,
|
|
1997
|
-
control: "boolean",
|
|
1998
|
-
type: "boolean"
|
|
1999
|
-
},
|
|
2000
|
-
tabIndex: {
|
|
2001
|
-
required: !1,
|
|
2002
|
-
control: "number",
|
|
2003
|
-
type: "number",
|
|
2004
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2005
|
-
},
|
|
2006
|
-
title: {
|
|
2007
|
-
required: !1,
|
|
2008
|
-
control: "text",
|
|
2009
|
-
type: "string",
|
|
2010
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2011
|
-
},
|
|
2012
|
-
translate: {
|
|
2013
|
-
required: !1,
|
|
2014
|
-
control: "radio",
|
|
2015
|
-
type: "string",
|
|
2016
|
-
options: ["yes", "no"],
|
|
2017
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
2018
|
-
},
|
|
2019
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
2020
|
-
unselectable: {
|
|
2021
|
-
required: !1,
|
|
2022
|
-
control: "radio",
|
|
2023
|
-
type: "string",
|
|
2024
|
-
options: ["on", "off"]
|
|
2025
|
-
},
|
|
2026
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
2027
|
-
}, n = {
|
|
2028
|
-
about: { required: !1, control: "text", type: "string" },
|
|
2029
|
-
accessKey: {
|
|
2030
|
-
required: !1,
|
|
2031
|
-
control: "text",
|
|
2032
|
-
type: "string",
|
|
2033
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2034
|
-
},
|
|
2035
|
-
"aria-activedescendant": {
|
|
2036
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
2037
|
-
required: !1,
|
|
2038
|
-
control: "text",
|
|
2039
|
-
type: "string"
|
|
2040
|
-
},
|
|
2041
|
-
"aria-atomic": {
|
|
2042
|
-
description: "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.",
|
|
2043
|
-
required: !1,
|
|
2044
|
-
control: "boolean",
|
|
2045
|
-
type: "boolean"
|
|
2046
|
-
},
|
|
2047
|
-
"aria-autocomplete": {
|
|
2048
|
-
description: `Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
2049
|
-
presented if they are made.`,
|
|
2050
|
-
required: !1,
|
|
2051
|
-
control: "select",
|
|
2052
|
-
type: "string",
|
|
2053
|
-
options: ["list", "none", "inline", "both"]
|
|
2054
|
-
},
|
|
2055
|
-
"aria-braillelabel": {
|
|
2056
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
2057
|
-
required: !1,
|
|
2058
|
-
control: "text",
|
|
2059
|
-
type: "string"
|
|
2060
|
-
},
|
|
2061
|
-
"aria-brailleroledescription": {
|
|
2062
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
2063
|
-
required: !1,
|
|
2064
|
-
control: "text",
|
|
2065
|
-
type: "string"
|
|
2066
|
-
},
|
|
2067
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
2068
|
-
"aria-checked": {
|
|
2069
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
2070
|
-
required: !1,
|
|
2071
|
-
control: "text",
|
|
2072
|
-
type: "string"
|
|
2073
|
-
},
|
|
2074
|
-
"aria-colcount": {
|
|
2075
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
2076
|
-
required: !1,
|
|
2077
|
-
control: "number",
|
|
2078
|
-
type: "number"
|
|
2079
|
-
},
|
|
2080
|
-
"aria-colindex": {
|
|
2081
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
2082
|
-
required: !1,
|
|
2083
|
-
control: "number",
|
|
2084
|
-
type: "number"
|
|
2085
|
-
},
|
|
2086
|
-
"aria-colindextext": {
|
|
2087
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
2088
|
-
required: !1,
|
|
2089
|
-
control: "text",
|
|
2090
|
-
type: "string"
|
|
2091
|
-
},
|
|
2092
|
-
"aria-colspan": {
|
|
2093
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
2094
|
-
required: !1,
|
|
2095
|
-
control: "number",
|
|
2096
|
-
type: "number"
|
|
2097
|
-
},
|
|
2098
|
-
"aria-controls": {
|
|
2099
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
2100
|
-
required: !1,
|
|
2101
|
-
control: "text",
|
|
2102
|
-
type: "string"
|
|
2103
|
-
},
|
|
2104
|
-
"aria-current": {
|
|
2105
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
2106
|
-
required: !1,
|
|
2107
|
-
control: "text",
|
|
2108
|
-
type: "string"
|
|
2109
|
-
},
|
|
2110
|
-
"aria-describedby": {
|
|
2111
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
2112
|
-
required: !1,
|
|
2113
|
-
control: "text",
|
|
2114
|
-
type: "string"
|
|
2115
|
-
},
|
|
2116
|
-
"aria-description": {
|
|
2117
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
2118
|
-
required: !1,
|
|
2119
|
-
control: "text",
|
|
2120
|
-
type: "string"
|
|
2121
|
-
},
|
|
2122
|
-
"aria-details": {
|
|
2123
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
2124
|
-
required: !1,
|
|
2125
|
-
control: "text",
|
|
2126
|
-
type: "string"
|
|
2127
|
-
},
|
|
2128
|
-
"aria-disabled": {
|
|
2129
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
2130
|
-
required: !1,
|
|
2131
|
-
control: "boolean",
|
|
2132
|
-
type: "boolean"
|
|
2133
|
-
},
|
|
2134
|
-
"aria-dropeffect": {
|
|
2135
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
2136
|
-
required: !1,
|
|
2137
|
-
control: "select",
|
|
2138
|
-
type: "string",
|
|
2139
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
2140
|
-
},
|
|
2141
|
-
"aria-errormessage": {
|
|
2142
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
2143
|
-
required: !1,
|
|
2144
|
-
control: "text",
|
|
2145
|
-
type: "string"
|
|
2146
|
-
},
|
|
2147
|
-
"aria-expanded": {
|
|
2148
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
2149
|
-
required: !1,
|
|
2150
|
-
control: "boolean",
|
|
2151
|
-
type: "boolean"
|
|
2152
|
-
},
|
|
2153
|
-
"aria-flowto": {
|
|
2154
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
2155
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
2156
|
-
required: !1,
|
|
2157
|
-
control: "text",
|
|
2158
|
-
type: "string"
|
|
2159
|
-
},
|
|
2160
|
-
"aria-grabbed": {
|
|
2161
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
2162
|
-
required: !1,
|
|
2163
|
-
control: "boolean",
|
|
2164
|
-
type: "boolean"
|
|
2165
|
-
},
|
|
2166
|
-
"aria-haspopup": {
|
|
2167
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
2168
|
-
required: !1,
|
|
2169
|
-
control: "text",
|
|
2170
|
-
type: "string"
|
|
2171
|
-
},
|
|
2172
|
-
"aria-hidden": {
|
|
2173
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
2174
|
-
required: !1,
|
|
2175
|
-
control: "boolean",
|
|
2176
|
-
type: "boolean"
|
|
2177
|
-
},
|
|
2178
|
-
"aria-invalid": {
|
|
2179
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
2180
|
-
required: !1,
|
|
2181
|
-
control: "text",
|
|
2182
|
-
type: "string"
|
|
2183
|
-
},
|
|
2184
|
-
"aria-keyshortcuts": {
|
|
2185
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
2186
|
-
required: !1,
|
|
2187
|
-
control: "text",
|
|
2188
|
-
type: "string"
|
|
2189
|
-
},
|
|
2190
|
-
"aria-label": {
|
|
2191
|
-
description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
|
|
2192
|
-
required: !1,
|
|
2193
|
-
control: "text",
|
|
2194
|
-
type: "string"
|
|
2195
|
-
},
|
|
2196
|
-
"aria-labelledby": {
|
|
2197
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
2198
|
-
required: !1,
|
|
2199
|
-
control: "text",
|
|
2200
|
-
type: "string"
|
|
2201
|
-
},
|
|
2202
|
-
"aria-level": {
|
|
2203
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
2204
|
-
required: !1,
|
|
2205
|
-
control: "number",
|
|
2206
|
-
type: "number"
|
|
2207
|
-
},
|
|
2208
|
-
"aria-live": {
|
|
2209
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
2210
|
-
required: !1,
|
|
2211
|
-
control: "radio",
|
|
2212
|
-
type: "string",
|
|
2213
|
-
options: ["off", "assertive", "polite"]
|
|
2214
|
-
},
|
|
2215
|
-
"aria-modal": {
|
|
2216
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
2217
|
-
required: !1,
|
|
2218
|
-
control: "boolean",
|
|
2219
|
-
type: "boolean"
|
|
2220
|
-
},
|
|
2221
|
-
"aria-multiline": {
|
|
2222
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
2223
|
-
required: !1,
|
|
2224
|
-
control: "boolean",
|
|
2225
|
-
type: "boolean"
|
|
2226
|
-
},
|
|
2227
|
-
"aria-multiselectable": {
|
|
2228
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
2229
|
-
required: !1,
|
|
2230
|
-
control: "boolean",
|
|
2231
|
-
type: "boolean"
|
|
2232
|
-
},
|
|
2233
|
-
"aria-orientation": {
|
|
2234
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
2235
|
-
required: !1,
|
|
2236
|
-
control: "radio",
|
|
2237
|
-
type: "string",
|
|
2238
|
-
options: ["horizontal", "vertical"]
|
|
2239
|
-
},
|
|
2240
|
-
"aria-owns": {
|
|
2241
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
2242
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
2243
|
-
required: !1,
|
|
2244
|
-
control: "text",
|
|
2245
|
-
type: "string"
|
|
2246
|
-
},
|
|
2247
|
-
"aria-placeholder": {
|
|
2248
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
2249
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
2250
|
-
required: !1,
|
|
2251
|
-
control: "text",
|
|
2252
|
-
type: "string"
|
|
2253
|
-
},
|
|
2254
|
-
"aria-posinset": {
|
|
2255
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
2256
|
-
required: !1,
|
|
2257
|
-
control: "number",
|
|
2258
|
-
type: "number"
|
|
2259
|
-
},
|
|
2260
|
-
"aria-pressed": {
|
|
2261
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
2262
|
-
required: !1,
|
|
2263
|
-
control: "text",
|
|
2264
|
-
type: "string"
|
|
2265
|
-
},
|
|
2266
|
-
"aria-readonly": {
|
|
2267
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
2268
|
-
required: !1,
|
|
2269
|
-
control: "boolean",
|
|
2270
|
-
type: "boolean"
|
|
2271
|
-
},
|
|
2272
|
-
"aria-relevant": {
|
|
2273
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
2274
|
-
required: !1,
|
|
2275
|
-
control: "select",
|
|
2276
|
-
type: "string",
|
|
2277
|
-
options: [
|
|
2278
|
-
"text",
|
|
2279
|
-
"additions",
|
|
2280
|
-
"additions removals",
|
|
2281
|
-
"additions text",
|
|
2282
|
-
"all",
|
|
2283
|
-
"removals",
|
|
2284
|
-
"removals additions",
|
|
2285
|
-
"removals text",
|
|
2286
|
-
"text additions",
|
|
2287
|
-
"text removals"
|
|
2288
|
-
]
|
|
2289
|
-
},
|
|
2290
|
-
"aria-required": {
|
|
2291
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
2292
|
-
required: !1,
|
|
2293
|
-
control: "boolean",
|
|
2294
|
-
type: "boolean"
|
|
2295
|
-
},
|
|
2296
|
-
"aria-roledescription": {
|
|
2297
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
2298
|
-
required: !1,
|
|
2299
|
-
control: "text",
|
|
2300
|
-
type: "string"
|
|
2301
|
-
},
|
|
2302
|
-
"aria-rowcount": {
|
|
2303
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
2304
|
-
required: !1,
|
|
2305
|
-
control: "number",
|
|
2306
|
-
type: "number"
|
|
2307
|
-
},
|
|
2308
|
-
"aria-rowindex": {
|
|
2309
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
2310
|
-
required: !1,
|
|
2311
|
-
control: "number",
|
|
2312
|
-
type: "number"
|
|
2313
|
-
},
|
|
2314
|
-
"aria-rowindextext": {
|
|
2315
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
2316
|
-
required: !1,
|
|
2317
|
-
control: "text",
|
|
2318
|
-
type: "string"
|
|
2319
|
-
},
|
|
2320
|
-
"aria-rowspan": {
|
|
2321
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
2322
|
-
required: !1,
|
|
2323
|
-
control: "number",
|
|
2324
|
-
type: "number"
|
|
2325
|
-
},
|
|
2326
|
-
"aria-selected": {
|
|
2327
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
2328
|
-
required: !1,
|
|
2329
|
-
control: "boolean",
|
|
2330
|
-
type: "boolean"
|
|
2331
|
-
},
|
|
2332
|
-
"aria-setsize": {
|
|
2333
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
2334
|
-
required: !1,
|
|
2335
|
-
control: "number",
|
|
2336
|
-
type: "number"
|
|
2337
|
-
},
|
|
2338
|
-
"aria-sort": {
|
|
2339
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
2340
|
-
required: !1,
|
|
2341
|
-
control: "select",
|
|
2342
|
-
type: "string",
|
|
2343
|
-
options: ["none", "ascending", "descending", "other"]
|
|
2344
|
-
},
|
|
2345
|
-
"aria-valuemax": {
|
|
2346
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
2347
|
-
required: !1,
|
|
2348
|
-
control: "number",
|
|
2349
|
-
type: "number"
|
|
2350
|
-
},
|
|
2351
|
-
"aria-valuemin": {
|
|
2352
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
2353
|
-
required: !1,
|
|
2354
|
-
control: "number",
|
|
2355
|
-
type: "number"
|
|
2356
|
-
},
|
|
2357
|
-
"aria-valuenow": {
|
|
2358
|
-
description: "Defines the current value for a range widget.",
|
|
2359
|
-
required: !1,
|
|
2360
|
-
control: "number",
|
|
2361
|
-
type: "number"
|
|
2362
|
-
},
|
|
2363
|
-
"aria-valuetext": {
|
|
2364
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
2365
|
-
required: !1,
|
|
2366
|
-
control: "text",
|
|
2367
|
-
type: "string"
|
|
2368
|
-
},
|
|
2369
|
-
autoCapitalize: {
|
|
2370
|
-
required: !1,
|
|
2371
|
-
control: "text",
|
|
2372
|
-
type: "string",
|
|
2373
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
2374
|
-
},
|
|
2375
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
2376
|
-
autoFocus: {
|
|
2377
|
-
required: !1,
|
|
2378
|
-
control: "boolean",
|
|
2379
|
-
type: "boolean",
|
|
2380
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
716
|
+
type: "boolean",
|
|
717
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
2381
718
|
},
|
|
2382
719
|
autoSave: { required: !1, control: "text", type: "string" },
|
|
2383
720
|
className: { required: !1, control: "text", type: "string" },
|
|
@@ -2486,396 +823,62 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
2486
823
|
},
|
|
2487
824
|
spellCheck: {
|
|
2488
825
|
required: !1,
|
|
2489
|
-
control: "boolean",
|
|
2490
|
-
type: "boolean",
|
|
2491
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
2492
|
-
},
|
|
2493
|
-
suppressContentEditableWarning: {
|
|
2494
|
-
required: !1,
|
|
2495
|
-
control: "boolean",
|
|
2496
|
-
type: "boolean"
|
|
2497
|
-
},
|
|
2498
|
-
suppressHydrationWarning: {
|
|
2499
|
-
required: !1,
|
|
2500
|
-
control: "boolean",
|
|
2501
|
-
type: "boolean"
|
|
2502
|
-
},
|
|
2503
|
-
tabIndex: {
|
|
2504
|
-
required: !1,
|
|
2505
|
-
control: "number",
|
|
2506
|
-
type: "number",
|
|
2507
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2508
|
-
},
|
|
2509
|
-
title: {
|
|
2510
|
-
required: !1,
|
|
2511
|
-
control: "text",
|
|
2512
|
-
type: "string",
|
|
2513
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2514
|
-
},
|
|
2515
|
-
translate: {
|
|
2516
|
-
required: !1,
|
|
2517
|
-
control: "radio",
|
|
2518
|
-
type: "string",
|
|
2519
|
-
options: ["yes", "no"],
|
|
2520
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
2521
|
-
},
|
|
2522
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
2523
|
-
unselectable: {
|
|
2524
|
-
required: !1,
|
|
2525
|
-
control: "radio",
|
|
2526
|
-
type: "string",
|
|
2527
|
-
options: ["on", "off"]
|
|
2528
|
-
},
|
|
2529
|
-
value: {
|
|
2530
|
-
required: !1,
|
|
2531
|
-
control: "text",
|
|
2532
|
-
type: "string",
|
|
2533
|
-
description: "Defines a default value which will be displayed in the element on pageload."
|
|
2534
|
-
},
|
|
2535
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
2536
|
-
}, o = {
|
|
2537
|
-
about: { required: !1, control: "text", type: "string" },
|
|
2538
|
-
accessKey: {
|
|
2539
|
-
required: !1,
|
|
2540
|
-
control: "text",
|
|
2541
|
-
type: "string",
|
|
2542
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2543
|
-
},
|
|
2544
|
-
active: { required: !1, control: "boolean", type: "boolean" },
|
|
2545
|
-
"aria-activedescendant": {
|
|
2546
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
2547
|
-
required: !1,
|
|
2548
|
-
control: "text",
|
|
2549
|
-
type: "string"
|
|
2550
|
-
},
|
|
2551
|
-
"aria-atomic": {
|
|
2552
|
-
description: "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.",
|
|
2553
|
-
required: !1,
|
|
2554
|
-
control: "boolean",
|
|
2555
|
-
type: "boolean"
|
|
2556
|
-
},
|
|
2557
|
-
"aria-autocomplete": {
|
|
2558
|
-
description: `Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
2559
|
-
presented if they are made.`,
|
|
2560
|
-
required: !1,
|
|
2561
|
-
control: "select",
|
|
2562
|
-
type: "string",
|
|
2563
|
-
options: ["list", "none", "inline", "both"]
|
|
2564
|
-
},
|
|
2565
|
-
"aria-braillelabel": {
|
|
2566
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
2567
|
-
required: !1,
|
|
2568
|
-
control: "text",
|
|
2569
|
-
type: "string"
|
|
2570
|
-
},
|
|
2571
|
-
"aria-brailleroledescription": {
|
|
2572
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
2573
|
-
required: !1,
|
|
2574
|
-
control: "text",
|
|
2575
|
-
type: "string"
|
|
2576
|
-
},
|
|
2577
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
2578
|
-
"aria-checked": {
|
|
2579
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
2580
|
-
required: !1,
|
|
2581
|
-
control: "text",
|
|
2582
|
-
type: "string"
|
|
2583
|
-
},
|
|
2584
|
-
"aria-colcount": {
|
|
2585
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
2586
|
-
required: !1,
|
|
2587
|
-
control: "number",
|
|
2588
|
-
type: "number"
|
|
2589
|
-
},
|
|
2590
|
-
"aria-colindex": {
|
|
2591
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
2592
|
-
required: !1,
|
|
2593
|
-
control: "number",
|
|
2594
|
-
type: "number"
|
|
2595
|
-
},
|
|
2596
|
-
"aria-colindextext": {
|
|
2597
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
2598
|
-
required: !1,
|
|
2599
|
-
control: "text",
|
|
2600
|
-
type: "string"
|
|
2601
|
-
},
|
|
2602
|
-
"aria-colspan": {
|
|
2603
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
2604
|
-
required: !1,
|
|
2605
|
-
control: "number",
|
|
2606
|
-
type: "number"
|
|
2607
|
-
},
|
|
2608
|
-
"aria-controls": {
|
|
2609
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
2610
|
-
required: !1,
|
|
2611
|
-
control: "text",
|
|
2612
|
-
type: "string"
|
|
2613
|
-
},
|
|
2614
|
-
"aria-current": {
|
|
2615
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
2616
|
-
required: !1,
|
|
2617
|
-
control: "text",
|
|
2618
|
-
type: "string"
|
|
2619
|
-
},
|
|
2620
|
-
"aria-describedby": {
|
|
2621
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
2622
|
-
required: !1,
|
|
2623
|
-
control: "text",
|
|
2624
|
-
type: "string"
|
|
2625
|
-
},
|
|
2626
|
-
"aria-description": {
|
|
2627
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
2628
|
-
required: !1,
|
|
2629
|
-
control: "text",
|
|
2630
|
-
type: "string"
|
|
2631
|
-
},
|
|
2632
|
-
"aria-details": {
|
|
2633
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
2634
|
-
required: !1,
|
|
2635
|
-
control: "text",
|
|
2636
|
-
type: "string"
|
|
2637
|
-
},
|
|
2638
|
-
"aria-disabled": {
|
|
2639
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
2640
|
-
required: !1,
|
|
2641
|
-
control: "boolean",
|
|
2642
|
-
type: "boolean"
|
|
2643
|
-
},
|
|
2644
|
-
"aria-dropeffect": {
|
|
2645
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
2646
|
-
required: !1,
|
|
2647
|
-
control: "select",
|
|
2648
|
-
type: "string",
|
|
2649
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
2650
|
-
},
|
|
2651
|
-
"aria-errormessage": {
|
|
2652
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
2653
|
-
required: !1,
|
|
2654
|
-
control: "text",
|
|
2655
|
-
type: "string"
|
|
2656
|
-
},
|
|
2657
|
-
"aria-expanded": {
|
|
2658
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
2659
|
-
required: !1,
|
|
2660
|
-
control: "boolean",
|
|
2661
|
-
type: "boolean"
|
|
2662
|
-
},
|
|
2663
|
-
"aria-flowto": {
|
|
2664
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
2665
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
2666
|
-
required: !1,
|
|
2667
|
-
control: "text",
|
|
2668
|
-
type: "string"
|
|
2669
|
-
},
|
|
2670
|
-
"aria-grabbed": {
|
|
2671
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
2672
|
-
required: !1,
|
|
2673
|
-
control: "boolean",
|
|
2674
|
-
type: "boolean"
|
|
2675
|
-
},
|
|
2676
|
-
"aria-haspopup": {
|
|
2677
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
2678
|
-
required: !1,
|
|
2679
|
-
control: "text",
|
|
2680
|
-
type: "string"
|
|
2681
|
-
},
|
|
2682
|
-
"aria-hidden": {
|
|
2683
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
2684
|
-
required: !1,
|
|
2685
|
-
control: "boolean",
|
|
2686
|
-
type: "boolean"
|
|
2687
|
-
},
|
|
2688
|
-
"aria-invalid": {
|
|
2689
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
2690
|
-
required: !1,
|
|
2691
|
-
control: "text",
|
|
2692
|
-
type: "string"
|
|
2693
|
-
},
|
|
2694
|
-
"aria-keyshortcuts": {
|
|
2695
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
2696
|
-
required: !1,
|
|
2697
|
-
control: "text",
|
|
2698
|
-
type: "string"
|
|
2699
|
-
},
|
|
2700
|
-
"aria-label": {
|
|
2701
|
-
description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
|
|
2702
|
-
required: !1,
|
|
2703
|
-
control: "text",
|
|
2704
|
-
type: "string"
|
|
2705
|
-
},
|
|
2706
|
-
"aria-labelledby": {
|
|
2707
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
2708
|
-
required: !1,
|
|
2709
|
-
control: "text",
|
|
2710
|
-
type: "string"
|
|
2711
|
-
},
|
|
2712
|
-
"aria-level": {
|
|
2713
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
2714
|
-
required: !1,
|
|
2715
|
-
control: "number",
|
|
2716
|
-
type: "number"
|
|
2717
|
-
},
|
|
2718
|
-
"aria-live": {
|
|
2719
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
2720
|
-
required: !1,
|
|
2721
|
-
control: "radio",
|
|
2722
|
-
type: "string",
|
|
2723
|
-
options: ["off", "assertive", "polite"]
|
|
2724
|
-
},
|
|
2725
|
-
"aria-modal": {
|
|
2726
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
2727
|
-
required: !1,
|
|
2728
|
-
control: "boolean",
|
|
2729
|
-
type: "boolean"
|
|
2730
|
-
},
|
|
2731
|
-
"aria-multiline": {
|
|
2732
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
2733
|
-
required: !1,
|
|
2734
|
-
control: "boolean",
|
|
2735
|
-
type: "boolean"
|
|
2736
|
-
},
|
|
2737
|
-
"aria-multiselectable": {
|
|
2738
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
2739
|
-
required: !1,
|
|
2740
|
-
control: "boolean",
|
|
2741
|
-
type: "boolean"
|
|
2742
|
-
},
|
|
2743
|
-
"aria-orientation": {
|
|
2744
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
2745
|
-
required: !1,
|
|
2746
|
-
control: "radio",
|
|
2747
|
-
type: "string",
|
|
2748
|
-
options: ["horizontal", "vertical"]
|
|
2749
|
-
},
|
|
2750
|
-
"aria-owns": {
|
|
2751
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
2752
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
2753
|
-
required: !1,
|
|
2754
|
-
control: "text",
|
|
2755
|
-
type: "string"
|
|
2756
|
-
},
|
|
2757
|
-
"aria-placeholder": {
|
|
2758
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
2759
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
2760
|
-
required: !1,
|
|
2761
|
-
control: "text",
|
|
2762
|
-
type: "string"
|
|
2763
|
-
},
|
|
2764
|
-
"aria-posinset": {
|
|
2765
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
2766
|
-
required: !1,
|
|
2767
|
-
control: "number",
|
|
2768
|
-
type: "number"
|
|
2769
|
-
},
|
|
2770
|
-
"aria-pressed": {
|
|
2771
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
2772
|
-
required: !1,
|
|
2773
|
-
control: "text",
|
|
2774
|
-
type: "string"
|
|
2775
|
-
},
|
|
2776
|
-
"aria-readonly": {
|
|
2777
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
2778
|
-
required: !1,
|
|
2779
|
-
control: "boolean",
|
|
2780
|
-
type: "boolean"
|
|
2781
|
-
},
|
|
2782
|
-
"aria-relevant": {
|
|
2783
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
2784
|
-
required: !1,
|
|
2785
|
-
control: "select",
|
|
2786
|
-
type: "string",
|
|
2787
|
-
options: [
|
|
2788
|
-
"text",
|
|
2789
|
-
"additions",
|
|
2790
|
-
"additions removals",
|
|
2791
|
-
"additions text",
|
|
2792
|
-
"all",
|
|
2793
|
-
"removals",
|
|
2794
|
-
"removals additions",
|
|
2795
|
-
"removals text",
|
|
2796
|
-
"text additions",
|
|
2797
|
-
"text removals"
|
|
2798
|
-
]
|
|
2799
|
-
},
|
|
2800
|
-
"aria-required": {
|
|
2801
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
2802
|
-
required: !1,
|
|
2803
|
-
control: "boolean",
|
|
2804
|
-
type: "boolean"
|
|
2805
|
-
},
|
|
2806
|
-
"aria-roledescription": {
|
|
2807
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
2808
|
-
required: !1,
|
|
2809
|
-
control: "text",
|
|
2810
|
-
type: "string"
|
|
2811
|
-
},
|
|
2812
|
-
"aria-rowcount": {
|
|
2813
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
2814
|
-
required: !1,
|
|
2815
|
-
control: "number",
|
|
2816
|
-
type: "number"
|
|
2817
|
-
},
|
|
2818
|
-
"aria-rowindex": {
|
|
2819
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
2820
|
-
required: !1,
|
|
2821
|
-
control: "number",
|
|
2822
|
-
type: "number"
|
|
2823
|
-
},
|
|
2824
|
-
"aria-rowindextext": {
|
|
2825
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
2826
|
-
required: !1,
|
|
2827
|
-
control: "text",
|
|
2828
|
-
type: "string"
|
|
826
|
+
control: "boolean",
|
|
827
|
+
type: "boolean",
|
|
828
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2829
829
|
},
|
|
2830
|
-
|
|
2831
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
830
|
+
suppressContentEditableWarning: {
|
|
2832
831
|
required: !1,
|
|
2833
|
-
control: "
|
|
2834
|
-
type: "
|
|
832
|
+
control: "boolean",
|
|
833
|
+
type: "boolean"
|
|
2835
834
|
},
|
|
2836
|
-
|
|
2837
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
835
|
+
suppressHydrationWarning: {
|
|
2838
836
|
required: !1,
|
|
2839
837
|
control: "boolean",
|
|
2840
838
|
type: "boolean"
|
|
2841
839
|
},
|
|
2842
|
-
|
|
2843
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
840
|
+
tabIndex: {
|
|
2844
841
|
required: !1,
|
|
2845
842
|
control: "number",
|
|
2846
|
-
type: "number"
|
|
843
|
+
type: "number",
|
|
844
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2847
845
|
},
|
|
2848
|
-
|
|
2849
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
846
|
+
title: {
|
|
2850
847
|
required: !1,
|
|
2851
|
-
control: "
|
|
848
|
+
control: "text",
|
|
2852
849
|
type: "string",
|
|
2853
|
-
|
|
850
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2854
851
|
},
|
|
2855
|
-
|
|
2856
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
852
|
+
translate: {
|
|
2857
853
|
required: !1,
|
|
2858
|
-
control: "
|
|
2859
|
-
type: "
|
|
854
|
+
control: "radio",
|
|
855
|
+
type: "string",
|
|
856
|
+
options: ["yes", "no"],
|
|
857
|
+
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
2860
858
|
},
|
|
2861
|
-
"
|
|
2862
|
-
|
|
859
|
+
typeof: { required: !1, control: "text", type: "string" },
|
|
860
|
+
unselectable: {
|
|
2863
861
|
required: !1,
|
|
2864
|
-
control: "
|
|
2865
|
-
type: "
|
|
862
|
+
control: "radio",
|
|
863
|
+
type: "string",
|
|
864
|
+
options: ["on", "off"]
|
|
2866
865
|
},
|
|
2867
|
-
|
|
2868
|
-
description: "Defines the current value for a range widget.",
|
|
866
|
+
value: {
|
|
2869
867
|
required: !1,
|
|
2870
|
-
control: "
|
|
2871
|
-
type: "
|
|
868
|
+
control: "text",
|
|
869
|
+
type: "string",
|
|
870
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
2872
871
|
},
|
|
2873
|
-
"
|
|
2874
|
-
|
|
872
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
873
|
+
}, n = {
|
|
874
|
+
about: { required: !1, control: "text", type: "string" },
|
|
875
|
+
accessKey: {
|
|
2875
876
|
required: !1,
|
|
2876
877
|
control: "text",
|
|
2877
|
-
type: "string"
|
|
878
|
+
type: "string",
|
|
879
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2878
880
|
},
|
|
881
|
+
active: { required: !1, control: "boolean", type: "boolean" },
|
|
2879
882
|
autoCapitalize: {
|
|
2880
883
|
required: !1,
|
|
2881
884
|
control: "text",
|
|
@@ -3084,7 +1087,7 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
3084
1087
|
options: ["on", "off"]
|
|
3085
1088
|
},
|
|
3086
1089
|
vocab: { required: !1, control: "text", type: "string" }
|
|
3087
|
-
},
|
|
1090
|
+
}, s = {
|
|
3088
1091
|
about: { required: !1, control: "text", type: "string" },
|
|
3089
1092
|
accessKey: {
|
|
3090
1093
|
required: !1,
|
|
@@ -3092,340 +1095,6 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
3092
1095
|
type: "string",
|
|
3093
1096
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
3094
1097
|
},
|
|
3095
|
-
"aria-activedescendant": {
|
|
3096
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
3097
|
-
required: !1,
|
|
3098
|
-
control: "text",
|
|
3099
|
-
type: "string"
|
|
3100
|
-
},
|
|
3101
|
-
"aria-atomic": {
|
|
3102
|
-
description: "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.",
|
|
3103
|
-
required: !1,
|
|
3104
|
-
control: "boolean",
|
|
3105
|
-
type: "boolean"
|
|
3106
|
-
},
|
|
3107
|
-
"aria-autocomplete": {
|
|
3108
|
-
description: `Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
|
|
3109
|
-
presented if they are made.`,
|
|
3110
|
-
required: !1,
|
|
3111
|
-
control: "select",
|
|
3112
|
-
type: "string",
|
|
3113
|
-
options: ["list", "none", "inline", "both"]
|
|
3114
|
-
},
|
|
3115
|
-
"aria-braillelabel": {
|
|
3116
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
3117
|
-
required: !1,
|
|
3118
|
-
control: "text",
|
|
3119
|
-
type: "string"
|
|
3120
|
-
},
|
|
3121
|
-
"aria-brailleroledescription": {
|
|
3122
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
3123
|
-
required: !1,
|
|
3124
|
-
control: "text",
|
|
3125
|
-
type: "string"
|
|
3126
|
-
},
|
|
3127
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
3128
|
-
"aria-checked": {
|
|
3129
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
3130
|
-
required: !1,
|
|
3131
|
-
control: "text",
|
|
3132
|
-
type: "string"
|
|
3133
|
-
},
|
|
3134
|
-
"aria-colcount": {
|
|
3135
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
3136
|
-
required: !1,
|
|
3137
|
-
control: "number",
|
|
3138
|
-
type: "number"
|
|
3139
|
-
},
|
|
3140
|
-
"aria-colindex": {
|
|
3141
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
3142
|
-
required: !1,
|
|
3143
|
-
control: "number",
|
|
3144
|
-
type: "number"
|
|
3145
|
-
},
|
|
3146
|
-
"aria-colindextext": {
|
|
3147
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
3148
|
-
required: !1,
|
|
3149
|
-
control: "text",
|
|
3150
|
-
type: "string"
|
|
3151
|
-
},
|
|
3152
|
-
"aria-colspan": {
|
|
3153
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
3154
|
-
required: !1,
|
|
3155
|
-
control: "number",
|
|
3156
|
-
type: "number"
|
|
3157
|
-
},
|
|
3158
|
-
"aria-controls": {
|
|
3159
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
3160
|
-
required: !1,
|
|
3161
|
-
control: "text",
|
|
3162
|
-
type: "string"
|
|
3163
|
-
},
|
|
3164
|
-
"aria-current": {
|
|
3165
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
3166
|
-
required: !1,
|
|
3167
|
-
control: "text",
|
|
3168
|
-
type: "string"
|
|
3169
|
-
},
|
|
3170
|
-
"aria-describedby": {
|
|
3171
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
3172
|
-
required: !1,
|
|
3173
|
-
control: "text",
|
|
3174
|
-
type: "string"
|
|
3175
|
-
},
|
|
3176
|
-
"aria-description": {
|
|
3177
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
3178
|
-
required: !1,
|
|
3179
|
-
control: "text",
|
|
3180
|
-
type: "string"
|
|
3181
|
-
},
|
|
3182
|
-
"aria-details": {
|
|
3183
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
3184
|
-
required: !1,
|
|
3185
|
-
control: "text",
|
|
3186
|
-
type: "string"
|
|
3187
|
-
},
|
|
3188
|
-
"aria-disabled": {
|
|
3189
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
3190
|
-
required: !1,
|
|
3191
|
-
control: "boolean",
|
|
3192
|
-
type: "boolean"
|
|
3193
|
-
},
|
|
3194
|
-
"aria-dropeffect": {
|
|
3195
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
3196
|
-
required: !1,
|
|
3197
|
-
control: "select",
|
|
3198
|
-
type: "string",
|
|
3199
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
3200
|
-
},
|
|
3201
|
-
"aria-errormessage": {
|
|
3202
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
3203
|
-
required: !1,
|
|
3204
|
-
control: "text",
|
|
3205
|
-
type: "string"
|
|
3206
|
-
},
|
|
3207
|
-
"aria-expanded": {
|
|
3208
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
3209
|
-
required: !1,
|
|
3210
|
-
control: "boolean",
|
|
3211
|
-
type: "boolean"
|
|
3212
|
-
},
|
|
3213
|
-
"aria-flowto": {
|
|
3214
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
3215
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
3216
|
-
required: !1,
|
|
3217
|
-
control: "text",
|
|
3218
|
-
type: "string"
|
|
3219
|
-
},
|
|
3220
|
-
"aria-grabbed": {
|
|
3221
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
3222
|
-
required: !1,
|
|
3223
|
-
control: "boolean",
|
|
3224
|
-
type: "boolean"
|
|
3225
|
-
},
|
|
3226
|
-
"aria-haspopup": {
|
|
3227
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
3228
|
-
required: !1,
|
|
3229
|
-
control: "text",
|
|
3230
|
-
type: "string"
|
|
3231
|
-
},
|
|
3232
|
-
"aria-hidden": {
|
|
3233
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
3234
|
-
required: !1,
|
|
3235
|
-
control: "boolean",
|
|
3236
|
-
type: "boolean"
|
|
3237
|
-
},
|
|
3238
|
-
"aria-invalid": {
|
|
3239
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
3240
|
-
required: !1,
|
|
3241
|
-
control: "text",
|
|
3242
|
-
type: "string"
|
|
3243
|
-
},
|
|
3244
|
-
"aria-keyshortcuts": {
|
|
3245
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
3246
|
-
required: !1,
|
|
3247
|
-
control: "text",
|
|
3248
|
-
type: "string"
|
|
3249
|
-
},
|
|
3250
|
-
"aria-label": {
|
|
3251
|
-
description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
|
|
3252
|
-
required: !1,
|
|
3253
|
-
control: "text",
|
|
3254
|
-
type: "string"
|
|
3255
|
-
},
|
|
3256
|
-
"aria-labelledby": {
|
|
3257
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
3258
|
-
required: !1,
|
|
3259
|
-
control: "text",
|
|
3260
|
-
type: "string"
|
|
3261
|
-
},
|
|
3262
|
-
"aria-level": {
|
|
3263
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
3264
|
-
required: !1,
|
|
3265
|
-
control: "number",
|
|
3266
|
-
type: "number"
|
|
3267
|
-
},
|
|
3268
|
-
"aria-live": {
|
|
3269
|
-
description: "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.",
|
|
3270
|
-
required: !1,
|
|
3271
|
-
control: "radio",
|
|
3272
|
-
type: "string",
|
|
3273
|
-
options: ["off", "assertive", "polite"]
|
|
3274
|
-
},
|
|
3275
|
-
"aria-modal": {
|
|
3276
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
3277
|
-
required: !1,
|
|
3278
|
-
control: "boolean",
|
|
3279
|
-
type: "boolean"
|
|
3280
|
-
},
|
|
3281
|
-
"aria-multiline": {
|
|
3282
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
3283
|
-
required: !1,
|
|
3284
|
-
control: "boolean",
|
|
3285
|
-
type: "boolean"
|
|
3286
|
-
},
|
|
3287
|
-
"aria-multiselectable": {
|
|
3288
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
3289
|
-
required: !1,
|
|
3290
|
-
control: "boolean",
|
|
3291
|
-
type: "boolean"
|
|
3292
|
-
},
|
|
3293
|
-
"aria-orientation": {
|
|
3294
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
3295
|
-
required: !1,
|
|
3296
|
-
control: "radio",
|
|
3297
|
-
type: "string",
|
|
3298
|
-
options: ["horizontal", "vertical"]
|
|
3299
|
-
},
|
|
3300
|
-
"aria-owns": {
|
|
3301
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
3302
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
3303
|
-
required: !1,
|
|
3304
|
-
control: "text",
|
|
3305
|
-
type: "string"
|
|
3306
|
-
},
|
|
3307
|
-
"aria-placeholder": {
|
|
3308
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
3309
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
3310
|
-
required: !1,
|
|
3311
|
-
control: "text",
|
|
3312
|
-
type: "string"
|
|
3313
|
-
},
|
|
3314
|
-
"aria-posinset": {
|
|
3315
|
-
description: "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
3316
|
-
required: !1,
|
|
3317
|
-
control: "number",
|
|
3318
|
-
type: "number"
|
|
3319
|
-
},
|
|
3320
|
-
"aria-pressed": {
|
|
3321
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
3322
|
-
required: !1,
|
|
3323
|
-
control: "text",
|
|
3324
|
-
type: "string"
|
|
3325
|
-
},
|
|
3326
|
-
"aria-readonly": {
|
|
3327
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
3328
|
-
required: !1,
|
|
3329
|
-
control: "boolean",
|
|
3330
|
-
type: "boolean"
|
|
3331
|
-
},
|
|
3332
|
-
"aria-relevant": {
|
|
3333
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
3334
|
-
required: !1,
|
|
3335
|
-
control: "select",
|
|
3336
|
-
type: "string",
|
|
3337
|
-
options: [
|
|
3338
|
-
"text",
|
|
3339
|
-
"additions",
|
|
3340
|
-
"additions removals",
|
|
3341
|
-
"additions text",
|
|
3342
|
-
"all",
|
|
3343
|
-
"removals",
|
|
3344
|
-
"removals additions",
|
|
3345
|
-
"removals text",
|
|
3346
|
-
"text additions",
|
|
3347
|
-
"text removals"
|
|
3348
|
-
]
|
|
3349
|
-
},
|
|
3350
|
-
"aria-required": {
|
|
3351
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
3352
|
-
required: !1,
|
|
3353
|
-
control: "boolean",
|
|
3354
|
-
type: "boolean"
|
|
3355
|
-
},
|
|
3356
|
-
"aria-roledescription": {
|
|
3357
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
3358
|
-
required: !1,
|
|
3359
|
-
control: "text",
|
|
3360
|
-
type: "string"
|
|
3361
|
-
},
|
|
3362
|
-
"aria-rowcount": {
|
|
3363
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
3364
|
-
required: !1,
|
|
3365
|
-
control: "number",
|
|
3366
|
-
type: "number"
|
|
3367
|
-
},
|
|
3368
|
-
"aria-rowindex": {
|
|
3369
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
3370
|
-
required: !1,
|
|
3371
|
-
control: "number",
|
|
3372
|
-
type: "number"
|
|
3373
|
-
},
|
|
3374
|
-
"aria-rowindextext": {
|
|
3375
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
3376
|
-
required: !1,
|
|
3377
|
-
control: "text",
|
|
3378
|
-
type: "string"
|
|
3379
|
-
},
|
|
3380
|
-
"aria-rowspan": {
|
|
3381
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
3382
|
-
required: !1,
|
|
3383
|
-
control: "number",
|
|
3384
|
-
type: "number"
|
|
3385
|
-
},
|
|
3386
|
-
"aria-selected": {
|
|
3387
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
3388
|
-
required: !1,
|
|
3389
|
-
control: "boolean",
|
|
3390
|
-
type: "boolean"
|
|
3391
|
-
},
|
|
3392
|
-
"aria-setsize": {
|
|
3393
|
-
description: "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.",
|
|
3394
|
-
required: !1,
|
|
3395
|
-
control: "number",
|
|
3396
|
-
type: "number"
|
|
3397
|
-
},
|
|
3398
|
-
"aria-sort": {
|
|
3399
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
3400
|
-
required: !1,
|
|
3401
|
-
control: "select",
|
|
3402
|
-
type: "string",
|
|
3403
|
-
options: ["none", "ascending", "descending", "other"]
|
|
3404
|
-
},
|
|
3405
|
-
"aria-valuemax": {
|
|
3406
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
3407
|
-
required: !1,
|
|
3408
|
-
control: "number",
|
|
3409
|
-
type: "number"
|
|
3410
|
-
},
|
|
3411
|
-
"aria-valuemin": {
|
|
3412
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
3413
|
-
required: !1,
|
|
3414
|
-
control: "number",
|
|
3415
|
-
type: "number"
|
|
3416
|
-
},
|
|
3417
|
-
"aria-valuenow": {
|
|
3418
|
-
description: "Defines the current value for a range widget.",
|
|
3419
|
-
required: !1,
|
|
3420
|
-
control: "number",
|
|
3421
|
-
type: "number"
|
|
3422
|
-
},
|
|
3423
|
-
"aria-valuetext": {
|
|
3424
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
3425
|
-
required: !1,
|
|
3426
|
-
control: "text",
|
|
3427
|
-
type: "string"
|
|
3428
|
-
},
|
|
3429
1098
|
autoCapitalize: {
|
|
3430
1099
|
required: !1,
|
|
3431
1100
|
control: "text",
|
|
@@ -3651,10 +1320,10 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
3651
1320
|
};
|
|
3652
1321
|
export {
|
|
3653
1322
|
e as propsNavigationMenu,
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
1323
|
+
o as propsNavigationMenuContent,
|
|
1324
|
+
i as propsNavigationMenuItem,
|
|
1325
|
+
n as propsNavigationMenuLink,
|
|
3657
1326
|
t as propsNavigationMenuList,
|
|
3658
|
-
|
|
1327
|
+
s as propsNavigationMenuTrigger,
|
|
3659
1328
|
r as propsNavigationMenuViewport
|
|
3660
1329
|
};
|