@webstudio-is/react-sdk 0.29.0 → 0.30.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/app/custom-components/index.js +12 -6
- package/lib/app/root.js +0 -2
- package/lib/cjs/app/custom-components/index.cjs +12 -6
- package/lib/cjs/app/root.cjs +0 -2
- package/lib/cjs/components/__generated__/body.props.json +557 -305
- package/lib/cjs/components/__generated__/bold.props.json +557 -305
- package/lib/cjs/components/__generated__/box.props.json +577 -320
- package/lib/cjs/components/__generated__/button.props.json +616 -339
- package/lib/cjs/components/__generated__/form.props.json +597 -329
- package/lib/cjs/components/__generated__/heading.props.json +566 -309
- package/lib/cjs/components/__generated__/image.props.json +638 -352
- package/lib/cjs/components/__generated__/input.props.json +725 -405
- package/lib/cjs/components/__generated__/italic.props.json +557 -305
- package/lib/cjs/components/__generated__/link.props.json +616 -343
- package/lib/cjs/components/__generated__/paragraph.props.json +557 -305
- package/lib/cjs/components/__generated__/rich-text-link.props.json +616 -343
- package/lib/cjs/components/__generated__/span.props.json +557 -305
- package/lib/cjs/components/__generated__/subscript.props.json +557 -305
- package/lib/cjs/components/__generated__/superscript.props.json +557 -305
- package/lib/cjs/components/__generated__/text-block.props.json +557 -305
- package/lib/cjs/components/body.ws.cjs +6 -3
- package/lib/cjs/components/bold.ws.cjs +7 -4
- package/lib/cjs/components/box.ws.cjs +8 -4
- package/lib/cjs/components/button.ws.cjs +8 -4
- package/lib/cjs/components/component-type.cjs +21 -56
- package/lib/cjs/components/form.ws.cjs +7 -4
- package/lib/cjs/components/heading.ws.cjs +8 -4
- package/lib/cjs/components/image.ws.cjs +11 -5
- package/lib/cjs/components/index.cjs +165 -111
- package/lib/cjs/components/input.ws.cjs +7 -4
- package/lib/cjs/components/italic.ws.cjs +7 -4
- package/lib/cjs/components/link.ws.cjs +8 -4
- package/lib/cjs/components/paragraph.ws.cjs +7 -4
- package/lib/cjs/components/rich-text-link.ws.cjs +7 -4
- package/lib/cjs/components/span.ws.cjs +7 -4
- package/lib/cjs/components/subscript.ws.cjs +7 -4
- package/lib/cjs/components/superscript.ws.cjs +7 -4
- package/lib/cjs/components/text-block.ws.cjs +7 -4
- package/lib/cjs/index.cjs +3 -2
- package/lib/cjs/tree/session-storage-polyfill.cjs +1 -1
- package/lib/components/__generated__/body.props.json +557 -305
- package/lib/components/__generated__/bold.props.json +557 -305
- package/lib/components/__generated__/box.props.json +577 -320
- package/lib/components/__generated__/button.props.json +616 -339
- package/lib/components/__generated__/form.props.json +597 -329
- package/lib/components/__generated__/heading.props.json +566 -309
- package/lib/components/__generated__/image.props.json +638 -352
- package/lib/components/__generated__/input.props.json +725 -405
- package/lib/components/__generated__/italic.props.json +557 -305
- package/lib/components/__generated__/link.props.json +616 -343
- package/lib/components/__generated__/paragraph.props.json +557 -305
- package/lib/components/__generated__/rich-text-link.props.json +616 -343
- package/lib/components/__generated__/span.props.json +557 -305
- package/lib/components/__generated__/subscript.props.json +557 -305
- package/lib/components/__generated__/superscript.props.json +557 -305
- package/lib/components/__generated__/text-block.props.json +557 -305
- package/lib/components/body.ws.js +6 -3
- package/lib/components/bold.ws.js +7 -4
- package/lib/components/box.ws.js +8 -4
- package/lib/components/button.ws.js +8 -4
- package/lib/components/component-type.js +21 -56
- package/lib/components/form.ws.js +7 -4
- package/lib/components/heading.ws.js +8 -4
- package/lib/components/image.ws.js +11 -5
- package/lib/components/index.js +117 -57
- package/lib/components/input.ws.js +7 -4
- package/lib/components/italic.ws.js +7 -4
- package/lib/components/link.ws.js +8 -4
- package/lib/components/paragraph.ws.js +7 -4
- package/lib/components/rich-text-link.ws.js +7 -4
- package/lib/components/span.ws.js +7 -4
- package/lib/components/subscript.ws.js +7 -4
- package/lib/components/superscript.ws.js +7 -4
- package/lib/components/text-block.ws.js +7 -4
- package/lib/index.js +5 -3
- package/lib/tree/session-storage-polyfill.js +1 -1
- package/package.json +8 -8
- package/src/app/custom-components/image.tsx +2 -2
- package/src/app/custom-components/index.ts +11 -5
- package/src/app/root.tsx +0 -2
- package/src/components/__generated__/body.props.json +557 -305
- package/src/components/__generated__/bold.props.json +557 -305
- package/src/components/__generated__/box.props.json +577 -320
- package/src/components/__generated__/button.props.json +616 -339
- package/src/components/__generated__/form.props.json +597 -329
- package/src/components/__generated__/heading.props.json +566 -309
- package/src/components/__generated__/image.props.json +638 -352
- package/src/components/__generated__/input.props.json +725 -405
- package/src/components/__generated__/italic.props.json +557 -305
- package/src/components/__generated__/link.props.json +616 -343
- package/src/components/__generated__/paragraph.props.json +557 -305
- package/src/components/__generated__/rich-text-link.props.json +616 -343
- package/src/components/__generated__/span.props.json +557 -305
- package/src/components/__generated__/subscript.props.json +557 -305
- package/src/components/__generated__/superscript.props.json +557 -305
- package/src/components/__generated__/text-block.props.json +557 -305
- package/src/components/body.ws.tsx +5 -4
- package/src/components/bold.ws.tsx +5 -4
- package/src/components/box.ws.ts +6 -4
- package/src/components/button.ws.tsx +6 -4
- package/src/components/component-type.ts +23 -63
- package/src/components/form.ws.tsx +5 -4
- package/src/components/heading.ws.tsx +6 -4
- package/src/components/image.ws.tsx +9 -5
- package/src/components/index.test.ts +2 -24
- package/src/components/index.ts +155 -81
- package/src/components/input.ws.tsx +5 -4
- package/src/components/italic.ws.tsx +5 -4
- package/src/components/link.ws.tsx +6 -4
- package/src/components/paragraph.ws.tsx +5 -4
- package/src/components/rich-text-link.ws.tsx +5 -4
- package/src/components/span.ws.tsx +5 -4
- package/src/components/subscript.ws.tsx +5 -4
- package/src/components/superscript.ws.tsx +5 -4
- package/src/components/text-block.ws.tsx +5 -4
- package/src/css/breakpoints.ts +1 -1
- package/src/index.ts +6 -2
- package/src/props.ts +1 -1
- package/src/tree/create-elements-tree.tsx +3 -3
- package/src/tree/session-storage-polyfill.tsx +1 -1
|
@@ -1,657 +1,977 @@
|
|
|
1
1
|
{
|
|
2
2
|
"form": {
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
"type": {
|
|
4
|
+
"name": "string",
|
|
5
|
+
"required": false
|
|
6
|
+
},
|
|
7
|
+
"control": "text"
|
|
6
8
|
},
|
|
7
9
|
"slot": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
"type": {
|
|
11
|
+
"name": "string",
|
|
12
|
+
"required": false
|
|
13
|
+
},
|
|
14
|
+
"control": "text"
|
|
11
15
|
},
|
|
12
16
|
"style": {
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
"type": {
|
|
18
|
+
"name": "CSSProperties",
|
|
19
|
+
"required": false
|
|
20
|
+
},
|
|
21
|
+
"control": "text"
|
|
16
22
|
},
|
|
17
23
|
"title": {
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
"type": {
|
|
25
|
+
"name": "string",
|
|
26
|
+
"required": false
|
|
27
|
+
},
|
|
28
|
+
"control": "text"
|
|
21
29
|
},
|
|
22
30
|
"pattern": {
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
31
|
+
"type": {
|
|
32
|
+
"name": "string",
|
|
33
|
+
"required": false
|
|
34
|
+
},
|
|
35
|
+
"control": "text"
|
|
26
36
|
},
|
|
27
37
|
"accept": {
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
38
|
+
"type": {
|
|
39
|
+
"name": "string",
|
|
40
|
+
"required": false
|
|
41
|
+
},
|
|
42
|
+
"control": "text"
|
|
31
43
|
},
|
|
32
44
|
"alt": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
45
|
+
"type": {
|
|
46
|
+
"name": "string",
|
|
47
|
+
"required": false
|
|
48
|
+
},
|
|
49
|
+
"control": "text"
|
|
36
50
|
},
|
|
37
51
|
"autoComplete": {
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
52
|
+
"type": {
|
|
53
|
+
"name": "string",
|
|
54
|
+
"required": false
|
|
55
|
+
},
|
|
56
|
+
"control": "text"
|
|
41
57
|
},
|
|
42
58
|
"autoFocus": {
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
59
|
+
"type": {
|
|
60
|
+
"name": "boolean",
|
|
61
|
+
"required": false
|
|
62
|
+
},
|
|
63
|
+
"control": "boolean"
|
|
46
64
|
},
|
|
47
65
|
"capture": {
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
66
|
+
"type": {
|
|
67
|
+
"name": "boolean | \"user\" | \"environment\"",
|
|
68
|
+
"required": false
|
|
69
|
+
},
|
|
70
|
+
"control": "text"
|
|
51
71
|
},
|
|
52
72
|
"checked": {
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
73
|
+
"type": {
|
|
74
|
+
"name": "boolean",
|
|
75
|
+
"required": false
|
|
76
|
+
},
|
|
77
|
+
"control": "boolean"
|
|
56
78
|
},
|
|
57
79
|
"crossOrigin": {
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
80
|
+
"type": {
|
|
81
|
+
"name": "string",
|
|
82
|
+
"required": false
|
|
83
|
+
},
|
|
84
|
+
"control": "text"
|
|
61
85
|
},
|
|
62
86
|
"disabled": {
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
87
|
+
"type": {
|
|
88
|
+
"name": "boolean",
|
|
89
|
+
"required": false
|
|
90
|
+
},
|
|
91
|
+
"control": "boolean"
|
|
66
92
|
},
|
|
67
93
|
"enterKeyHint": {
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
94
|
+
"type": {
|
|
95
|
+
"name": "string",
|
|
96
|
+
"required": false
|
|
97
|
+
},
|
|
98
|
+
"control": {
|
|
99
|
+
"type": "select",
|
|
100
|
+
"options": ["enter", "done", "go", "next", "previous", "search", "send"]
|
|
101
|
+
}
|
|
72
102
|
},
|
|
73
103
|
"formAction": {
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
104
|
+
"type": {
|
|
105
|
+
"name": "string",
|
|
106
|
+
"required": false
|
|
107
|
+
},
|
|
108
|
+
"control": "text"
|
|
77
109
|
},
|
|
78
110
|
"formEncType": {
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
111
|
+
"type": {
|
|
112
|
+
"name": "string",
|
|
113
|
+
"required": false
|
|
114
|
+
},
|
|
115
|
+
"control": "text"
|
|
82
116
|
},
|
|
83
117
|
"formMethod": {
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
118
|
+
"type": {
|
|
119
|
+
"name": "string",
|
|
120
|
+
"required": false
|
|
121
|
+
},
|
|
122
|
+
"control": "text"
|
|
87
123
|
},
|
|
88
124
|
"formNoValidate": {
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
125
|
+
"type": {
|
|
126
|
+
"name": "boolean",
|
|
127
|
+
"required": false
|
|
128
|
+
},
|
|
129
|
+
"control": "boolean"
|
|
92
130
|
},
|
|
93
131
|
"formTarget": {
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
132
|
+
"type": {
|
|
133
|
+
"name": "string",
|
|
134
|
+
"required": false
|
|
135
|
+
},
|
|
136
|
+
"control": "text"
|
|
97
137
|
},
|
|
98
138
|
"height": {
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
139
|
+
"type": {
|
|
140
|
+
"name": "string | number",
|
|
141
|
+
"required": false
|
|
142
|
+
},
|
|
143
|
+
"control": "text"
|
|
102
144
|
},
|
|
103
145
|
"list": {
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
146
|
+
"type": {
|
|
147
|
+
"name": "string",
|
|
148
|
+
"required": false
|
|
149
|
+
},
|
|
150
|
+
"control": "text"
|
|
107
151
|
},
|
|
108
152
|
"max": {
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
153
|
+
"type": {
|
|
154
|
+
"name": "string | number",
|
|
155
|
+
"required": false
|
|
156
|
+
},
|
|
157
|
+
"control": "text"
|
|
112
158
|
},
|
|
113
159
|
"maxLength": {
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
160
|
+
"type": {
|
|
161
|
+
"name": "number",
|
|
162
|
+
"required": false
|
|
163
|
+
},
|
|
164
|
+
"control": "number"
|
|
117
165
|
},
|
|
118
166
|
"min": {
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
167
|
+
"type": {
|
|
168
|
+
"name": "string | number",
|
|
169
|
+
"required": false
|
|
170
|
+
},
|
|
171
|
+
"control": "text"
|
|
122
172
|
},
|
|
123
173
|
"minLength": {
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
174
|
+
"type": {
|
|
175
|
+
"name": "number",
|
|
176
|
+
"required": false
|
|
177
|
+
},
|
|
178
|
+
"control": "number"
|
|
127
179
|
},
|
|
128
180
|
"multiple": {
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
181
|
+
"type": {
|
|
182
|
+
"name": "boolean",
|
|
183
|
+
"required": false
|
|
184
|
+
},
|
|
185
|
+
"control": "boolean"
|
|
132
186
|
},
|
|
133
187
|
"name": {
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
188
|
+
"type": {
|
|
189
|
+
"name": "string",
|
|
190
|
+
"required": false
|
|
191
|
+
},
|
|
192
|
+
"control": "text"
|
|
137
193
|
},
|
|
138
194
|
"placeholder": {
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
195
|
+
"type": {
|
|
196
|
+
"name": "string",
|
|
197
|
+
"required": false
|
|
198
|
+
},
|
|
199
|
+
"control": "text"
|
|
142
200
|
},
|
|
143
201
|
"readOnly": {
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
202
|
+
"type": {
|
|
203
|
+
"name": "boolean",
|
|
204
|
+
"required": false
|
|
205
|
+
},
|
|
206
|
+
"control": "boolean"
|
|
147
207
|
},
|
|
148
208
|
"required": {
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
209
|
+
"type": {
|
|
210
|
+
"name": "boolean",
|
|
211
|
+
"required": false
|
|
212
|
+
},
|
|
213
|
+
"control": "boolean"
|
|
152
214
|
},
|
|
153
215
|
"size": {
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
216
|
+
"type": {
|
|
217
|
+
"name": "number",
|
|
218
|
+
"required": false
|
|
219
|
+
},
|
|
220
|
+
"control": "number"
|
|
157
221
|
},
|
|
158
222
|
"src": {
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
223
|
+
"type": {
|
|
224
|
+
"name": "string",
|
|
225
|
+
"required": false
|
|
226
|
+
},
|
|
227
|
+
"control": "text"
|
|
162
228
|
},
|
|
163
229
|
"step": {
|
|
164
|
-
"
|
|
165
|
-
|
|
166
|
-
|
|
230
|
+
"type": {
|
|
231
|
+
"name": "string | number",
|
|
232
|
+
"required": false
|
|
233
|
+
},
|
|
234
|
+
"control": "text"
|
|
167
235
|
},
|
|
168
236
|
"type": {
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
237
|
+
"type": {
|
|
238
|
+
"name": "HTMLInputTypeAttribute",
|
|
239
|
+
"required": false
|
|
240
|
+
},
|
|
241
|
+
"control": "text"
|
|
172
242
|
},
|
|
173
243
|
"value": {
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
244
|
+
"type": {
|
|
245
|
+
"name": "string | number | readonly string[]",
|
|
246
|
+
"required": false
|
|
247
|
+
},
|
|
248
|
+
"control": "text"
|
|
177
249
|
},
|
|
178
250
|
"width": {
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
251
|
+
"type": {
|
|
252
|
+
"name": "string | number",
|
|
253
|
+
"required": false
|
|
254
|
+
},
|
|
255
|
+
"control": "text"
|
|
182
256
|
},
|
|
183
257
|
"onChange": {
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
258
|
+
"type": {
|
|
259
|
+
"name": "ChangeEventHandler<HTMLInputElement>",
|
|
260
|
+
"required": false
|
|
261
|
+
},
|
|
262
|
+
"control": "text"
|
|
187
263
|
},
|
|
188
264
|
"defaultChecked": {
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
265
|
+
"type": {
|
|
266
|
+
"name": "boolean",
|
|
267
|
+
"required": false
|
|
268
|
+
},
|
|
269
|
+
"control": "boolean"
|
|
192
270
|
},
|
|
193
271
|
"defaultValue": {
|
|
194
|
-
"
|
|
195
|
-
|
|
196
|
-
|
|
272
|
+
"type": {
|
|
273
|
+
"name": "string | number | readonly string[]",
|
|
274
|
+
"required": false
|
|
275
|
+
},
|
|
276
|
+
"control": "text"
|
|
197
277
|
},
|
|
198
278
|
"suppressContentEditableWarning": {
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
279
|
+
"type": {
|
|
280
|
+
"name": "boolean",
|
|
281
|
+
"required": false
|
|
282
|
+
},
|
|
283
|
+
"control": "boolean"
|
|
202
284
|
},
|
|
203
285
|
"suppressHydrationWarning": {
|
|
204
|
-
"
|
|
205
|
-
|
|
206
|
-
|
|
286
|
+
"type": {
|
|
287
|
+
"name": "boolean",
|
|
288
|
+
"required": false
|
|
289
|
+
},
|
|
290
|
+
"control": "boolean"
|
|
207
291
|
},
|
|
208
292
|
"accessKey": {
|
|
209
|
-
"
|
|
210
|
-
|
|
211
|
-
|
|
293
|
+
"type": {
|
|
294
|
+
"name": "string",
|
|
295
|
+
"required": false
|
|
296
|
+
},
|
|
297
|
+
"control": "text"
|
|
212
298
|
},
|
|
213
299
|
"className": {
|
|
214
|
-
"
|
|
215
|
-
|
|
216
|
-
|
|
300
|
+
"type": {
|
|
301
|
+
"name": "string",
|
|
302
|
+
"required": false
|
|
303
|
+
},
|
|
304
|
+
"control": "text"
|
|
217
305
|
},
|
|
218
306
|
"contentEditable": {
|
|
219
|
-
"
|
|
220
|
-
|
|
221
|
-
|
|
307
|
+
"type": {
|
|
308
|
+
"name": "Booleanish | \"inherit\"",
|
|
309
|
+
"required": false
|
|
310
|
+
},
|
|
311
|
+
"control": "text"
|
|
222
312
|
},
|
|
223
313
|
"contextMenu": {
|
|
224
|
-
"
|
|
225
|
-
|
|
226
|
-
|
|
314
|
+
"type": {
|
|
315
|
+
"name": "string",
|
|
316
|
+
"required": false
|
|
317
|
+
},
|
|
318
|
+
"control": "text"
|
|
227
319
|
},
|
|
228
320
|
"dir": {
|
|
229
|
-
"
|
|
230
|
-
|
|
231
|
-
|
|
321
|
+
"type": {
|
|
322
|
+
"name": "string",
|
|
323
|
+
"required": false
|
|
324
|
+
},
|
|
325
|
+
"control": "text"
|
|
232
326
|
},
|
|
233
327
|
"draggable": {
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
|
|
328
|
+
"type": {
|
|
329
|
+
"name": "boolean",
|
|
330
|
+
"required": false
|
|
331
|
+
},
|
|
332
|
+
"control": "boolean"
|
|
237
333
|
},
|
|
238
334
|
"hidden": {
|
|
239
|
-
"
|
|
240
|
-
|
|
241
|
-
|
|
335
|
+
"type": {
|
|
336
|
+
"name": "boolean",
|
|
337
|
+
"required": false
|
|
338
|
+
},
|
|
339
|
+
"control": "boolean"
|
|
242
340
|
},
|
|
243
341
|
"id": {
|
|
244
|
-
"
|
|
245
|
-
|
|
246
|
-
|
|
342
|
+
"type": {
|
|
343
|
+
"name": "string",
|
|
344
|
+
"required": false
|
|
345
|
+
},
|
|
346
|
+
"control": "text"
|
|
247
347
|
},
|
|
248
348
|
"lang": {
|
|
249
|
-
"
|
|
250
|
-
|
|
251
|
-
|
|
349
|
+
"type": {
|
|
350
|
+
"name": "string",
|
|
351
|
+
"required": false
|
|
352
|
+
},
|
|
353
|
+
"control": "text"
|
|
252
354
|
},
|
|
253
355
|
"spellCheck": {
|
|
254
|
-
"
|
|
255
|
-
|
|
256
|
-
|
|
356
|
+
"type": {
|
|
357
|
+
"name": "boolean",
|
|
358
|
+
"required": false
|
|
359
|
+
},
|
|
360
|
+
"control": "boolean"
|
|
257
361
|
},
|
|
258
362
|
"tabIndex": {
|
|
259
|
-
"
|
|
260
|
-
|
|
261
|
-
|
|
363
|
+
"type": {
|
|
364
|
+
"name": "number",
|
|
365
|
+
"required": false
|
|
366
|
+
},
|
|
367
|
+
"control": "number"
|
|
262
368
|
},
|
|
263
369
|
"translate": {
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
370
|
+
"type": {
|
|
371
|
+
"name": "string",
|
|
372
|
+
"required": false
|
|
373
|
+
},
|
|
374
|
+
"control": {
|
|
375
|
+
"type": "radio",
|
|
376
|
+
"options": ["yes", "no"]
|
|
377
|
+
}
|
|
268
378
|
},
|
|
269
379
|
"radioGroup": {
|
|
270
|
-
"
|
|
271
|
-
|
|
272
|
-
|
|
380
|
+
"type": {
|
|
381
|
+
"name": "string",
|
|
382
|
+
"required": false
|
|
383
|
+
},
|
|
384
|
+
"control": "text"
|
|
273
385
|
},
|
|
274
386
|
"role": {
|
|
275
|
-
"
|
|
276
|
-
|
|
277
|
-
|
|
387
|
+
"type": {
|
|
388
|
+
"name": "AriaRole",
|
|
389
|
+
"required": false
|
|
390
|
+
},
|
|
391
|
+
"control": "text"
|
|
278
392
|
},
|
|
279
393
|
"about": {
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
|
|
394
|
+
"type": {
|
|
395
|
+
"name": "string",
|
|
396
|
+
"required": false
|
|
397
|
+
},
|
|
398
|
+
"control": "text"
|
|
283
399
|
},
|
|
284
400
|
"datatype": {
|
|
285
|
-
"
|
|
286
|
-
|
|
287
|
-
|
|
401
|
+
"type": {
|
|
402
|
+
"name": "string",
|
|
403
|
+
"required": false
|
|
404
|
+
},
|
|
405
|
+
"control": "text"
|
|
288
406
|
},
|
|
289
407
|
"inlist": {
|
|
290
|
-
"
|
|
291
|
-
|
|
292
|
-
|
|
408
|
+
"type": {
|
|
409
|
+
"name": "any",
|
|
410
|
+
"required": false
|
|
411
|
+
},
|
|
412
|
+
"control": "text"
|
|
293
413
|
},
|
|
294
414
|
"prefix": {
|
|
295
|
-
"
|
|
296
|
-
|
|
297
|
-
|
|
415
|
+
"type": {
|
|
416
|
+
"name": "string",
|
|
417
|
+
"required": false
|
|
418
|
+
},
|
|
419
|
+
"control": "text"
|
|
298
420
|
},
|
|
299
421
|
"property": {
|
|
300
|
-
"
|
|
301
|
-
|
|
302
|
-
|
|
422
|
+
"type": {
|
|
423
|
+
"name": "string",
|
|
424
|
+
"required": false
|
|
425
|
+
},
|
|
426
|
+
"control": "text"
|
|
303
427
|
},
|
|
304
428
|
"resource": {
|
|
305
|
-
"
|
|
306
|
-
|
|
307
|
-
|
|
429
|
+
"type": {
|
|
430
|
+
"name": "string",
|
|
431
|
+
"required": false
|
|
432
|
+
},
|
|
433
|
+
"control": "text"
|
|
308
434
|
},
|
|
309
435
|
"typeof": {
|
|
310
|
-
"
|
|
311
|
-
|
|
312
|
-
|
|
436
|
+
"type": {
|
|
437
|
+
"name": "string",
|
|
438
|
+
"required": false
|
|
439
|
+
},
|
|
440
|
+
"control": "text"
|
|
313
441
|
},
|
|
314
442
|
"vocab": {
|
|
315
|
-
"
|
|
316
|
-
|
|
317
|
-
|
|
443
|
+
"type": {
|
|
444
|
+
"name": "string",
|
|
445
|
+
"required": false
|
|
446
|
+
},
|
|
447
|
+
"control": "text"
|
|
318
448
|
},
|
|
319
449
|
"autoCapitalize": {
|
|
320
|
-
"
|
|
321
|
-
|
|
322
|
-
|
|
450
|
+
"type": {
|
|
451
|
+
"name": "string",
|
|
452
|
+
"required": false
|
|
453
|
+
},
|
|
454
|
+
"control": "text"
|
|
323
455
|
},
|
|
324
456
|
"autoCorrect": {
|
|
325
|
-
"
|
|
326
|
-
|
|
327
|
-
|
|
457
|
+
"type": {
|
|
458
|
+
"name": "string",
|
|
459
|
+
"required": false
|
|
460
|
+
},
|
|
461
|
+
"control": "text"
|
|
328
462
|
},
|
|
329
463
|
"autoSave": {
|
|
330
|
-
"
|
|
331
|
-
|
|
332
|
-
|
|
464
|
+
"type": {
|
|
465
|
+
"name": "string",
|
|
466
|
+
"required": false
|
|
467
|
+
},
|
|
468
|
+
"control": "text"
|
|
333
469
|
},
|
|
334
470
|
"color": {
|
|
335
|
-
"
|
|
336
|
-
|
|
337
|
-
|
|
471
|
+
"type": {
|
|
472
|
+
"name": "string",
|
|
473
|
+
"required": false
|
|
474
|
+
},
|
|
475
|
+
"control": "color"
|
|
338
476
|
},
|
|
339
477
|
"itemProp": {
|
|
340
|
-
"
|
|
341
|
-
|
|
342
|
-
|
|
478
|
+
"type": {
|
|
479
|
+
"name": "string",
|
|
480
|
+
"required": false
|
|
481
|
+
},
|
|
482
|
+
"control": "text"
|
|
343
483
|
},
|
|
344
484
|
"itemScope": {
|
|
345
|
-
"
|
|
346
|
-
|
|
347
|
-
|
|
485
|
+
"type": {
|
|
486
|
+
"name": "boolean",
|
|
487
|
+
"required": false
|
|
488
|
+
},
|
|
489
|
+
"control": "boolean"
|
|
348
490
|
},
|
|
349
491
|
"itemType": {
|
|
350
|
-
"
|
|
351
|
-
|
|
352
|
-
|
|
492
|
+
"type": {
|
|
493
|
+
"name": "string",
|
|
494
|
+
"required": false
|
|
495
|
+
},
|
|
496
|
+
"control": "text"
|
|
353
497
|
},
|
|
354
498
|
"itemID": {
|
|
355
|
-
"
|
|
356
|
-
|
|
357
|
-
|
|
499
|
+
"type": {
|
|
500
|
+
"name": "string",
|
|
501
|
+
"required": false
|
|
502
|
+
},
|
|
503
|
+
"control": "text"
|
|
358
504
|
},
|
|
359
505
|
"itemRef": {
|
|
360
|
-
"
|
|
361
|
-
|
|
362
|
-
|
|
506
|
+
"type": {
|
|
507
|
+
"name": "string",
|
|
508
|
+
"required": false
|
|
509
|
+
},
|
|
510
|
+
"control": "text"
|
|
363
511
|
},
|
|
364
512
|
"results": {
|
|
365
|
-
"
|
|
366
|
-
|
|
367
|
-
|
|
513
|
+
"type": {
|
|
514
|
+
"name": "number",
|
|
515
|
+
"required": false
|
|
516
|
+
},
|
|
517
|
+
"control": "number"
|
|
368
518
|
},
|
|
369
519
|
"security": {
|
|
370
|
-
"
|
|
371
|
-
|
|
372
|
-
|
|
520
|
+
"type": {
|
|
521
|
+
"name": "string",
|
|
522
|
+
"required": false
|
|
523
|
+
},
|
|
524
|
+
"control": "text"
|
|
373
525
|
},
|
|
374
526
|
"unselectable": {
|
|
375
|
-
"
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
527
|
+
"type": {
|
|
528
|
+
"name": "string",
|
|
529
|
+
"required": false
|
|
530
|
+
},
|
|
531
|
+
"control": {
|
|
532
|
+
"type": "radio",
|
|
533
|
+
"options": ["on", "off"]
|
|
534
|
+
}
|
|
379
535
|
},
|
|
380
536
|
"inputMode": {
|
|
381
|
-
"
|
|
382
|
-
"
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
537
|
+
"description": "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
538
|
+
"type": {
|
|
539
|
+
"name": "string",
|
|
540
|
+
"required": false
|
|
541
|
+
},
|
|
542
|
+
"control": {
|
|
543
|
+
"type": "select",
|
|
544
|
+
"options": [
|
|
545
|
+
"text",
|
|
546
|
+
"search",
|
|
547
|
+
"email",
|
|
548
|
+
"tel",
|
|
549
|
+
"url",
|
|
550
|
+
"none",
|
|
551
|
+
"numeric",
|
|
552
|
+
"decimal"
|
|
553
|
+
]
|
|
554
|
+
}
|
|
394
555
|
},
|
|
395
556
|
"is": {
|
|
396
|
-
"
|
|
397
|
-
"
|
|
398
|
-
|
|
557
|
+
"description": "Specify that a standard HTML element should behave like a defined custom built-in element\n@see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is",
|
|
558
|
+
"type": {
|
|
559
|
+
"name": "string",
|
|
560
|
+
"required": false
|
|
561
|
+
},
|
|
562
|
+
"control": "text"
|
|
399
563
|
},
|
|
400
564
|
"aria-activedescendant": {
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
|
|
565
|
+
"description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
566
|
+
"type": {
|
|
567
|
+
"name": "string",
|
|
568
|
+
"required": false
|
|
569
|
+
},
|
|
570
|
+
"control": "text"
|
|
404
571
|
},
|
|
405
572
|
"aria-atomic": {
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
|
|
573
|
+
"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.",
|
|
574
|
+
"type": {
|
|
575
|
+
"name": "boolean",
|
|
576
|
+
"required": false
|
|
577
|
+
},
|
|
578
|
+
"control": "boolean"
|
|
409
579
|
},
|
|
410
580
|
"aria-autocomplete": {
|
|
411
|
-
"
|
|
412
|
-
"
|
|
413
|
-
|
|
414
|
-
|
|
581
|
+
"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\npresented if they are made.",
|
|
582
|
+
"type": {
|
|
583
|
+
"name": "string",
|
|
584
|
+
"required": false
|
|
585
|
+
},
|
|
586
|
+
"control": {
|
|
587
|
+
"type": "radio",
|
|
588
|
+
"options": ["list", "none", "inline", "both"]
|
|
589
|
+
}
|
|
415
590
|
},
|
|
416
591
|
"aria-busy": {
|
|
417
|
-
"
|
|
418
|
-
"
|
|
419
|
-
|
|
592
|
+
"description": "Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.",
|
|
593
|
+
"type": {
|
|
594
|
+
"name": "boolean",
|
|
595
|
+
"required": false
|
|
596
|
+
},
|
|
597
|
+
"control": "boolean"
|
|
420
598
|
},
|
|
421
599
|
"aria-checked": {
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
|
|
600
|
+
"description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.",
|
|
601
|
+
"type": {
|
|
602
|
+
"name": "boolean | \"true\" | \"false\" | \"mixed\"",
|
|
603
|
+
"required": false
|
|
604
|
+
},
|
|
605
|
+
"control": "text"
|
|
425
606
|
},
|
|
426
607
|
"aria-colcount": {
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
|
|
608
|
+
"description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.",
|
|
609
|
+
"type": {
|
|
610
|
+
"name": "number",
|
|
611
|
+
"required": false
|
|
612
|
+
},
|
|
613
|
+
"control": "number"
|
|
430
614
|
},
|
|
431
615
|
"aria-colindex": {
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
|
|
616
|
+
"description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.",
|
|
617
|
+
"type": {
|
|
618
|
+
"name": "number",
|
|
619
|
+
"required": false
|
|
620
|
+
},
|
|
621
|
+
"control": "number"
|
|
435
622
|
},
|
|
436
623
|
"aria-colspan": {
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
|
|
624
|
+
"description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.",
|
|
625
|
+
"type": {
|
|
626
|
+
"name": "number",
|
|
627
|
+
"required": false
|
|
628
|
+
},
|
|
629
|
+
"control": "number"
|
|
440
630
|
},
|
|
441
631
|
"aria-controls": {
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
|
|
632
|
+
"description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.",
|
|
633
|
+
"type": {
|
|
634
|
+
"name": "string",
|
|
635
|
+
"required": false
|
|
636
|
+
},
|
|
637
|
+
"control": "text"
|
|
445
638
|
},
|
|
446
639
|
"aria-current": {
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
|
|
640
|
+
"description": "Indicates the element that represents the current item within a container or set of related elements.",
|
|
641
|
+
"type": {
|
|
642
|
+
"name": "boolean | \"time\" | \"step\" | \"date\" | \"true\" | \"false\" | \"page\" | \"location\"",
|
|
643
|
+
"required": false
|
|
644
|
+
},
|
|
645
|
+
"control": "text"
|
|
450
646
|
},
|
|
451
647
|
"aria-describedby": {
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
|
|
648
|
+
"description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby",
|
|
649
|
+
"type": {
|
|
650
|
+
"name": "string",
|
|
651
|
+
"required": false
|
|
652
|
+
},
|
|
653
|
+
"control": "text"
|
|
455
654
|
},
|
|
456
655
|
"aria-details": {
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
|
|
656
|
+
"description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
657
|
+
"type": {
|
|
658
|
+
"name": "string",
|
|
659
|
+
"required": false
|
|
660
|
+
},
|
|
661
|
+
"control": "text"
|
|
460
662
|
},
|
|
461
663
|
"aria-disabled": {
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
|
|
664
|
+
"description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.",
|
|
665
|
+
"type": {
|
|
666
|
+
"name": "boolean",
|
|
667
|
+
"required": false
|
|
668
|
+
},
|
|
669
|
+
"control": "boolean"
|
|
465
670
|
},
|
|
466
671
|
"aria-dropeffect": {
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
|
|
470
|
-
|
|
672
|
+
"description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1",
|
|
673
|
+
"type": {
|
|
674
|
+
"name": "string",
|
|
675
|
+
"required": false
|
|
676
|
+
},
|
|
677
|
+
"control": {
|
|
678
|
+
"type": "select",
|
|
679
|
+
"options": ["link", "none", "copy", "execute", "move", "popup"]
|
|
680
|
+
}
|
|
471
681
|
},
|
|
472
682
|
"aria-errormessage": {
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
|
|
683
|
+
"description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.",
|
|
684
|
+
"type": {
|
|
685
|
+
"name": "string",
|
|
686
|
+
"required": false
|
|
687
|
+
},
|
|
688
|
+
"control": "text"
|
|
476
689
|
},
|
|
477
690
|
"aria-expanded": {
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
|
|
691
|
+
"description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
692
|
+
"type": {
|
|
693
|
+
"name": "boolean",
|
|
694
|
+
"required": false
|
|
695
|
+
},
|
|
696
|
+
"control": "boolean"
|
|
481
697
|
},
|
|
482
698
|
"aria-flowto": {
|
|
483
|
-
"
|
|
484
|
-
"
|
|
485
|
-
|
|
699
|
+
"description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.",
|
|
700
|
+
"type": {
|
|
701
|
+
"name": "string",
|
|
702
|
+
"required": false
|
|
703
|
+
},
|
|
704
|
+
"control": "text"
|
|
486
705
|
},
|
|
487
706
|
"aria-grabbed": {
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
|
|
707
|
+
"description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1",
|
|
708
|
+
"type": {
|
|
709
|
+
"name": "boolean",
|
|
710
|
+
"required": false
|
|
711
|
+
},
|
|
712
|
+
"control": "boolean"
|
|
491
713
|
},
|
|
492
714
|
"aria-haspopup": {
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
|
|
715
|
+
"description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
716
|
+
"type": {
|
|
717
|
+
"name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"",
|
|
718
|
+
"required": false
|
|
719
|
+
},
|
|
720
|
+
"control": "text"
|
|
496
721
|
},
|
|
497
722
|
"aria-hidden": {
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
|
|
723
|
+
"description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.",
|
|
724
|
+
"type": {
|
|
725
|
+
"name": "boolean",
|
|
726
|
+
"required": false
|
|
727
|
+
},
|
|
728
|
+
"control": "boolean"
|
|
501
729
|
},
|
|
502
730
|
"aria-invalid": {
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
|
|
731
|
+
"description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.",
|
|
732
|
+
"type": {
|
|
733
|
+
"name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"",
|
|
734
|
+
"required": false
|
|
735
|
+
},
|
|
736
|
+
"control": "text"
|
|
506
737
|
},
|
|
507
738
|
"aria-keyshortcuts": {
|
|
508
|
-
"
|
|
509
|
-
"
|
|
510
|
-
|
|
739
|
+
"description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
740
|
+
"type": {
|
|
741
|
+
"name": "string",
|
|
742
|
+
"required": false
|
|
743
|
+
},
|
|
744
|
+
"control": "text"
|
|
511
745
|
},
|
|
512
746
|
"aria-label": {
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
|
|
747
|
+
"description": "Defines a string value that labels the current element.\n@see aria-labelledby.",
|
|
748
|
+
"type": {
|
|
749
|
+
"name": "string",
|
|
750
|
+
"required": false
|
|
751
|
+
},
|
|
752
|
+
"control": "text"
|
|
516
753
|
},
|
|
517
754
|
"aria-labelledby": {
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
|
|
755
|
+
"description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.",
|
|
756
|
+
"type": {
|
|
757
|
+
"name": "string",
|
|
758
|
+
"required": false
|
|
759
|
+
},
|
|
760
|
+
"control": "text"
|
|
521
761
|
},
|
|
522
762
|
"aria-level": {
|
|
523
|
-
"
|
|
524
|
-
"
|
|
525
|
-
|
|
763
|
+
"description": "Defines the hierarchical level of an element within a structure.",
|
|
764
|
+
"type": {
|
|
765
|
+
"name": "number",
|
|
766
|
+
"required": false
|
|
767
|
+
},
|
|
768
|
+
"control": "number"
|
|
526
769
|
},
|
|
527
770
|
"aria-live": {
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
|
|
531
|
-
|
|
771
|
+
"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.",
|
|
772
|
+
"type": {
|
|
773
|
+
"name": "string",
|
|
774
|
+
"required": false
|
|
775
|
+
},
|
|
776
|
+
"control": {
|
|
777
|
+
"type": "radio",
|
|
778
|
+
"options": ["off", "assertive", "polite"]
|
|
779
|
+
}
|
|
532
780
|
},
|
|
533
781
|
"aria-modal": {
|
|
534
|
-
"
|
|
535
|
-
"
|
|
536
|
-
|
|
782
|
+
"description": "Indicates whether an element is modal when displayed.",
|
|
783
|
+
"type": {
|
|
784
|
+
"name": "boolean",
|
|
785
|
+
"required": false
|
|
786
|
+
},
|
|
787
|
+
"control": "boolean"
|
|
537
788
|
},
|
|
538
789
|
"aria-multiline": {
|
|
539
|
-
"
|
|
540
|
-
"
|
|
541
|
-
|
|
790
|
+
"description": "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
791
|
+
"type": {
|
|
792
|
+
"name": "boolean",
|
|
793
|
+
"required": false
|
|
794
|
+
},
|
|
795
|
+
"control": "boolean"
|
|
542
796
|
},
|
|
543
797
|
"aria-multiselectable": {
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
|
|
798
|
+
"description": "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
799
|
+
"type": {
|
|
800
|
+
"name": "boolean",
|
|
801
|
+
"required": false
|
|
802
|
+
},
|
|
803
|
+
"control": "boolean"
|
|
547
804
|
},
|
|
548
805
|
"aria-orientation": {
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
|
|
552
|
-
|
|
806
|
+
"description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
807
|
+
"type": {
|
|
808
|
+
"name": "string",
|
|
809
|
+
"required": false
|
|
810
|
+
},
|
|
811
|
+
"control": {
|
|
812
|
+
"type": "radio",
|
|
813
|
+
"options": ["horizontal", "vertical"]
|
|
814
|
+
}
|
|
553
815
|
},
|
|
554
816
|
"aria-owns": {
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
|
|
817
|
+
"description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.",
|
|
818
|
+
"type": {
|
|
819
|
+
"name": "string",
|
|
820
|
+
"required": false
|
|
821
|
+
},
|
|
822
|
+
"control": "text"
|
|
558
823
|
},
|
|
559
824
|
"aria-placeholder": {
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
|
|
825
|
+
"description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.",
|
|
826
|
+
"type": {
|
|
827
|
+
"name": "string",
|
|
828
|
+
"required": false
|
|
829
|
+
},
|
|
830
|
+
"control": "text"
|
|
563
831
|
},
|
|
564
832
|
"aria-posinset": {
|
|
565
|
-
"
|
|
566
|
-
"
|
|
567
|
-
|
|
833
|
+
"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.\n@see aria-setsize.",
|
|
834
|
+
"type": {
|
|
835
|
+
"name": "number",
|
|
836
|
+
"required": false
|
|
837
|
+
},
|
|
838
|
+
"control": "number"
|
|
568
839
|
},
|
|
569
840
|
"aria-pressed": {
|
|
570
|
-
"
|
|
571
|
-
"
|
|
572
|
-
|
|
841
|
+
"description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.",
|
|
842
|
+
"type": {
|
|
843
|
+
"name": "boolean | \"true\" | \"false\" | \"mixed\"",
|
|
844
|
+
"required": false
|
|
845
|
+
},
|
|
846
|
+
"control": "text"
|
|
573
847
|
},
|
|
574
848
|
"aria-readonly": {
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
|
|
849
|
+
"description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.",
|
|
850
|
+
"type": {
|
|
851
|
+
"name": "boolean",
|
|
852
|
+
"required": false
|
|
853
|
+
},
|
|
854
|
+
"control": "boolean"
|
|
578
855
|
},
|
|
579
856
|
"aria-relevant": {
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
"
|
|
587
|
-
"
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
857
|
+
"description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.",
|
|
858
|
+
"type": {
|
|
859
|
+
"name": "string",
|
|
860
|
+
"required": false
|
|
861
|
+
},
|
|
862
|
+
"control": {
|
|
863
|
+
"type": "select",
|
|
864
|
+
"options": [
|
|
865
|
+
"text",
|
|
866
|
+
"additions",
|
|
867
|
+
"additions removals",
|
|
868
|
+
"additions text",
|
|
869
|
+
"all",
|
|
870
|
+
"removals",
|
|
871
|
+
"removals additions",
|
|
872
|
+
"removals text",
|
|
873
|
+
"text additions",
|
|
874
|
+
"text removals"
|
|
875
|
+
]
|
|
876
|
+
}
|
|
595
877
|
},
|
|
596
878
|
"aria-required": {
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
|
|
879
|
+
"description": "Indicates that user input is required on the element before a form may be submitted.",
|
|
880
|
+
"type": {
|
|
881
|
+
"name": "boolean",
|
|
882
|
+
"required": false
|
|
883
|
+
},
|
|
884
|
+
"control": "boolean"
|
|
600
885
|
},
|
|
601
886
|
"aria-roledescription": {
|
|
602
|
-
"
|
|
603
|
-
"
|
|
604
|
-
|
|
887
|
+
"description": "Defines a human-readable, author-localized description for the role of an element.",
|
|
888
|
+
"type": {
|
|
889
|
+
"name": "string",
|
|
890
|
+
"required": false
|
|
891
|
+
},
|
|
892
|
+
"control": "text"
|
|
605
893
|
},
|
|
606
894
|
"aria-rowcount": {
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
|
|
895
|
+
"description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.",
|
|
896
|
+
"type": {
|
|
897
|
+
"name": "number",
|
|
898
|
+
"required": false
|
|
899
|
+
},
|
|
900
|
+
"control": "number"
|
|
610
901
|
},
|
|
611
902
|
"aria-rowindex": {
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
|
|
903
|
+
"description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.",
|
|
904
|
+
"type": {
|
|
905
|
+
"name": "number",
|
|
906
|
+
"required": false
|
|
907
|
+
},
|
|
908
|
+
"control": "number"
|
|
615
909
|
},
|
|
616
910
|
"aria-rowspan": {
|
|
617
|
-
"
|
|
618
|
-
"
|
|
619
|
-
|
|
911
|
+
"description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.",
|
|
912
|
+
"type": {
|
|
913
|
+
"name": "number",
|
|
914
|
+
"required": false
|
|
915
|
+
},
|
|
916
|
+
"control": "number"
|
|
620
917
|
},
|
|
621
918
|
"aria-selected": {
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
|
|
919
|
+
"description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.",
|
|
920
|
+
"type": {
|
|
921
|
+
"name": "boolean",
|
|
922
|
+
"required": false
|
|
923
|
+
},
|
|
924
|
+
"control": "boolean"
|
|
625
925
|
},
|
|
626
926
|
"aria-setsize": {
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
|
|
927
|
+
"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.\n@see aria-posinset.",
|
|
928
|
+
"type": {
|
|
929
|
+
"name": "number",
|
|
930
|
+
"required": false
|
|
931
|
+
},
|
|
932
|
+
"control": "number"
|
|
630
933
|
},
|
|
631
934
|
"aria-sort": {
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
|
|
635
|
-
|
|
935
|
+
"description": "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
936
|
+
"type": {
|
|
937
|
+
"name": "string",
|
|
938
|
+
"required": false
|
|
939
|
+
},
|
|
940
|
+
"control": {
|
|
941
|
+
"type": "radio",
|
|
942
|
+
"options": ["none", "ascending", "descending", "other"]
|
|
943
|
+
}
|
|
636
944
|
},
|
|
637
945
|
"aria-valuemax": {
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
|
|
946
|
+
"description": "Defines the maximum allowed value for a range widget.",
|
|
947
|
+
"type": {
|
|
948
|
+
"name": "number",
|
|
949
|
+
"required": false
|
|
950
|
+
},
|
|
951
|
+
"control": "number"
|
|
641
952
|
},
|
|
642
953
|
"aria-valuemin": {
|
|
643
|
-
"
|
|
644
|
-
"
|
|
645
|
-
|
|
954
|
+
"description": "Defines the minimum allowed value for a range widget.",
|
|
955
|
+
"type": {
|
|
956
|
+
"name": "number",
|
|
957
|
+
"required": false
|
|
958
|
+
},
|
|
959
|
+
"control": "number"
|
|
646
960
|
},
|
|
647
961
|
"aria-valuenow": {
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
|
|
962
|
+
"description": "Defines the current value for a range widget.\n@see aria-valuetext.",
|
|
963
|
+
"type": {
|
|
964
|
+
"name": "number",
|
|
965
|
+
"required": false
|
|
966
|
+
},
|
|
967
|
+
"control": "number"
|
|
651
968
|
},
|
|
652
969
|
"aria-valuetext": {
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
|
|
970
|
+
"description": "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
971
|
+
"type": {
|
|
972
|
+
"name": "string",
|
|
973
|
+
"required": false
|
|
974
|
+
},
|
|
975
|
+
"control": "text"
|
|
656
976
|
}
|
|
657
977
|
}
|