@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
|
@@ -13,339 +13,174 @@ const e = {
|
|
|
13
13
|
type: "string",
|
|
14
14
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
15
15
|
},
|
|
16
|
-
|
|
17
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
16
|
+
autoCapitalize: {
|
|
18
17
|
required: !1,
|
|
19
18
|
control: "text",
|
|
20
|
-
type: "string"
|
|
19
|
+
type: "string",
|
|
20
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
21
21
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
22
|
+
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
23
|
+
autoFocus: {
|
|
24
24
|
required: !1,
|
|
25
25
|
control: "boolean",
|
|
26
|
-
type: "boolean"
|
|
26
|
+
type: "boolean",
|
|
27
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
27
28
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
autoSave: { required: !1, control: "text", type: "string" },
|
|
30
|
+
className: { required: !1, control: "text", type: "string" },
|
|
31
|
+
color: {
|
|
31
32
|
required: !1,
|
|
32
|
-
control: "
|
|
33
|
+
control: "color",
|
|
33
34
|
type: "string",
|
|
34
|
-
|
|
35
|
-
},
|
|
36
|
-
"aria-braillelabel": {
|
|
37
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
38
|
-
required: !1,
|
|
39
|
-
control: "text",
|
|
40
|
-
type: "string"
|
|
41
|
-
},
|
|
42
|
-
"aria-brailleroledescription": {
|
|
43
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
44
|
-
required: !1,
|
|
45
|
-
control: "text",
|
|
46
|
-
type: "string"
|
|
47
|
-
},
|
|
48
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
49
|
-
"aria-checked": {
|
|
50
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
51
|
-
required: !1,
|
|
52
|
-
control: "text",
|
|
53
|
-
type: "string"
|
|
54
|
-
},
|
|
55
|
-
"aria-colcount": {
|
|
56
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
57
|
-
required: !1,
|
|
58
|
-
control: "number",
|
|
59
|
-
type: "number"
|
|
60
|
-
},
|
|
61
|
-
"aria-colindex": {
|
|
62
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
63
|
-
required: !1,
|
|
64
|
-
control: "number",
|
|
65
|
-
type: "number"
|
|
66
|
-
},
|
|
67
|
-
"aria-colindextext": {
|
|
68
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
69
|
-
required: !1,
|
|
70
|
-
control: "text",
|
|
71
|
-
type: "string"
|
|
72
|
-
},
|
|
73
|
-
"aria-colspan": {
|
|
74
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
75
|
-
required: !1,
|
|
76
|
-
control: "number",
|
|
77
|
-
type: "number"
|
|
78
|
-
},
|
|
79
|
-
"aria-controls": {
|
|
80
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
81
|
-
required: !1,
|
|
82
|
-
control: "text",
|
|
83
|
-
type: "string"
|
|
84
|
-
},
|
|
85
|
-
"aria-current": {
|
|
86
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
87
|
-
required: !1,
|
|
88
|
-
control: "text",
|
|
89
|
-
type: "string"
|
|
90
|
-
},
|
|
91
|
-
"aria-describedby": {
|
|
92
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
93
|
-
required: !1,
|
|
94
|
-
control: "text",
|
|
95
|
-
type: "string"
|
|
35
|
+
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."
|
|
96
36
|
},
|
|
97
|
-
|
|
98
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
37
|
+
content: {
|
|
99
38
|
required: !1,
|
|
100
39
|
control: "text",
|
|
101
|
-
type: "string"
|
|
40
|
+
type: "string",
|
|
41
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
102
42
|
},
|
|
103
|
-
|
|
104
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
43
|
+
contextMenu: {
|
|
105
44
|
required: !1,
|
|
106
45
|
control: "text",
|
|
107
|
-
type: "string"
|
|
108
|
-
},
|
|
109
|
-
"aria-disabled": {
|
|
110
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
111
|
-
required: !1,
|
|
112
|
-
control: "boolean",
|
|
113
|
-
type: "boolean"
|
|
114
|
-
},
|
|
115
|
-
"aria-dropeffect": {
|
|
116
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
117
|
-
required: !1,
|
|
118
|
-
control: "select",
|
|
119
46
|
type: "string",
|
|
120
|
-
|
|
47
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
121
48
|
},
|
|
122
|
-
"
|
|
123
|
-
|
|
49
|
+
datatype: { required: !1, control: "text", type: "string" },
|
|
50
|
+
defaultValue: { required: !1, control: "text", type: "string" },
|
|
51
|
+
dir: {
|
|
124
52
|
required: !1,
|
|
125
53
|
control: "text",
|
|
126
|
-
type: "string"
|
|
54
|
+
type: "string",
|
|
55
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
127
56
|
},
|
|
128
|
-
|
|
129
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
57
|
+
draggable: {
|
|
130
58
|
required: !1,
|
|
131
59
|
control: "boolean",
|
|
132
|
-
type: "boolean"
|
|
133
|
-
|
|
134
|
-
"aria-flowto": {
|
|
135
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
136
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
137
|
-
required: !1,
|
|
138
|
-
control: "text",
|
|
139
|
-
type: "string"
|
|
60
|
+
type: "boolean",
|
|
61
|
+
description: "Defines whether the element can be dragged."
|
|
140
62
|
},
|
|
141
|
-
|
|
142
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
63
|
+
hidden: {
|
|
143
64
|
required: !1,
|
|
144
65
|
control: "boolean",
|
|
145
|
-
type: "boolean"
|
|
66
|
+
type: "boolean",
|
|
67
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
146
68
|
},
|
|
147
|
-
|
|
148
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
69
|
+
id: {
|
|
149
70
|
required: !1,
|
|
150
71
|
control: "text",
|
|
151
|
-
type: "string"
|
|
72
|
+
type: "string",
|
|
73
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
152
74
|
},
|
|
153
|
-
|
|
154
|
-
description: "
|
|
75
|
+
inputMode: {
|
|
76
|
+
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
155
77
|
required: !1,
|
|
156
|
-
control: "
|
|
157
|
-
type: "
|
|
78
|
+
control: "select",
|
|
79
|
+
type: "string",
|
|
80
|
+
options: [
|
|
81
|
+
"search",
|
|
82
|
+
"text",
|
|
83
|
+
"none",
|
|
84
|
+
"tel",
|
|
85
|
+
"url",
|
|
86
|
+
"email",
|
|
87
|
+
"numeric",
|
|
88
|
+
"decimal"
|
|
89
|
+
]
|
|
158
90
|
},
|
|
159
|
-
|
|
160
|
-
description: "
|
|
91
|
+
is: {
|
|
92
|
+
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
161
93
|
required: !1,
|
|
162
94
|
control: "text",
|
|
163
95
|
type: "string"
|
|
164
96
|
},
|
|
165
|
-
"
|
|
166
|
-
|
|
97
|
+
itemID: { required: !1, control: "text", type: "string" },
|
|
98
|
+
itemProp: { required: !1, control: "text", type: "string" },
|
|
99
|
+
itemRef: { required: !1, control: "text", type: "string" },
|
|
100
|
+
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
101
|
+
itemType: { required: !1, control: "text", type: "string" },
|
|
102
|
+
lang: {
|
|
167
103
|
required: !1,
|
|
168
104
|
control: "text",
|
|
169
|
-
type: "string"
|
|
105
|
+
type: "string",
|
|
106
|
+
description: "Defines the language used in the element."
|
|
170
107
|
},
|
|
171
|
-
"
|
|
172
|
-
|
|
108
|
+
nonce: { required: !1, control: "text", type: "string" },
|
|
109
|
+
prefix: { required: !1, control: "text", type: "string" },
|
|
110
|
+
property: { required: !1, control: "text", type: "string" },
|
|
111
|
+
radioGroup: { required: !1, control: "text", type: "string" },
|
|
112
|
+
rel: {
|
|
173
113
|
required: !1,
|
|
174
114
|
control: "text",
|
|
175
|
-
type: "string"
|
|
115
|
+
type: "string",
|
|
116
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
176
117
|
},
|
|
177
|
-
"
|
|
178
|
-
|
|
118
|
+
resource: { required: !1, control: "text", type: "string" },
|
|
119
|
+
results: { required: !1, control: "number", type: "number" },
|
|
120
|
+
rev: { required: !1, control: "text", type: "string" },
|
|
121
|
+
role: {
|
|
179
122
|
required: !1,
|
|
180
123
|
control: "text",
|
|
181
|
-
type: "string"
|
|
182
|
-
|
|
183
|
-
"aria-level": {
|
|
184
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
185
|
-
required: !1,
|
|
186
|
-
control: "number",
|
|
187
|
-
type: "number"
|
|
124
|
+
type: "string",
|
|
125
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
188
126
|
},
|
|
189
|
-
"
|
|
190
|
-
|
|
127
|
+
security: { required: !1, control: "text", type: "string" },
|
|
128
|
+
slot: {
|
|
191
129
|
required: !1,
|
|
192
|
-
control: "
|
|
130
|
+
control: "text",
|
|
193
131
|
type: "string",
|
|
194
|
-
|
|
132
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
195
133
|
},
|
|
196
|
-
|
|
197
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
134
|
+
spellCheck: {
|
|
198
135
|
required: !1,
|
|
199
136
|
control: "boolean",
|
|
200
|
-
type: "boolean"
|
|
137
|
+
type: "boolean",
|
|
138
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
201
139
|
},
|
|
202
|
-
|
|
203
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
140
|
+
suppressContentEditableWarning: {
|
|
204
141
|
required: !1,
|
|
205
142
|
control: "boolean",
|
|
206
143
|
type: "boolean"
|
|
207
144
|
},
|
|
208
|
-
|
|
209
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
145
|
+
suppressHydrationWarning: {
|
|
210
146
|
required: !1,
|
|
211
147
|
control: "boolean",
|
|
212
148
|
type: "boolean"
|
|
213
149
|
},
|
|
214
|
-
|
|
215
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
216
|
-
required: !1,
|
|
217
|
-
control: "radio",
|
|
218
|
-
type: "string",
|
|
219
|
-
options: ["horizontal", "vertical"]
|
|
220
|
-
},
|
|
221
|
-
"aria-owns": {
|
|
222
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
223
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
224
|
-
required: !1,
|
|
225
|
-
control: "text",
|
|
226
|
-
type: "string"
|
|
227
|
-
},
|
|
228
|
-
"aria-placeholder": {
|
|
229
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
230
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
231
|
-
required: !1,
|
|
232
|
-
control: "text",
|
|
233
|
-
type: "string"
|
|
234
|
-
},
|
|
235
|
-
"aria-posinset": {
|
|
236
|
-
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.",
|
|
150
|
+
tabIndex: {
|
|
237
151
|
required: !1,
|
|
238
152
|
control: "number",
|
|
239
|
-
type: "number"
|
|
153
|
+
type: "number",
|
|
154
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
240
155
|
},
|
|
241
|
-
|
|
242
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
156
|
+
title: {
|
|
243
157
|
required: !1,
|
|
244
158
|
control: "text",
|
|
245
|
-
type: "string"
|
|
246
|
-
},
|
|
247
|
-
"aria-readonly": {
|
|
248
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
249
|
-
required: !1,
|
|
250
|
-
control: "boolean",
|
|
251
|
-
type: "boolean"
|
|
252
|
-
},
|
|
253
|
-
"aria-relevant": {
|
|
254
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
255
|
-
required: !1,
|
|
256
|
-
control: "select",
|
|
257
159
|
type: "string",
|
|
258
|
-
|
|
259
|
-
"text",
|
|
260
|
-
"additions",
|
|
261
|
-
"additions removals",
|
|
262
|
-
"additions text",
|
|
263
|
-
"all",
|
|
264
|
-
"removals",
|
|
265
|
-
"removals additions",
|
|
266
|
-
"removals text",
|
|
267
|
-
"text additions",
|
|
268
|
-
"text removals"
|
|
269
|
-
]
|
|
270
|
-
},
|
|
271
|
-
"aria-required": {
|
|
272
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
273
|
-
required: !1,
|
|
274
|
-
control: "boolean",
|
|
275
|
-
type: "boolean"
|
|
276
|
-
},
|
|
277
|
-
"aria-roledescription": {
|
|
278
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
279
|
-
required: !1,
|
|
280
|
-
control: "text",
|
|
281
|
-
type: "string"
|
|
282
|
-
},
|
|
283
|
-
"aria-rowcount": {
|
|
284
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
285
|
-
required: !1,
|
|
286
|
-
control: "number",
|
|
287
|
-
type: "number"
|
|
288
|
-
},
|
|
289
|
-
"aria-rowindex": {
|
|
290
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
291
|
-
required: !1,
|
|
292
|
-
control: "number",
|
|
293
|
-
type: "number"
|
|
294
|
-
},
|
|
295
|
-
"aria-rowindextext": {
|
|
296
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
297
|
-
required: !1,
|
|
298
|
-
control: "text",
|
|
299
|
-
type: "string"
|
|
300
|
-
},
|
|
301
|
-
"aria-rowspan": {
|
|
302
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
303
|
-
required: !1,
|
|
304
|
-
control: "number",
|
|
305
|
-
type: "number"
|
|
306
|
-
},
|
|
307
|
-
"aria-selected": {
|
|
308
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
309
|
-
required: !1,
|
|
310
|
-
control: "boolean",
|
|
311
|
-
type: "boolean"
|
|
312
|
-
},
|
|
313
|
-
"aria-setsize": {
|
|
314
|
-
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.",
|
|
315
|
-
required: !1,
|
|
316
|
-
control: "number",
|
|
317
|
-
type: "number"
|
|
160
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
318
161
|
},
|
|
319
|
-
|
|
320
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
162
|
+
translate: {
|
|
321
163
|
required: !1,
|
|
322
|
-
control: "
|
|
164
|
+
control: "radio",
|
|
323
165
|
type: "string",
|
|
324
|
-
options: ["
|
|
325
|
-
|
|
326
|
-
"aria-valuemax": {
|
|
327
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
328
|
-
required: !1,
|
|
329
|
-
control: "number",
|
|
330
|
-
type: "number"
|
|
331
|
-
},
|
|
332
|
-
"aria-valuemin": {
|
|
333
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
334
|
-
required: !1,
|
|
335
|
-
control: "number",
|
|
336
|
-
type: "number"
|
|
166
|
+
options: ["yes", "no"],
|
|
167
|
+
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."
|
|
337
168
|
},
|
|
338
|
-
"
|
|
339
|
-
|
|
169
|
+
typeof: { required: !1, control: "text", type: "string" },
|
|
170
|
+
unselectable: {
|
|
340
171
|
required: !1,
|
|
341
|
-
control: "
|
|
342
|
-
type: "
|
|
172
|
+
control: "radio",
|
|
173
|
+
type: "string",
|
|
174
|
+
options: ["on", "off"]
|
|
343
175
|
},
|
|
344
|
-
"
|
|
345
|
-
|
|
176
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
177
|
+
}, o = {
|
|
178
|
+
about: { required: !1, control: "text", type: "string" },
|
|
179
|
+
accessKey: {
|
|
346
180
|
required: !1,
|
|
347
181
|
control: "text",
|
|
348
|
-
type: "string"
|
|
182
|
+
type: "string",
|
|
183
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
349
184
|
},
|
|
350
185
|
autoCapitalize: {
|
|
351
186
|
required: !1,
|
|
@@ -516,339 +351,235 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
516
351
|
type: "string",
|
|
517
352
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
518
353
|
},
|
|
519
|
-
|
|
520
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
354
|
+
autoCapitalize: {
|
|
521
355
|
required: !1,
|
|
522
356
|
control: "text",
|
|
523
|
-
type: "string"
|
|
357
|
+
type: "string",
|
|
358
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
524
359
|
},
|
|
525
|
-
"
|
|
526
|
-
|
|
360
|
+
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
361
|
+
autoFocus: {
|
|
527
362
|
required: !1,
|
|
528
363
|
control: "boolean",
|
|
529
|
-
type: "boolean"
|
|
364
|
+
type: "boolean",
|
|
365
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
530
366
|
},
|
|
531
|
-
"
|
|
532
|
-
|
|
533
|
-
|
|
367
|
+
autoSave: { required: !1, control: "text", type: "string" },
|
|
368
|
+
className: { required: !1, control: "text", type: "string" },
|
|
369
|
+
color: {
|
|
534
370
|
required: !1,
|
|
535
|
-
control: "
|
|
371
|
+
control: "color",
|
|
536
372
|
type: "string",
|
|
537
|
-
|
|
373
|
+
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."
|
|
538
374
|
},
|
|
539
|
-
|
|
540
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
375
|
+
content: {
|
|
541
376
|
required: !1,
|
|
542
377
|
control: "text",
|
|
543
|
-
type: "string"
|
|
378
|
+
type: "string",
|
|
379
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
544
380
|
},
|
|
545
|
-
|
|
546
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
381
|
+
contextMenu: {
|
|
547
382
|
required: !1,
|
|
548
383
|
control: "text",
|
|
549
|
-
type: "string"
|
|
384
|
+
type: "string",
|
|
385
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
550
386
|
},
|
|
551
|
-
|
|
552
|
-
"
|
|
553
|
-
|
|
387
|
+
datatype: { required: !1, control: "text", type: "string" },
|
|
388
|
+
defaultValue: { required: !1, control: "text", type: "string" },
|
|
389
|
+
dir: {
|
|
554
390
|
required: !1,
|
|
555
391
|
control: "text",
|
|
556
|
-
type: "string"
|
|
392
|
+
type: "string",
|
|
393
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
557
394
|
},
|
|
558
|
-
|
|
559
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
395
|
+
disabled: {
|
|
560
396
|
required: !1,
|
|
561
|
-
control: "
|
|
562
|
-
type: "
|
|
563
|
-
|
|
564
|
-
"aria-colindex": {
|
|
565
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
566
|
-
required: !1,
|
|
567
|
-
control: "number",
|
|
568
|
-
type: "number"
|
|
569
|
-
},
|
|
570
|
-
"aria-colindextext": {
|
|
571
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
572
|
-
required: !1,
|
|
573
|
-
control: "text",
|
|
574
|
-
type: "string"
|
|
575
|
-
},
|
|
576
|
-
"aria-colspan": {
|
|
577
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
578
|
-
required: !1,
|
|
579
|
-
control: "number",
|
|
580
|
-
type: "number"
|
|
581
|
-
},
|
|
582
|
-
"aria-controls": {
|
|
583
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
584
|
-
required: !1,
|
|
585
|
-
control: "text",
|
|
586
|
-
type: "string"
|
|
397
|
+
control: "boolean",
|
|
398
|
+
type: "boolean",
|
|
399
|
+
description: "Indicates whether the user can interact with the element."
|
|
587
400
|
},
|
|
588
|
-
|
|
589
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
401
|
+
draggable: {
|
|
590
402
|
required: !1,
|
|
591
|
-
control: "
|
|
592
|
-
type: "
|
|
403
|
+
control: "boolean",
|
|
404
|
+
type: "boolean",
|
|
405
|
+
description: "Defines whether the element can be dragged."
|
|
593
406
|
},
|
|
594
|
-
|
|
595
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
407
|
+
form: {
|
|
596
408
|
required: !1,
|
|
597
409
|
control: "text",
|
|
598
|
-
type: "string"
|
|
410
|
+
type: "string",
|
|
411
|
+
description: "Indicates the form that is the owner of the element."
|
|
599
412
|
},
|
|
600
|
-
|
|
601
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
413
|
+
formAction: {
|
|
602
414
|
required: !1,
|
|
603
415
|
control: "text",
|
|
604
|
-
type: "string"
|
|
416
|
+
type: "string",
|
|
417
|
+
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
605
418
|
},
|
|
606
|
-
|
|
607
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
419
|
+
formEncType: {
|
|
608
420
|
required: !1,
|
|
609
421
|
control: "text",
|
|
610
|
-
type: "string"
|
|
611
|
-
},
|
|
612
|
-
"aria-disabled": {
|
|
613
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
614
|
-
required: !1,
|
|
615
|
-
control: "boolean",
|
|
616
|
-
type: "boolean"
|
|
617
|
-
},
|
|
618
|
-
"aria-dropeffect": {
|
|
619
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
620
|
-
required: !1,
|
|
621
|
-
control: "select",
|
|
622
422
|
type: "string",
|
|
623
|
-
|
|
423
|
+
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides theenctype attribute of the button's form owner.`
|
|
624
424
|
},
|
|
625
|
-
|
|
626
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
425
|
+
formMethod: {
|
|
627
426
|
required: !1,
|
|
628
427
|
control: "text",
|
|
629
|
-
type: "string"
|
|
428
|
+
type: "string",
|
|
429
|
+
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner.`
|
|
630
430
|
},
|
|
631
|
-
|
|
632
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
431
|
+
formNoValidate: {
|
|
633
432
|
required: !1,
|
|
634
433
|
control: "boolean",
|
|
635
|
-
type: "boolean"
|
|
434
|
+
type: "boolean",
|
|
435
|
+
description: `If the button/input is a submit button (e.g. type="submit"), this boolean attribute specifies that the form is not to be validatedwhen it is submitted. If this attribute is specified, it overrides thenovalidate attribute of the button's form owner.`
|
|
636
436
|
},
|
|
637
|
-
|
|
638
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
639
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
437
|
+
formTarget: {
|
|
640
438
|
required: !1,
|
|
641
439
|
control: "text",
|
|
642
|
-
type: "string"
|
|
440
|
+
type: "string",
|
|
441
|
+
description: `If the button/input is a submit button (e.g. type="submit"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received aftersubmitting the form. If this attribute is specified, it overrides thetarget attribute of the button's form owner.`
|
|
643
442
|
},
|
|
644
|
-
|
|
645
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
443
|
+
hidden: {
|
|
646
444
|
required: !1,
|
|
647
445
|
control: "boolean",
|
|
648
|
-
type: "boolean"
|
|
446
|
+
type: "boolean",
|
|
447
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
649
448
|
},
|
|
650
|
-
|
|
651
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
449
|
+
id: {
|
|
652
450
|
required: !1,
|
|
653
451
|
control: "text",
|
|
654
|
-
type: "string"
|
|
452
|
+
type: "string",
|
|
453
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
655
454
|
},
|
|
656
|
-
|
|
657
|
-
description: "
|
|
455
|
+
inputMode: {
|
|
456
|
+
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
658
457
|
required: !1,
|
|
659
|
-
control: "
|
|
660
|
-
type: "
|
|
458
|
+
control: "select",
|
|
459
|
+
type: "string",
|
|
460
|
+
options: [
|
|
461
|
+
"search",
|
|
462
|
+
"text",
|
|
463
|
+
"none",
|
|
464
|
+
"tel",
|
|
465
|
+
"url",
|
|
466
|
+
"email",
|
|
467
|
+
"numeric",
|
|
468
|
+
"decimal"
|
|
469
|
+
]
|
|
661
470
|
},
|
|
662
|
-
|
|
663
|
-
description: "
|
|
471
|
+
is: {
|
|
472
|
+
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
664
473
|
required: !1,
|
|
665
474
|
control: "text",
|
|
666
475
|
type: "string"
|
|
667
476
|
},
|
|
668
|
-
"
|
|
669
|
-
|
|
477
|
+
itemID: { required: !1, control: "text", type: "string" },
|
|
478
|
+
itemProp: { required: !1, control: "text", type: "string" },
|
|
479
|
+
itemRef: { required: !1, control: "text", type: "string" },
|
|
480
|
+
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
481
|
+
itemType: { required: !1, control: "text", type: "string" },
|
|
482
|
+
lang: {
|
|
670
483
|
required: !1,
|
|
671
484
|
control: "text",
|
|
672
|
-
type: "string"
|
|
485
|
+
type: "string",
|
|
486
|
+
description: "Defines the language used in the element."
|
|
673
487
|
},
|
|
674
|
-
|
|
675
|
-
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.",
|
|
488
|
+
name: {
|
|
676
489
|
required: !1,
|
|
677
490
|
control: "text",
|
|
678
|
-
type: "string"
|
|
491
|
+
type: "string",
|
|
492
|
+
description: "This name is important when submitting form data to the server, as it identifies the data associated with the input. When multiple inputs share the same name attribute, they are treated as part of the same group (e.g., radio buttons or checkboxes)."
|
|
679
493
|
},
|
|
680
|
-
"
|
|
681
|
-
|
|
494
|
+
nonce: { required: !1, control: "text", type: "string" },
|
|
495
|
+
prefix: { required: !1, control: "text", type: "string" },
|
|
496
|
+
property: { required: !1, control: "text", type: "string" },
|
|
497
|
+
radioGroup: { required: !1, control: "text", type: "string" },
|
|
498
|
+
rel: {
|
|
682
499
|
required: !1,
|
|
683
500
|
control: "text",
|
|
684
|
-
type: "string"
|
|
501
|
+
type: "string",
|
|
502
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
685
503
|
},
|
|
686
|
-
"
|
|
687
|
-
|
|
504
|
+
resource: { required: !1, control: "text", type: "string" },
|
|
505
|
+
results: { required: !1, control: "number", type: "number" },
|
|
506
|
+
rev: { required: !1, control: "text", type: "string" },
|
|
507
|
+
role: {
|
|
688
508
|
required: !1,
|
|
689
|
-
control: "
|
|
690
|
-
type: "
|
|
509
|
+
control: "text",
|
|
510
|
+
type: "string",
|
|
511
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
691
512
|
},
|
|
692
|
-
"
|
|
693
|
-
|
|
513
|
+
security: { required: !1, control: "text", type: "string" },
|
|
514
|
+
slot: {
|
|
694
515
|
required: !1,
|
|
695
|
-
control: "
|
|
516
|
+
control: "text",
|
|
696
517
|
type: "string",
|
|
697
|
-
|
|
518
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
698
519
|
},
|
|
699
|
-
|
|
700
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
520
|
+
spellCheck: {
|
|
701
521
|
required: !1,
|
|
702
522
|
control: "boolean",
|
|
703
|
-
type: "boolean"
|
|
523
|
+
type: "boolean",
|
|
524
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
704
525
|
},
|
|
705
|
-
|
|
706
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
526
|
+
suppressContentEditableWarning: {
|
|
707
527
|
required: !1,
|
|
708
528
|
control: "boolean",
|
|
709
529
|
type: "boolean"
|
|
710
530
|
},
|
|
711
|
-
|
|
712
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
531
|
+
suppressHydrationWarning: {
|
|
713
532
|
required: !1,
|
|
714
533
|
control: "boolean",
|
|
715
534
|
type: "boolean"
|
|
716
535
|
},
|
|
717
|
-
|
|
718
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
719
|
-
required: !1,
|
|
720
|
-
control: "radio",
|
|
721
|
-
type: "string",
|
|
722
|
-
options: ["horizontal", "vertical"]
|
|
723
|
-
},
|
|
724
|
-
"aria-owns": {
|
|
725
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
726
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
727
|
-
required: !1,
|
|
728
|
-
control: "text",
|
|
729
|
-
type: "string"
|
|
730
|
-
},
|
|
731
|
-
"aria-placeholder": {
|
|
732
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
733
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
734
|
-
required: !1,
|
|
735
|
-
control: "text",
|
|
736
|
-
type: "string"
|
|
737
|
-
},
|
|
738
|
-
"aria-posinset": {
|
|
739
|
-
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.",
|
|
536
|
+
tabIndex: {
|
|
740
537
|
required: !1,
|
|
741
538
|
control: "number",
|
|
742
|
-
type: "number"
|
|
539
|
+
type: "number",
|
|
540
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
743
541
|
},
|
|
744
|
-
|
|
745
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
542
|
+
title: {
|
|
746
543
|
required: !1,
|
|
747
544
|
control: "text",
|
|
748
|
-
type: "string"
|
|
749
|
-
},
|
|
750
|
-
"aria-readonly": {
|
|
751
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
752
|
-
required: !1,
|
|
753
|
-
control: "boolean",
|
|
754
|
-
type: "boolean"
|
|
755
|
-
},
|
|
756
|
-
"aria-relevant": {
|
|
757
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
758
|
-
required: !1,
|
|
759
|
-
control: "select",
|
|
760
545
|
type: "string",
|
|
761
|
-
|
|
762
|
-
"text",
|
|
763
|
-
"additions",
|
|
764
|
-
"additions removals",
|
|
765
|
-
"additions text",
|
|
766
|
-
"all",
|
|
767
|
-
"removals",
|
|
768
|
-
"removals additions",
|
|
769
|
-
"removals text",
|
|
770
|
-
"text additions",
|
|
771
|
-
"text removals"
|
|
772
|
-
]
|
|
773
|
-
},
|
|
774
|
-
"aria-required": {
|
|
775
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
776
|
-
required: !1,
|
|
777
|
-
control: "boolean",
|
|
778
|
-
type: "boolean"
|
|
546
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
779
547
|
},
|
|
780
|
-
|
|
781
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
548
|
+
translate: {
|
|
782
549
|
required: !1,
|
|
783
|
-
control: "
|
|
784
|
-
type: "string"
|
|
550
|
+
control: "radio",
|
|
551
|
+
type: "string",
|
|
552
|
+
options: ["yes", "no"],
|
|
553
|
+
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."
|
|
785
554
|
},
|
|
786
|
-
|
|
787
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
555
|
+
type: {
|
|
788
556
|
required: !1,
|
|
789
|
-
control: "
|
|
790
|
-
type: "
|
|
557
|
+
control: "radio",
|
|
558
|
+
type: "string",
|
|
559
|
+
options: ["button", "submit", "reset"],
|
|
560
|
+
description: "Defines the type of the element."
|
|
791
561
|
},
|
|
792
|
-
"
|
|
793
|
-
|
|
562
|
+
typeof: { required: !1, control: "text", type: "string" },
|
|
563
|
+
unselectable: {
|
|
794
564
|
required: !1,
|
|
795
|
-
control: "
|
|
796
|
-
type: "
|
|
565
|
+
control: "radio",
|
|
566
|
+
type: "string",
|
|
567
|
+
options: ["on", "off"]
|
|
797
568
|
},
|
|
798
|
-
|
|
799
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
569
|
+
value: {
|
|
800
570
|
required: !1,
|
|
801
571
|
control: "text",
|
|
802
|
-
type: "string"
|
|
803
|
-
},
|
|
804
|
-
"aria-rowspan": {
|
|
805
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
806
|
-
required: !1,
|
|
807
|
-
control: "number",
|
|
808
|
-
type: "number"
|
|
809
|
-
},
|
|
810
|
-
"aria-selected": {
|
|
811
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
812
|
-
required: !1,
|
|
813
|
-
control: "boolean",
|
|
814
|
-
type: "boolean"
|
|
815
|
-
},
|
|
816
|
-
"aria-setsize": {
|
|
817
|
-
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.",
|
|
818
|
-
required: !1,
|
|
819
|
-
control: "number",
|
|
820
|
-
type: "number"
|
|
821
|
-
},
|
|
822
|
-
"aria-sort": {
|
|
823
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
824
|
-
required: !1,
|
|
825
|
-
control: "select",
|
|
826
572
|
type: "string",
|
|
827
|
-
|
|
828
|
-
},
|
|
829
|
-
"aria-valuemax": {
|
|
830
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
831
|
-
required: !1,
|
|
832
|
-
control: "number",
|
|
833
|
-
type: "number"
|
|
834
|
-
},
|
|
835
|
-
"aria-valuemin": {
|
|
836
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
837
|
-
required: !1,
|
|
838
|
-
control: "number",
|
|
839
|
-
type: "number"
|
|
840
|
-
},
|
|
841
|
-
"aria-valuenow": {
|
|
842
|
-
description: "Defines the current value for a range widget.",
|
|
843
|
-
required: !1,
|
|
844
|
-
control: "number",
|
|
845
|
-
type: "number"
|
|
573
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
846
574
|
},
|
|
847
|
-
"
|
|
848
|
-
|
|
575
|
+
vocab: { required: !1, control: "text", type: "string" }
|
|
576
|
+
}, n = {
|
|
577
|
+
about: { required: !1, control: "text", type: "string" },
|
|
578
|
+
accessKey: {
|
|
849
579
|
required: !1,
|
|
850
580
|
control: "text",
|
|
851
|
-
type: "string"
|
|
581
|
+
type: "string",
|
|
582
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
852
583
|
},
|
|
853
584
|
autoCapitalize: {
|
|
854
585
|
required: !1,
|
|
@@ -990,6 +721,12 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
990
721
|
type: "number",
|
|
991
722
|
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
992
723
|
},
|
|
724
|
+
tag: {
|
|
725
|
+
required: !1,
|
|
726
|
+
control: "select",
|
|
727
|
+
type: "string",
|
|
728
|
+
options: ["h2", "h3", "h1", "h4", "h5", "h6"]
|
|
729
|
+
},
|
|
993
730
|
title: {
|
|
994
731
|
required: !1,
|
|
995
732
|
control: "text",
|
|
@@ -1011,7 +748,7 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
1011
748
|
options: ["on", "off"]
|
|
1012
749
|
},
|
|
1013
750
|
vocab: { required: !1, control: "text", type: "string" }
|
|
1014
|
-
},
|
|
751
|
+
}, s = {
|
|
1015
752
|
about: { required: !1, control: "text", type: "string" },
|
|
1016
753
|
accessKey: {
|
|
1017
754
|
required: !1,
|
|
@@ -1019,1413 +756,6 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
1019
756
|
type: "string",
|
|
1020
757
|
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1021
758
|
},
|
|
1022
|
-
"aria-activedescendant": {
|
|
1023
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1024
|
-
required: !1,
|
|
1025
|
-
control: "text",
|
|
1026
|
-
type: "string"
|
|
1027
|
-
},
|
|
1028
|
-
"aria-atomic": {
|
|
1029
|
-
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.",
|
|
1030
|
-
required: !1,
|
|
1031
|
-
control: "boolean",
|
|
1032
|
-
type: "boolean"
|
|
1033
|
-
},
|
|
1034
|
-
"aria-autocomplete": {
|
|
1035
|
-
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
|
|
1036
|
-
presented if they are made.`,
|
|
1037
|
-
required: !1,
|
|
1038
|
-
control: "select",
|
|
1039
|
-
type: "string",
|
|
1040
|
-
options: ["list", "none", "inline", "both"]
|
|
1041
|
-
},
|
|
1042
|
-
"aria-braillelabel": {
|
|
1043
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
1044
|
-
required: !1,
|
|
1045
|
-
control: "text",
|
|
1046
|
-
type: "string"
|
|
1047
|
-
},
|
|
1048
|
-
"aria-brailleroledescription": {
|
|
1049
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
1050
|
-
required: !1,
|
|
1051
|
-
control: "text",
|
|
1052
|
-
type: "string"
|
|
1053
|
-
},
|
|
1054
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
1055
|
-
"aria-checked": {
|
|
1056
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
1057
|
-
required: !1,
|
|
1058
|
-
control: "text",
|
|
1059
|
-
type: "string"
|
|
1060
|
-
},
|
|
1061
|
-
"aria-colcount": {
|
|
1062
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
1063
|
-
required: !1,
|
|
1064
|
-
control: "number",
|
|
1065
|
-
type: "number"
|
|
1066
|
-
},
|
|
1067
|
-
"aria-colindex": {
|
|
1068
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
1069
|
-
required: !1,
|
|
1070
|
-
control: "number",
|
|
1071
|
-
type: "number"
|
|
1072
|
-
},
|
|
1073
|
-
"aria-colindextext": {
|
|
1074
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
1075
|
-
required: !1,
|
|
1076
|
-
control: "text",
|
|
1077
|
-
type: "string"
|
|
1078
|
-
},
|
|
1079
|
-
"aria-colspan": {
|
|
1080
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1081
|
-
required: !1,
|
|
1082
|
-
control: "number",
|
|
1083
|
-
type: "number"
|
|
1084
|
-
},
|
|
1085
|
-
"aria-controls": {
|
|
1086
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
1087
|
-
required: !1,
|
|
1088
|
-
control: "text",
|
|
1089
|
-
type: "string"
|
|
1090
|
-
},
|
|
1091
|
-
"aria-current": {
|
|
1092
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
1093
|
-
required: !1,
|
|
1094
|
-
control: "text",
|
|
1095
|
-
type: "string"
|
|
1096
|
-
},
|
|
1097
|
-
"aria-describedby": {
|
|
1098
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
1099
|
-
required: !1,
|
|
1100
|
-
control: "text",
|
|
1101
|
-
type: "string"
|
|
1102
|
-
},
|
|
1103
|
-
"aria-description": {
|
|
1104
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
1105
|
-
required: !1,
|
|
1106
|
-
control: "text",
|
|
1107
|
-
type: "string"
|
|
1108
|
-
},
|
|
1109
|
-
"aria-details": {
|
|
1110
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
1111
|
-
required: !1,
|
|
1112
|
-
control: "text",
|
|
1113
|
-
type: "string"
|
|
1114
|
-
},
|
|
1115
|
-
"aria-disabled": {
|
|
1116
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
1117
|
-
required: !1,
|
|
1118
|
-
control: "boolean",
|
|
1119
|
-
type: "boolean"
|
|
1120
|
-
},
|
|
1121
|
-
"aria-dropeffect": {
|
|
1122
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
1123
|
-
required: !1,
|
|
1124
|
-
control: "select",
|
|
1125
|
-
type: "string",
|
|
1126
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
1127
|
-
},
|
|
1128
|
-
"aria-errormessage": {
|
|
1129
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
1130
|
-
required: !1,
|
|
1131
|
-
control: "text",
|
|
1132
|
-
type: "string"
|
|
1133
|
-
},
|
|
1134
|
-
"aria-expanded": {
|
|
1135
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
1136
|
-
required: !1,
|
|
1137
|
-
control: "boolean",
|
|
1138
|
-
type: "boolean"
|
|
1139
|
-
},
|
|
1140
|
-
"aria-flowto": {
|
|
1141
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
1142
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
1143
|
-
required: !1,
|
|
1144
|
-
control: "text",
|
|
1145
|
-
type: "string"
|
|
1146
|
-
},
|
|
1147
|
-
"aria-grabbed": {
|
|
1148
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
1149
|
-
required: !1,
|
|
1150
|
-
control: "boolean",
|
|
1151
|
-
type: "boolean"
|
|
1152
|
-
},
|
|
1153
|
-
"aria-haspopup": {
|
|
1154
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
1155
|
-
required: !1,
|
|
1156
|
-
control: "text",
|
|
1157
|
-
type: "string"
|
|
1158
|
-
},
|
|
1159
|
-
"aria-hidden": {
|
|
1160
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
1161
|
-
required: !1,
|
|
1162
|
-
control: "boolean",
|
|
1163
|
-
type: "boolean"
|
|
1164
|
-
},
|
|
1165
|
-
"aria-invalid": {
|
|
1166
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
1167
|
-
required: !1,
|
|
1168
|
-
control: "text",
|
|
1169
|
-
type: "string"
|
|
1170
|
-
},
|
|
1171
|
-
"aria-keyshortcuts": {
|
|
1172
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
1173
|
-
required: !1,
|
|
1174
|
-
control: "text",
|
|
1175
|
-
type: "string"
|
|
1176
|
-
},
|
|
1177
|
-
"aria-label": {
|
|
1178
|
-
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.",
|
|
1179
|
-
required: !1,
|
|
1180
|
-
control: "text",
|
|
1181
|
-
type: "string"
|
|
1182
|
-
},
|
|
1183
|
-
"aria-labelledby": {
|
|
1184
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
1185
|
-
required: !1,
|
|
1186
|
-
control: "text",
|
|
1187
|
-
type: "string"
|
|
1188
|
-
},
|
|
1189
|
-
"aria-level": {
|
|
1190
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
1191
|
-
required: !1,
|
|
1192
|
-
control: "number",
|
|
1193
|
-
type: "number"
|
|
1194
|
-
},
|
|
1195
|
-
"aria-live": {
|
|
1196
|
-
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.",
|
|
1197
|
-
required: !1,
|
|
1198
|
-
control: "radio",
|
|
1199
|
-
type: "string",
|
|
1200
|
-
options: ["off", "assertive", "polite"]
|
|
1201
|
-
},
|
|
1202
|
-
"aria-modal": {
|
|
1203
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
1204
|
-
required: !1,
|
|
1205
|
-
control: "boolean",
|
|
1206
|
-
type: "boolean"
|
|
1207
|
-
},
|
|
1208
|
-
"aria-multiline": {
|
|
1209
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
1210
|
-
required: !1,
|
|
1211
|
-
control: "boolean",
|
|
1212
|
-
type: "boolean"
|
|
1213
|
-
},
|
|
1214
|
-
"aria-multiselectable": {
|
|
1215
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
1216
|
-
required: !1,
|
|
1217
|
-
control: "boolean",
|
|
1218
|
-
type: "boolean"
|
|
1219
|
-
},
|
|
1220
|
-
"aria-orientation": {
|
|
1221
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
1222
|
-
required: !1,
|
|
1223
|
-
control: "radio",
|
|
1224
|
-
type: "string",
|
|
1225
|
-
options: ["horizontal", "vertical"]
|
|
1226
|
-
},
|
|
1227
|
-
"aria-owns": {
|
|
1228
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
1229
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
1230
|
-
required: !1,
|
|
1231
|
-
control: "text",
|
|
1232
|
-
type: "string"
|
|
1233
|
-
},
|
|
1234
|
-
"aria-placeholder": {
|
|
1235
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
1236
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
1237
|
-
required: !1,
|
|
1238
|
-
control: "text",
|
|
1239
|
-
type: "string"
|
|
1240
|
-
},
|
|
1241
|
-
"aria-posinset": {
|
|
1242
|
-
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.",
|
|
1243
|
-
required: !1,
|
|
1244
|
-
control: "number",
|
|
1245
|
-
type: "number"
|
|
1246
|
-
},
|
|
1247
|
-
"aria-pressed": {
|
|
1248
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
1249
|
-
required: !1,
|
|
1250
|
-
control: "text",
|
|
1251
|
-
type: "string"
|
|
1252
|
-
},
|
|
1253
|
-
"aria-readonly": {
|
|
1254
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
1255
|
-
required: !1,
|
|
1256
|
-
control: "boolean",
|
|
1257
|
-
type: "boolean"
|
|
1258
|
-
},
|
|
1259
|
-
"aria-relevant": {
|
|
1260
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
1261
|
-
required: !1,
|
|
1262
|
-
control: "select",
|
|
1263
|
-
type: "string",
|
|
1264
|
-
options: [
|
|
1265
|
-
"text",
|
|
1266
|
-
"additions",
|
|
1267
|
-
"additions removals",
|
|
1268
|
-
"additions text",
|
|
1269
|
-
"all",
|
|
1270
|
-
"removals",
|
|
1271
|
-
"removals additions",
|
|
1272
|
-
"removals text",
|
|
1273
|
-
"text additions",
|
|
1274
|
-
"text removals"
|
|
1275
|
-
]
|
|
1276
|
-
},
|
|
1277
|
-
"aria-required": {
|
|
1278
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
1279
|
-
required: !1,
|
|
1280
|
-
control: "boolean",
|
|
1281
|
-
type: "boolean"
|
|
1282
|
-
},
|
|
1283
|
-
"aria-roledescription": {
|
|
1284
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
1285
|
-
required: !1,
|
|
1286
|
-
control: "text",
|
|
1287
|
-
type: "string"
|
|
1288
|
-
},
|
|
1289
|
-
"aria-rowcount": {
|
|
1290
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
1291
|
-
required: !1,
|
|
1292
|
-
control: "number",
|
|
1293
|
-
type: "number"
|
|
1294
|
-
},
|
|
1295
|
-
"aria-rowindex": {
|
|
1296
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
1297
|
-
required: !1,
|
|
1298
|
-
control: "number",
|
|
1299
|
-
type: "number"
|
|
1300
|
-
},
|
|
1301
|
-
"aria-rowindextext": {
|
|
1302
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
1303
|
-
required: !1,
|
|
1304
|
-
control: "text",
|
|
1305
|
-
type: "string"
|
|
1306
|
-
},
|
|
1307
|
-
"aria-rowspan": {
|
|
1308
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1309
|
-
required: !1,
|
|
1310
|
-
control: "number",
|
|
1311
|
-
type: "number"
|
|
1312
|
-
},
|
|
1313
|
-
"aria-selected": {
|
|
1314
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
1315
|
-
required: !1,
|
|
1316
|
-
control: "boolean",
|
|
1317
|
-
type: "boolean"
|
|
1318
|
-
},
|
|
1319
|
-
"aria-setsize": {
|
|
1320
|
-
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.",
|
|
1321
|
-
required: !1,
|
|
1322
|
-
control: "number",
|
|
1323
|
-
type: "number"
|
|
1324
|
-
},
|
|
1325
|
-
"aria-sort": {
|
|
1326
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
1327
|
-
required: !1,
|
|
1328
|
-
control: "select",
|
|
1329
|
-
type: "string",
|
|
1330
|
-
options: ["none", "ascending", "descending", "other"]
|
|
1331
|
-
},
|
|
1332
|
-
"aria-valuemax": {
|
|
1333
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
1334
|
-
required: !1,
|
|
1335
|
-
control: "number",
|
|
1336
|
-
type: "number"
|
|
1337
|
-
},
|
|
1338
|
-
"aria-valuemin": {
|
|
1339
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
1340
|
-
required: !1,
|
|
1341
|
-
control: "number",
|
|
1342
|
-
type: "number"
|
|
1343
|
-
},
|
|
1344
|
-
"aria-valuenow": {
|
|
1345
|
-
description: "Defines the current value for a range widget.",
|
|
1346
|
-
required: !1,
|
|
1347
|
-
control: "number",
|
|
1348
|
-
type: "number"
|
|
1349
|
-
},
|
|
1350
|
-
"aria-valuetext": {
|
|
1351
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
1352
|
-
required: !1,
|
|
1353
|
-
control: "text",
|
|
1354
|
-
type: "string"
|
|
1355
|
-
},
|
|
1356
|
-
autoCapitalize: {
|
|
1357
|
-
required: !1,
|
|
1358
|
-
control: "text",
|
|
1359
|
-
type: "string",
|
|
1360
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1361
|
-
},
|
|
1362
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
1363
|
-
autoFocus: {
|
|
1364
|
-
required: !1,
|
|
1365
|
-
control: "boolean",
|
|
1366
|
-
type: "boolean",
|
|
1367
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1368
|
-
},
|
|
1369
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
1370
|
-
className: { required: !1, control: "text", type: "string" },
|
|
1371
|
-
color: {
|
|
1372
|
-
required: !1,
|
|
1373
|
-
control: "color",
|
|
1374
|
-
type: "string",
|
|
1375
|
-
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."
|
|
1376
|
-
},
|
|
1377
|
-
content: {
|
|
1378
|
-
required: !1,
|
|
1379
|
-
control: "text",
|
|
1380
|
-
type: "string",
|
|
1381
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
1382
|
-
},
|
|
1383
|
-
contextMenu: {
|
|
1384
|
-
required: !1,
|
|
1385
|
-
control: "text",
|
|
1386
|
-
type: "string",
|
|
1387
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1388
|
-
},
|
|
1389
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
1390
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
1391
|
-
dir: {
|
|
1392
|
-
required: !1,
|
|
1393
|
-
control: "text",
|
|
1394
|
-
type: "string",
|
|
1395
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1396
|
-
},
|
|
1397
|
-
disabled: {
|
|
1398
|
-
required: !1,
|
|
1399
|
-
control: "boolean",
|
|
1400
|
-
type: "boolean",
|
|
1401
|
-
description: "Indicates whether the user can interact with the element."
|
|
1402
|
-
},
|
|
1403
|
-
draggable: {
|
|
1404
|
-
required: !1,
|
|
1405
|
-
control: "boolean",
|
|
1406
|
-
type: "boolean",
|
|
1407
|
-
description: "Defines whether the element can be dragged."
|
|
1408
|
-
},
|
|
1409
|
-
form: {
|
|
1410
|
-
required: !1,
|
|
1411
|
-
control: "text",
|
|
1412
|
-
type: "string",
|
|
1413
|
-
description: "Indicates the form that is the owner of the element."
|
|
1414
|
-
},
|
|
1415
|
-
formAction: {
|
|
1416
|
-
required: !1,
|
|
1417
|
-
control: "text",
|
|
1418
|
-
type: "string",
|
|
1419
|
-
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
1420
|
-
},
|
|
1421
|
-
formEncType: {
|
|
1422
|
-
required: !1,
|
|
1423
|
-
control: "text",
|
|
1424
|
-
type: "string",
|
|
1425
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides theenctype attribute of the button's form owner.`
|
|
1426
|
-
},
|
|
1427
|
-
formMethod: {
|
|
1428
|
-
required: !1,
|
|
1429
|
-
control: "text",
|
|
1430
|
-
type: "string",
|
|
1431
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner.`
|
|
1432
|
-
},
|
|
1433
|
-
formNoValidate: {
|
|
1434
|
-
required: !1,
|
|
1435
|
-
control: "boolean",
|
|
1436
|
-
type: "boolean",
|
|
1437
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this boolean attribute specifies that the form is not to be validatedwhen it is submitted. If this attribute is specified, it overrides thenovalidate attribute of the button's form owner.`
|
|
1438
|
-
},
|
|
1439
|
-
formTarget: {
|
|
1440
|
-
required: !1,
|
|
1441
|
-
control: "text",
|
|
1442
|
-
type: "string",
|
|
1443
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received aftersubmitting the form. If this attribute is specified, it overrides thetarget attribute of the button's form owner.`
|
|
1444
|
-
},
|
|
1445
|
-
hidden: {
|
|
1446
|
-
required: !1,
|
|
1447
|
-
control: "boolean",
|
|
1448
|
-
type: "boolean",
|
|
1449
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1450
|
-
},
|
|
1451
|
-
id: {
|
|
1452
|
-
required: !1,
|
|
1453
|
-
control: "text",
|
|
1454
|
-
type: "string",
|
|
1455
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1456
|
-
},
|
|
1457
|
-
inputMode: {
|
|
1458
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
1459
|
-
required: !1,
|
|
1460
|
-
control: "select",
|
|
1461
|
-
type: "string",
|
|
1462
|
-
options: [
|
|
1463
|
-
"search",
|
|
1464
|
-
"text",
|
|
1465
|
-
"none",
|
|
1466
|
-
"tel",
|
|
1467
|
-
"url",
|
|
1468
|
-
"email",
|
|
1469
|
-
"numeric",
|
|
1470
|
-
"decimal"
|
|
1471
|
-
]
|
|
1472
|
-
},
|
|
1473
|
-
is: {
|
|
1474
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
1475
|
-
required: !1,
|
|
1476
|
-
control: "text",
|
|
1477
|
-
type: "string"
|
|
1478
|
-
},
|
|
1479
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
1480
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
1481
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
1482
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
1483
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
1484
|
-
lang: {
|
|
1485
|
-
required: !1,
|
|
1486
|
-
control: "text",
|
|
1487
|
-
type: "string",
|
|
1488
|
-
description: "Defines the language used in the element."
|
|
1489
|
-
},
|
|
1490
|
-
name: {
|
|
1491
|
-
required: !1,
|
|
1492
|
-
control: "text",
|
|
1493
|
-
type: "string",
|
|
1494
|
-
description: "This name is important when submitting form data to the server, as it identifies the data associated with the input. When multiple inputs share the same name attribute, they are treated as part of the same group (e.g., radio buttons or checkboxes)."
|
|
1495
|
-
},
|
|
1496
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
1497
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
1498
|
-
property: { required: !1, control: "text", type: "string" },
|
|
1499
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
1500
|
-
rel: {
|
|
1501
|
-
required: !1,
|
|
1502
|
-
control: "text",
|
|
1503
|
-
type: "string",
|
|
1504
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
1505
|
-
},
|
|
1506
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
1507
|
-
results: { required: !1, control: "number", type: "number" },
|
|
1508
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
1509
|
-
role: {
|
|
1510
|
-
required: !1,
|
|
1511
|
-
control: "text",
|
|
1512
|
-
type: "string",
|
|
1513
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1514
|
-
},
|
|
1515
|
-
security: { required: !1, control: "text", type: "string" },
|
|
1516
|
-
slot: {
|
|
1517
|
-
required: !1,
|
|
1518
|
-
control: "text",
|
|
1519
|
-
type: "string",
|
|
1520
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1521
|
-
},
|
|
1522
|
-
spellCheck: {
|
|
1523
|
-
required: !1,
|
|
1524
|
-
control: "boolean",
|
|
1525
|
-
type: "boolean",
|
|
1526
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
1527
|
-
},
|
|
1528
|
-
suppressContentEditableWarning: {
|
|
1529
|
-
required: !1,
|
|
1530
|
-
control: "boolean",
|
|
1531
|
-
type: "boolean"
|
|
1532
|
-
},
|
|
1533
|
-
suppressHydrationWarning: {
|
|
1534
|
-
required: !1,
|
|
1535
|
-
control: "boolean",
|
|
1536
|
-
type: "boolean"
|
|
1537
|
-
},
|
|
1538
|
-
tabIndex: {
|
|
1539
|
-
required: !1,
|
|
1540
|
-
control: "number",
|
|
1541
|
-
type: "number",
|
|
1542
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1543
|
-
},
|
|
1544
|
-
title: {
|
|
1545
|
-
required: !1,
|
|
1546
|
-
control: "text",
|
|
1547
|
-
type: "string",
|
|
1548
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1549
|
-
},
|
|
1550
|
-
translate: {
|
|
1551
|
-
required: !1,
|
|
1552
|
-
control: "radio",
|
|
1553
|
-
type: "string",
|
|
1554
|
-
options: ["yes", "no"],
|
|
1555
|
-
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."
|
|
1556
|
-
},
|
|
1557
|
-
type: {
|
|
1558
|
-
required: !1,
|
|
1559
|
-
control: "radio",
|
|
1560
|
-
type: "string",
|
|
1561
|
-
options: ["button", "submit", "reset"],
|
|
1562
|
-
description: "Defines the type of the element."
|
|
1563
|
-
},
|
|
1564
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
1565
|
-
unselectable: {
|
|
1566
|
-
required: !1,
|
|
1567
|
-
control: "radio",
|
|
1568
|
-
type: "string",
|
|
1569
|
-
options: ["on", "off"]
|
|
1570
|
-
},
|
|
1571
|
-
value: {
|
|
1572
|
-
required: !1,
|
|
1573
|
-
control: "text",
|
|
1574
|
-
type: "string",
|
|
1575
|
-
description: "Defines a default value which will be displayed in the element on pageload."
|
|
1576
|
-
},
|
|
1577
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
1578
|
-
}, o = {
|
|
1579
|
-
about: { required: !1, control: "text", type: "string" },
|
|
1580
|
-
accessKey: {
|
|
1581
|
-
required: !1,
|
|
1582
|
-
control: "text",
|
|
1583
|
-
type: "string",
|
|
1584
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1585
|
-
},
|
|
1586
|
-
"aria-activedescendant": {
|
|
1587
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1588
|
-
required: !1,
|
|
1589
|
-
control: "text",
|
|
1590
|
-
type: "string"
|
|
1591
|
-
},
|
|
1592
|
-
"aria-atomic": {
|
|
1593
|
-
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.",
|
|
1594
|
-
required: !1,
|
|
1595
|
-
control: "boolean",
|
|
1596
|
-
type: "boolean"
|
|
1597
|
-
},
|
|
1598
|
-
"aria-autocomplete": {
|
|
1599
|
-
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
|
|
1600
|
-
presented if they are made.`,
|
|
1601
|
-
required: !1,
|
|
1602
|
-
control: "select",
|
|
1603
|
-
type: "string",
|
|
1604
|
-
options: ["list", "none", "inline", "both"]
|
|
1605
|
-
},
|
|
1606
|
-
"aria-braillelabel": {
|
|
1607
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
1608
|
-
required: !1,
|
|
1609
|
-
control: "text",
|
|
1610
|
-
type: "string"
|
|
1611
|
-
},
|
|
1612
|
-
"aria-brailleroledescription": {
|
|
1613
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
1614
|
-
required: !1,
|
|
1615
|
-
control: "text",
|
|
1616
|
-
type: "string"
|
|
1617
|
-
},
|
|
1618
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
1619
|
-
"aria-checked": {
|
|
1620
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
1621
|
-
required: !1,
|
|
1622
|
-
control: "text",
|
|
1623
|
-
type: "string"
|
|
1624
|
-
},
|
|
1625
|
-
"aria-colcount": {
|
|
1626
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
1627
|
-
required: !1,
|
|
1628
|
-
control: "number",
|
|
1629
|
-
type: "number"
|
|
1630
|
-
},
|
|
1631
|
-
"aria-colindex": {
|
|
1632
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
1633
|
-
required: !1,
|
|
1634
|
-
control: "number",
|
|
1635
|
-
type: "number"
|
|
1636
|
-
},
|
|
1637
|
-
"aria-colindextext": {
|
|
1638
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
1639
|
-
required: !1,
|
|
1640
|
-
control: "text",
|
|
1641
|
-
type: "string"
|
|
1642
|
-
},
|
|
1643
|
-
"aria-colspan": {
|
|
1644
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1645
|
-
required: !1,
|
|
1646
|
-
control: "number",
|
|
1647
|
-
type: "number"
|
|
1648
|
-
},
|
|
1649
|
-
"aria-controls": {
|
|
1650
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
1651
|
-
required: !1,
|
|
1652
|
-
control: "text",
|
|
1653
|
-
type: "string"
|
|
1654
|
-
},
|
|
1655
|
-
"aria-current": {
|
|
1656
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
1657
|
-
required: !1,
|
|
1658
|
-
control: "text",
|
|
1659
|
-
type: "string"
|
|
1660
|
-
},
|
|
1661
|
-
"aria-describedby": {
|
|
1662
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
1663
|
-
required: !1,
|
|
1664
|
-
control: "text",
|
|
1665
|
-
type: "string"
|
|
1666
|
-
},
|
|
1667
|
-
"aria-description": {
|
|
1668
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
1669
|
-
required: !1,
|
|
1670
|
-
control: "text",
|
|
1671
|
-
type: "string"
|
|
1672
|
-
},
|
|
1673
|
-
"aria-details": {
|
|
1674
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
1675
|
-
required: !1,
|
|
1676
|
-
control: "text",
|
|
1677
|
-
type: "string"
|
|
1678
|
-
},
|
|
1679
|
-
"aria-disabled": {
|
|
1680
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
1681
|
-
required: !1,
|
|
1682
|
-
control: "boolean",
|
|
1683
|
-
type: "boolean"
|
|
1684
|
-
},
|
|
1685
|
-
"aria-dropeffect": {
|
|
1686
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
1687
|
-
required: !1,
|
|
1688
|
-
control: "select",
|
|
1689
|
-
type: "string",
|
|
1690
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
1691
|
-
},
|
|
1692
|
-
"aria-errormessage": {
|
|
1693
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
1694
|
-
required: !1,
|
|
1695
|
-
control: "text",
|
|
1696
|
-
type: "string"
|
|
1697
|
-
},
|
|
1698
|
-
"aria-expanded": {
|
|
1699
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
1700
|
-
required: !1,
|
|
1701
|
-
control: "boolean",
|
|
1702
|
-
type: "boolean"
|
|
1703
|
-
},
|
|
1704
|
-
"aria-flowto": {
|
|
1705
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
1706
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
1707
|
-
required: !1,
|
|
1708
|
-
control: "text",
|
|
1709
|
-
type: "string"
|
|
1710
|
-
},
|
|
1711
|
-
"aria-grabbed": {
|
|
1712
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
1713
|
-
required: !1,
|
|
1714
|
-
control: "boolean",
|
|
1715
|
-
type: "boolean"
|
|
1716
|
-
},
|
|
1717
|
-
"aria-haspopup": {
|
|
1718
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
1719
|
-
required: !1,
|
|
1720
|
-
control: "text",
|
|
1721
|
-
type: "string"
|
|
1722
|
-
},
|
|
1723
|
-
"aria-hidden": {
|
|
1724
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
1725
|
-
required: !1,
|
|
1726
|
-
control: "boolean",
|
|
1727
|
-
type: "boolean"
|
|
1728
|
-
},
|
|
1729
|
-
"aria-invalid": {
|
|
1730
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
1731
|
-
required: !1,
|
|
1732
|
-
control: "text",
|
|
1733
|
-
type: "string"
|
|
1734
|
-
},
|
|
1735
|
-
"aria-keyshortcuts": {
|
|
1736
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
1737
|
-
required: !1,
|
|
1738
|
-
control: "text",
|
|
1739
|
-
type: "string"
|
|
1740
|
-
},
|
|
1741
|
-
"aria-label": {
|
|
1742
|
-
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.",
|
|
1743
|
-
required: !1,
|
|
1744
|
-
control: "text",
|
|
1745
|
-
type: "string"
|
|
1746
|
-
},
|
|
1747
|
-
"aria-labelledby": {
|
|
1748
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
1749
|
-
required: !1,
|
|
1750
|
-
control: "text",
|
|
1751
|
-
type: "string"
|
|
1752
|
-
},
|
|
1753
|
-
"aria-level": {
|
|
1754
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
1755
|
-
required: !1,
|
|
1756
|
-
control: "number",
|
|
1757
|
-
type: "number"
|
|
1758
|
-
},
|
|
1759
|
-
"aria-live": {
|
|
1760
|
-
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.",
|
|
1761
|
-
required: !1,
|
|
1762
|
-
control: "radio",
|
|
1763
|
-
type: "string",
|
|
1764
|
-
options: ["off", "assertive", "polite"]
|
|
1765
|
-
},
|
|
1766
|
-
"aria-modal": {
|
|
1767
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
1768
|
-
required: !1,
|
|
1769
|
-
control: "boolean",
|
|
1770
|
-
type: "boolean"
|
|
1771
|
-
},
|
|
1772
|
-
"aria-multiline": {
|
|
1773
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
1774
|
-
required: !1,
|
|
1775
|
-
control: "boolean",
|
|
1776
|
-
type: "boolean"
|
|
1777
|
-
},
|
|
1778
|
-
"aria-multiselectable": {
|
|
1779
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
1780
|
-
required: !1,
|
|
1781
|
-
control: "boolean",
|
|
1782
|
-
type: "boolean"
|
|
1783
|
-
},
|
|
1784
|
-
"aria-orientation": {
|
|
1785
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
1786
|
-
required: !1,
|
|
1787
|
-
control: "radio",
|
|
1788
|
-
type: "string",
|
|
1789
|
-
options: ["horizontal", "vertical"]
|
|
1790
|
-
},
|
|
1791
|
-
"aria-owns": {
|
|
1792
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
1793
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
1794
|
-
required: !1,
|
|
1795
|
-
control: "text",
|
|
1796
|
-
type: "string"
|
|
1797
|
-
},
|
|
1798
|
-
"aria-placeholder": {
|
|
1799
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
1800
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
1801
|
-
required: !1,
|
|
1802
|
-
control: "text",
|
|
1803
|
-
type: "string"
|
|
1804
|
-
},
|
|
1805
|
-
"aria-posinset": {
|
|
1806
|
-
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.",
|
|
1807
|
-
required: !1,
|
|
1808
|
-
control: "number",
|
|
1809
|
-
type: "number"
|
|
1810
|
-
},
|
|
1811
|
-
"aria-pressed": {
|
|
1812
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
1813
|
-
required: !1,
|
|
1814
|
-
control: "text",
|
|
1815
|
-
type: "string"
|
|
1816
|
-
},
|
|
1817
|
-
"aria-readonly": {
|
|
1818
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
1819
|
-
required: !1,
|
|
1820
|
-
control: "boolean",
|
|
1821
|
-
type: "boolean"
|
|
1822
|
-
},
|
|
1823
|
-
"aria-relevant": {
|
|
1824
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
1825
|
-
required: !1,
|
|
1826
|
-
control: "select",
|
|
1827
|
-
type: "string",
|
|
1828
|
-
options: [
|
|
1829
|
-
"text",
|
|
1830
|
-
"additions",
|
|
1831
|
-
"additions removals",
|
|
1832
|
-
"additions text",
|
|
1833
|
-
"all",
|
|
1834
|
-
"removals",
|
|
1835
|
-
"removals additions",
|
|
1836
|
-
"removals text",
|
|
1837
|
-
"text additions",
|
|
1838
|
-
"text removals"
|
|
1839
|
-
]
|
|
1840
|
-
},
|
|
1841
|
-
"aria-required": {
|
|
1842
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
1843
|
-
required: !1,
|
|
1844
|
-
control: "boolean",
|
|
1845
|
-
type: "boolean"
|
|
1846
|
-
},
|
|
1847
|
-
"aria-roledescription": {
|
|
1848
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
1849
|
-
required: !1,
|
|
1850
|
-
control: "text",
|
|
1851
|
-
type: "string"
|
|
1852
|
-
},
|
|
1853
|
-
"aria-rowcount": {
|
|
1854
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
1855
|
-
required: !1,
|
|
1856
|
-
control: "number",
|
|
1857
|
-
type: "number"
|
|
1858
|
-
},
|
|
1859
|
-
"aria-rowindex": {
|
|
1860
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
1861
|
-
required: !1,
|
|
1862
|
-
control: "number",
|
|
1863
|
-
type: "number"
|
|
1864
|
-
},
|
|
1865
|
-
"aria-rowindextext": {
|
|
1866
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
1867
|
-
required: !1,
|
|
1868
|
-
control: "text",
|
|
1869
|
-
type: "string"
|
|
1870
|
-
},
|
|
1871
|
-
"aria-rowspan": {
|
|
1872
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
1873
|
-
required: !1,
|
|
1874
|
-
control: "number",
|
|
1875
|
-
type: "number"
|
|
1876
|
-
},
|
|
1877
|
-
"aria-selected": {
|
|
1878
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
1879
|
-
required: !1,
|
|
1880
|
-
control: "boolean",
|
|
1881
|
-
type: "boolean"
|
|
1882
|
-
},
|
|
1883
|
-
"aria-setsize": {
|
|
1884
|
-
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.",
|
|
1885
|
-
required: !1,
|
|
1886
|
-
control: "number",
|
|
1887
|
-
type: "number"
|
|
1888
|
-
},
|
|
1889
|
-
"aria-sort": {
|
|
1890
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
1891
|
-
required: !1,
|
|
1892
|
-
control: "select",
|
|
1893
|
-
type: "string",
|
|
1894
|
-
options: ["none", "ascending", "descending", "other"]
|
|
1895
|
-
},
|
|
1896
|
-
"aria-valuemax": {
|
|
1897
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
1898
|
-
required: !1,
|
|
1899
|
-
control: "number",
|
|
1900
|
-
type: "number"
|
|
1901
|
-
},
|
|
1902
|
-
"aria-valuemin": {
|
|
1903
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
1904
|
-
required: !1,
|
|
1905
|
-
control: "number",
|
|
1906
|
-
type: "number"
|
|
1907
|
-
},
|
|
1908
|
-
"aria-valuenow": {
|
|
1909
|
-
description: "Defines the current value for a range widget.",
|
|
1910
|
-
required: !1,
|
|
1911
|
-
control: "number",
|
|
1912
|
-
type: "number"
|
|
1913
|
-
},
|
|
1914
|
-
"aria-valuetext": {
|
|
1915
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
1916
|
-
required: !1,
|
|
1917
|
-
control: "text",
|
|
1918
|
-
type: "string"
|
|
1919
|
-
},
|
|
1920
|
-
autoCapitalize: {
|
|
1921
|
-
required: !1,
|
|
1922
|
-
control: "text",
|
|
1923
|
-
type: "string",
|
|
1924
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1925
|
-
},
|
|
1926
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
1927
|
-
autoFocus: {
|
|
1928
|
-
required: !1,
|
|
1929
|
-
control: "boolean",
|
|
1930
|
-
type: "boolean",
|
|
1931
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1932
|
-
},
|
|
1933
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
1934
|
-
className: { required: !1, control: "text", type: "string" },
|
|
1935
|
-
color: {
|
|
1936
|
-
required: !1,
|
|
1937
|
-
control: "color",
|
|
1938
|
-
type: "string",
|
|
1939
|
-
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."
|
|
1940
|
-
},
|
|
1941
|
-
content: {
|
|
1942
|
-
required: !1,
|
|
1943
|
-
control: "text",
|
|
1944
|
-
type: "string",
|
|
1945
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
1946
|
-
},
|
|
1947
|
-
contextMenu: {
|
|
1948
|
-
required: !1,
|
|
1949
|
-
control: "text",
|
|
1950
|
-
type: "string",
|
|
1951
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1952
|
-
},
|
|
1953
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
1954
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
1955
|
-
dir: {
|
|
1956
|
-
required: !1,
|
|
1957
|
-
control: "text",
|
|
1958
|
-
type: "string",
|
|
1959
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1960
|
-
},
|
|
1961
|
-
draggable: {
|
|
1962
|
-
required: !1,
|
|
1963
|
-
control: "boolean",
|
|
1964
|
-
type: "boolean",
|
|
1965
|
-
description: "Defines whether the element can be dragged."
|
|
1966
|
-
},
|
|
1967
|
-
hidden: {
|
|
1968
|
-
required: !1,
|
|
1969
|
-
control: "boolean",
|
|
1970
|
-
type: "boolean",
|
|
1971
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1972
|
-
},
|
|
1973
|
-
id: {
|
|
1974
|
-
required: !1,
|
|
1975
|
-
control: "text",
|
|
1976
|
-
type: "string",
|
|
1977
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1978
|
-
},
|
|
1979
|
-
inputMode: {
|
|
1980
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
1981
|
-
required: !1,
|
|
1982
|
-
control: "select",
|
|
1983
|
-
type: "string",
|
|
1984
|
-
options: [
|
|
1985
|
-
"search",
|
|
1986
|
-
"text",
|
|
1987
|
-
"none",
|
|
1988
|
-
"tel",
|
|
1989
|
-
"url",
|
|
1990
|
-
"email",
|
|
1991
|
-
"numeric",
|
|
1992
|
-
"decimal"
|
|
1993
|
-
]
|
|
1994
|
-
},
|
|
1995
|
-
is: {
|
|
1996
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
1997
|
-
required: !1,
|
|
1998
|
-
control: "text",
|
|
1999
|
-
type: "string"
|
|
2000
|
-
},
|
|
2001
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
2002
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
2003
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
2004
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
2005
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
2006
|
-
lang: {
|
|
2007
|
-
required: !1,
|
|
2008
|
-
control: "text",
|
|
2009
|
-
type: "string",
|
|
2010
|
-
description: "Defines the language used in the element."
|
|
2011
|
-
},
|
|
2012
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
2013
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
2014
|
-
property: { required: !1, control: "text", type: "string" },
|
|
2015
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
2016
|
-
rel: {
|
|
2017
|
-
required: !1,
|
|
2018
|
-
control: "text",
|
|
2019
|
-
type: "string",
|
|
2020
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
2021
|
-
},
|
|
2022
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
2023
|
-
results: { required: !1, control: "number", type: "number" },
|
|
2024
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
2025
|
-
role: {
|
|
2026
|
-
required: !1,
|
|
2027
|
-
control: "text",
|
|
2028
|
-
type: "string",
|
|
2029
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2030
|
-
},
|
|
2031
|
-
security: { required: !1, control: "text", type: "string" },
|
|
2032
|
-
slot: {
|
|
2033
|
-
required: !1,
|
|
2034
|
-
control: "text",
|
|
2035
|
-
type: "string",
|
|
2036
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2037
|
-
},
|
|
2038
|
-
spellCheck: {
|
|
2039
|
-
required: !1,
|
|
2040
|
-
control: "boolean",
|
|
2041
|
-
type: "boolean",
|
|
2042
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
2043
|
-
},
|
|
2044
|
-
suppressContentEditableWarning: {
|
|
2045
|
-
required: !1,
|
|
2046
|
-
control: "boolean",
|
|
2047
|
-
type: "boolean"
|
|
2048
|
-
},
|
|
2049
|
-
suppressHydrationWarning: {
|
|
2050
|
-
required: !1,
|
|
2051
|
-
control: "boolean",
|
|
2052
|
-
type: "boolean"
|
|
2053
|
-
},
|
|
2054
|
-
tabIndex: {
|
|
2055
|
-
required: !1,
|
|
2056
|
-
control: "number",
|
|
2057
|
-
type: "number",
|
|
2058
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2059
|
-
},
|
|
2060
|
-
tag: {
|
|
2061
|
-
required: !1,
|
|
2062
|
-
control: "select",
|
|
2063
|
-
type: "string",
|
|
2064
|
-
options: ["h2", "h3", "h1", "h4", "h5", "h6"]
|
|
2065
|
-
},
|
|
2066
|
-
title: {
|
|
2067
|
-
required: !1,
|
|
2068
|
-
control: "text",
|
|
2069
|
-
type: "string",
|
|
2070
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2071
|
-
},
|
|
2072
|
-
translate: {
|
|
2073
|
-
required: !1,
|
|
2074
|
-
control: "radio",
|
|
2075
|
-
type: "string",
|
|
2076
|
-
options: ["yes", "no"],
|
|
2077
|
-
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."
|
|
2078
|
-
},
|
|
2079
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
2080
|
-
unselectable: {
|
|
2081
|
-
required: !1,
|
|
2082
|
-
control: "radio",
|
|
2083
|
-
type: "string",
|
|
2084
|
-
options: ["on", "off"]
|
|
2085
|
-
},
|
|
2086
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
2087
|
-
}, a = {
|
|
2088
|
-
about: { required: !1, control: "text", type: "string" },
|
|
2089
|
-
accessKey: {
|
|
2090
|
-
required: !1,
|
|
2091
|
-
control: "text",
|
|
2092
|
-
type: "string",
|
|
2093
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2094
|
-
},
|
|
2095
|
-
"aria-activedescendant": {
|
|
2096
|
-
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
2097
|
-
required: !1,
|
|
2098
|
-
control: "text",
|
|
2099
|
-
type: "string"
|
|
2100
|
-
},
|
|
2101
|
-
"aria-atomic": {
|
|
2102
|
-
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.",
|
|
2103
|
-
required: !1,
|
|
2104
|
-
control: "boolean",
|
|
2105
|
-
type: "boolean"
|
|
2106
|
-
},
|
|
2107
|
-
"aria-autocomplete": {
|
|
2108
|
-
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
|
|
2109
|
-
presented if they are made.`,
|
|
2110
|
-
required: !1,
|
|
2111
|
-
control: "select",
|
|
2112
|
-
type: "string",
|
|
2113
|
-
options: ["list", "none", "inline", "both"]
|
|
2114
|
-
},
|
|
2115
|
-
"aria-braillelabel": {
|
|
2116
|
-
description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
|
|
2117
|
-
required: !1,
|
|
2118
|
-
control: "text",
|
|
2119
|
-
type: "string"
|
|
2120
|
-
},
|
|
2121
|
-
"aria-brailleroledescription": {
|
|
2122
|
-
description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
|
|
2123
|
-
required: !1,
|
|
2124
|
-
control: "text",
|
|
2125
|
-
type: "string"
|
|
2126
|
-
},
|
|
2127
|
-
"aria-busy": { required: !1, control: "boolean", type: "boolean" },
|
|
2128
|
-
"aria-checked": {
|
|
2129
|
-
description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
|
|
2130
|
-
required: !1,
|
|
2131
|
-
control: "text",
|
|
2132
|
-
type: "string"
|
|
2133
|
-
},
|
|
2134
|
-
"aria-colcount": {
|
|
2135
|
-
description: "Defines the total number of columns in a table, grid, or treegrid.",
|
|
2136
|
-
required: !1,
|
|
2137
|
-
control: "number",
|
|
2138
|
-
type: "number"
|
|
2139
|
-
},
|
|
2140
|
-
"aria-colindex": {
|
|
2141
|
-
description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
|
|
2142
|
-
required: !1,
|
|
2143
|
-
control: "number",
|
|
2144
|
-
type: "number"
|
|
2145
|
-
},
|
|
2146
|
-
"aria-colindextext": {
|
|
2147
|
-
description: "Defines a human readable text alternative of aria-colindex.",
|
|
2148
|
-
required: !1,
|
|
2149
|
-
control: "text",
|
|
2150
|
-
type: "string"
|
|
2151
|
-
},
|
|
2152
|
-
"aria-colspan": {
|
|
2153
|
-
description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
2154
|
-
required: !1,
|
|
2155
|
-
control: "number",
|
|
2156
|
-
type: "number"
|
|
2157
|
-
},
|
|
2158
|
-
"aria-controls": {
|
|
2159
|
-
description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
|
|
2160
|
-
required: !1,
|
|
2161
|
-
control: "text",
|
|
2162
|
-
type: "string"
|
|
2163
|
-
},
|
|
2164
|
-
"aria-current": {
|
|
2165
|
-
description: "Indicates the element that represents the current item within a container or set of related elements.",
|
|
2166
|
-
required: !1,
|
|
2167
|
-
control: "text",
|
|
2168
|
-
type: "string"
|
|
2169
|
-
},
|
|
2170
|
-
"aria-describedby": {
|
|
2171
|
-
description: "Identifies the element (or elements) that describes the object.",
|
|
2172
|
-
required: !1,
|
|
2173
|
-
control: "text",
|
|
2174
|
-
type: "string"
|
|
2175
|
-
},
|
|
2176
|
-
"aria-description": {
|
|
2177
|
-
description: "Defines a string value that describes or annotates the current element.",
|
|
2178
|
-
required: !1,
|
|
2179
|
-
control: "text",
|
|
2180
|
-
type: "string"
|
|
2181
|
-
},
|
|
2182
|
-
"aria-details": {
|
|
2183
|
-
description: "Identifies the element that provides a detailed, extended description for the object.",
|
|
2184
|
-
required: !1,
|
|
2185
|
-
control: "text",
|
|
2186
|
-
type: "string"
|
|
2187
|
-
},
|
|
2188
|
-
"aria-disabled": {
|
|
2189
|
-
description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
|
|
2190
|
-
required: !1,
|
|
2191
|
-
control: "boolean",
|
|
2192
|
-
type: "boolean"
|
|
2193
|
-
},
|
|
2194
|
-
"aria-dropeffect": {
|
|
2195
|
-
description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
|
|
2196
|
-
required: !1,
|
|
2197
|
-
control: "select",
|
|
2198
|
-
type: "string",
|
|
2199
|
-
options: ["link", "none", "copy", "execute", "move", "popup"]
|
|
2200
|
-
},
|
|
2201
|
-
"aria-errormessage": {
|
|
2202
|
-
description: "Identifies the element that provides an error message for the object.",
|
|
2203
|
-
required: !1,
|
|
2204
|
-
control: "text",
|
|
2205
|
-
type: "string"
|
|
2206
|
-
},
|
|
2207
|
-
"aria-expanded": {
|
|
2208
|
-
description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
2209
|
-
required: !1,
|
|
2210
|
-
control: "boolean",
|
|
2211
|
-
type: "boolean"
|
|
2212
|
-
},
|
|
2213
|
-
"aria-flowto": {
|
|
2214
|
-
description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
2215
|
-
allows assistive technology to override the general default of reading in document source order.`,
|
|
2216
|
-
required: !1,
|
|
2217
|
-
control: "text",
|
|
2218
|
-
type: "string"
|
|
2219
|
-
},
|
|
2220
|
-
"aria-grabbed": {
|
|
2221
|
-
description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
|
|
2222
|
-
required: !1,
|
|
2223
|
-
control: "boolean",
|
|
2224
|
-
type: "boolean"
|
|
2225
|
-
},
|
|
2226
|
-
"aria-haspopup": {
|
|
2227
|
-
description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
2228
|
-
required: !1,
|
|
2229
|
-
control: "text",
|
|
2230
|
-
type: "string"
|
|
2231
|
-
},
|
|
2232
|
-
"aria-hidden": {
|
|
2233
|
-
description: "Indicates whether the element is exposed to an accessibility API.",
|
|
2234
|
-
required: !1,
|
|
2235
|
-
control: "boolean",
|
|
2236
|
-
type: "boolean"
|
|
2237
|
-
},
|
|
2238
|
-
"aria-invalid": {
|
|
2239
|
-
description: "Indicates the entered value does not conform to the format expected by the application.",
|
|
2240
|
-
required: !1,
|
|
2241
|
-
control: "text",
|
|
2242
|
-
type: "string"
|
|
2243
|
-
},
|
|
2244
|
-
"aria-keyshortcuts": {
|
|
2245
|
-
description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
2246
|
-
required: !1,
|
|
2247
|
-
control: "text",
|
|
2248
|
-
type: "string"
|
|
2249
|
-
},
|
|
2250
|
-
"aria-label": {
|
|
2251
|
-
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.",
|
|
2252
|
-
required: !1,
|
|
2253
|
-
control: "text",
|
|
2254
|
-
type: "string"
|
|
2255
|
-
},
|
|
2256
|
-
"aria-labelledby": {
|
|
2257
|
-
description: "Identifies the element (or elements) that labels the current element.",
|
|
2258
|
-
required: !1,
|
|
2259
|
-
control: "text",
|
|
2260
|
-
type: "string"
|
|
2261
|
-
},
|
|
2262
|
-
"aria-level": {
|
|
2263
|
-
description: "Defines the hierarchical level of an element within a structure.",
|
|
2264
|
-
required: !1,
|
|
2265
|
-
control: "number",
|
|
2266
|
-
type: "number"
|
|
2267
|
-
},
|
|
2268
|
-
"aria-live": {
|
|
2269
|
-
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.",
|
|
2270
|
-
required: !1,
|
|
2271
|
-
control: "radio",
|
|
2272
|
-
type: "string",
|
|
2273
|
-
options: ["off", "assertive", "polite"]
|
|
2274
|
-
},
|
|
2275
|
-
"aria-modal": {
|
|
2276
|
-
description: "Indicates whether an element is modal when displayed.",
|
|
2277
|
-
required: !1,
|
|
2278
|
-
control: "boolean",
|
|
2279
|
-
type: "boolean"
|
|
2280
|
-
},
|
|
2281
|
-
"aria-multiline": {
|
|
2282
|
-
description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
2283
|
-
required: !1,
|
|
2284
|
-
control: "boolean",
|
|
2285
|
-
type: "boolean"
|
|
2286
|
-
},
|
|
2287
|
-
"aria-multiselectable": {
|
|
2288
|
-
description: "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
2289
|
-
required: !1,
|
|
2290
|
-
control: "boolean",
|
|
2291
|
-
type: "boolean"
|
|
2292
|
-
},
|
|
2293
|
-
"aria-orientation": {
|
|
2294
|
-
description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
2295
|
-
required: !1,
|
|
2296
|
-
control: "radio",
|
|
2297
|
-
type: "string",
|
|
2298
|
-
options: ["horizontal", "vertical"]
|
|
2299
|
-
},
|
|
2300
|
-
"aria-owns": {
|
|
2301
|
-
description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
2302
|
-
between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
|
|
2303
|
-
required: !1,
|
|
2304
|
-
control: "text",
|
|
2305
|
-
type: "string"
|
|
2306
|
-
},
|
|
2307
|
-
"aria-placeholder": {
|
|
2308
|
-
description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
2309
|
-
A hint could be a sample value or a brief description of the expected format.`,
|
|
2310
|
-
required: !1,
|
|
2311
|
-
control: "text",
|
|
2312
|
-
type: "string"
|
|
2313
|
-
},
|
|
2314
|
-
"aria-posinset": {
|
|
2315
|
-
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.",
|
|
2316
|
-
required: !1,
|
|
2317
|
-
control: "number",
|
|
2318
|
-
type: "number"
|
|
2319
|
-
},
|
|
2320
|
-
"aria-pressed": {
|
|
2321
|
-
description: 'Indicates the current "pressed" state of toggle buttons.',
|
|
2322
|
-
required: !1,
|
|
2323
|
-
control: "text",
|
|
2324
|
-
type: "string"
|
|
2325
|
-
},
|
|
2326
|
-
"aria-readonly": {
|
|
2327
|
-
description: "Indicates that the element is not editable, but is otherwise operable.",
|
|
2328
|
-
required: !1,
|
|
2329
|
-
control: "boolean",
|
|
2330
|
-
type: "boolean"
|
|
2331
|
-
},
|
|
2332
|
-
"aria-relevant": {
|
|
2333
|
-
description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
|
|
2334
|
-
required: !1,
|
|
2335
|
-
control: "select",
|
|
2336
|
-
type: "string",
|
|
2337
|
-
options: [
|
|
2338
|
-
"text",
|
|
2339
|
-
"additions",
|
|
2340
|
-
"additions removals",
|
|
2341
|
-
"additions text",
|
|
2342
|
-
"all",
|
|
2343
|
-
"removals",
|
|
2344
|
-
"removals additions",
|
|
2345
|
-
"removals text",
|
|
2346
|
-
"text additions",
|
|
2347
|
-
"text removals"
|
|
2348
|
-
]
|
|
2349
|
-
},
|
|
2350
|
-
"aria-required": {
|
|
2351
|
-
description: "Indicates that user input is required on the element before a form may be submitted.",
|
|
2352
|
-
required: !1,
|
|
2353
|
-
control: "boolean",
|
|
2354
|
-
type: "boolean"
|
|
2355
|
-
},
|
|
2356
|
-
"aria-roledescription": {
|
|
2357
|
-
description: "Defines a human-readable, author-localized description for the role of an element.",
|
|
2358
|
-
required: !1,
|
|
2359
|
-
control: "text",
|
|
2360
|
-
type: "string"
|
|
2361
|
-
},
|
|
2362
|
-
"aria-rowcount": {
|
|
2363
|
-
description: "Defines the total number of rows in a table, grid, or treegrid.",
|
|
2364
|
-
required: !1,
|
|
2365
|
-
control: "number",
|
|
2366
|
-
type: "number"
|
|
2367
|
-
},
|
|
2368
|
-
"aria-rowindex": {
|
|
2369
|
-
description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
|
|
2370
|
-
required: !1,
|
|
2371
|
-
control: "number",
|
|
2372
|
-
type: "number"
|
|
2373
|
-
},
|
|
2374
|
-
"aria-rowindextext": {
|
|
2375
|
-
description: "Defines a human readable text alternative of aria-rowindex.",
|
|
2376
|
-
required: !1,
|
|
2377
|
-
control: "text",
|
|
2378
|
-
type: "string"
|
|
2379
|
-
},
|
|
2380
|
-
"aria-rowspan": {
|
|
2381
|
-
description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
|
|
2382
|
-
required: !1,
|
|
2383
|
-
control: "number",
|
|
2384
|
-
type: "number"
|
|
2385
|
-
},
|
|
2386
|
-
"aria-selected": {
|
|
2387
|
-
description: 'Indicates the current "selected" state of various widgets.',
|
|
2388
|
-
required: !1,
|
|
2389
|
-
control: "boolean",
|
|
2390
|
-
type: "boolean"
|
|
2391
|
-
},
|
|
2392
|
-
"aria-setsize": {
|
|
2393
|
-
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.",
|
|
2394
|
-
required: !1,
|
|
2395
|
-
control: "number",
|
|
2396
|
-
type: "number"
|
|
2397
|
-
},
|
|
2398
|
-
"aria-sort": {
|
|
2399
|
-
description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
2400
|
-
required: !1,
|
|
2401
|
-
control: "select",
|
|
2402
|
-
type: "string",
|
|
2403
|
-
options: ["none", "ascending", "descending", "other"]
|
|
2404
|
-
},
|
|
2405
|
-
"aria-valuemax": {
|
|
2406
|
-
description: "Defines the maximum allowed value for a range widget.",
|
|
2407
|
-
required: !1,
|
|
2408
|
-
control: "number",
|
|
2409
|
-
type: "number"
|
|
2410
|
-
},
|
|
2411
|
-
"aria-valuemin": {
|
|
2412
|
-
description: "Defines the minimum allowed value for a range widget.",
|
|
2413
|
-
required: !1,
|
|
2414
|
-
control: "number",
|
|
2415
|
-
type: "number"
|
|
2416
|
-
},
|
|
2417
|
-
"aria-valuenow": {
|
|
2418
|
-
description: "Defines the current value for a range widget.",
|
|
2419
|
-
required: !1,
|
|
2420
|
-
control: "number",
|
|
2421
|
-
type: "number"
|
|
2422
|
-
},
|
|
2423
|
-
"aria-valuetext": {
|
|
2424
|
-
description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
2425
|
-
required: !1,
|
|
2426
|
-
control: "text",
|
|
2427
|
-
type: "string"
|
|
2428
|
-
},
|
|
2429
759
|
autoCapitalize: {
|
|
2430
760
|
required: !1,
|
|
2431
761
|
control: "text",
|
|
@@ -2590,10 +920,10 @@ A hint could be a sample value or a brief description of the expected format.`,
|
|
|
2590
920
|
};
|
|
2591
921
|
export {
|
|
2592
922
|
e as propsDialog,
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
923
|
+
i as propsDialogClose,
|
|
924
|
+
o as propsDialogContent,
|
|
925
|
+
s as propsDialogDescription,
|
|
2596
926
|
r as propsDialogOverlay,
|
|
2597
|
-
|
|
927
|
+
n as propsDialogTitle,
|
|
2598
928
|
t as propsDialogTrigger
|
|
2599
929
|
};
|