@webstudio-is/react-sdk 0.29.0 → 0.31.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 +9 -9
- 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,508 +1,765 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slot": {
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
"type": {
|
|
4
|
+
"name": "string",
|
|
5
|
+
"required": false
|
|
6
|
+
},
|
|
7
|
+
"control": "text"
|
|
6
8
|
},
|
|
7
9
|
"style": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
"type": {
|
|
11
|
+
"name": "CSSProperties",
|
|
12
|
+
"required": false
|
|
13
|
+
},
|
|
14
|
+
"control": "text"
|
|
11
15
|
},
|
|
12
16
|
"title": {
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
"type": {
|
|
18
|
+
"name": "string",
|
|
19
|
+
"required": false
|
|
20
|
+
},
|
|
21
|
+
"control": "text"
|
|
16
22
|
},
|
|
17
23
|
"defaultChecked": {
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
"type": {
|
|
25
|
+
"name": "boolean",
|
|
26
|
+
"required": false
|
|
27
|
+
},
|
|
28
|
+
"control": "boolean"
|
|
21
29
|
},
|
|
22
30
|
"defaultValue": {
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
31
|
+
"type": {
|
|
32
|
+
"name": "string | number | readonly string[]",
|
|
33
|
+
"required": false
|
|
34
|
+
},
|
|
35
|
+
"control": "text"
|
|
26
36
|
},
|
|
27
37
|
"suppressContentEditableWarning": {
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
38
|
+
"type": {
|
|
39
|
+
"name": "boolean",
|
|
40
|
+
"required": false
|
|
41
|
+
},
|
|
42
|
+
"control": "boolean"
|
|
31
43
|
},
|
|
32
44
|
"suppressHydrationWarning": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
45
|
+
"type": {
|
|
46
|
+
"name": "boolean",
|
|
47
|
+
"required": false
|
|
48
|
+
},
|
|
49
|
+
"control": "boolean"
|
|
36
50
|
},
|
|
37
51
|
"accessKey": {
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
52
|
+
"type": {
|
|
53
|
+
"name": "string",
|
|
54
|
+
"required": false
|
|
55
|
+
},
|
|
56
|
+
"control": "text"
|
|
41
57
|
},
|
|
42
58
|
"className": {
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
59
|
+
"type": {
|
|
60
|
+
"name": "string",
|
|
61
|
+
"required": false
|
|
62
|
+
},
|
|
63
|
+
"control": "text"
|
|
46
64
|
},
|
|
47
65
|
"contentEditable": {
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
66
|
+
"type": {
|
|
67
|
+
"name": "Booleanish | \"inherit\"",
|
|
68
|
+
"required": false
|
|
69
|
+
},
|
|
70
|
+
"control": "text"
|
|
51
71
|
},
|
|
52
72
|
"contextMenu": {
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
73
|
+
"type": {
|
|
74
|
+
"name": "string",
|
|
75
|
+
"required": false
|
|
76
|
+
},
|
|
77
|
+
"control": "text"
|
|
56
78
|
},
|
|
57
79
|
"dir": {
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
80
|
+
"type": {
|
|
81
|
+
"name": "string",
|
|
82
|
+
"required": false
|
|
83
|
+
},
|
|
84
|
+
"control": "text"
|
|
61
85
|
},
|
|
62
86
|
"draggable": {
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
87
|
+
"type": {
|
|
88
|
+
"name": "boolean",
|
|
89
|
+
"required": false
|
|
90
|
+
},
|
|
91
|
+
"control": "boolean"
|
|
66
92
|
},
|
|
67
93
|
"hidden": {
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
94
|
+
"type": {
|
|
95
|
+
"name": "boolean",
|
|
96
|
+
"required": false
|
|
97
|
+
},
|
|
98
|
+
"control": "boolean"
|
|
71
99
|
},
|
|
72
100
|
"id": {
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
101
|
+
"type": {
|
|
102
|
+
"name": "string",
|
|
103
|
+
"required": false
|
|
104
|
+
},
|
|
105
|
+
"control": "text"
|
|
76
106
|
},
|
|
77
107
|
"lang": {
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
108
|
+
"type": {
|
|
109
|
+
"name": "string",
|
|
110
|
+
"required": false
|
|
111
|
+
},
|
|
112
|
+
"control": "text"
|
|
81
113
|
},
|
|
82
114
|
"placeholder": {
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
115
|
+
"type": {
|
|
116
|
+
"name": "string",
|
|
117
|
+
"required": false
|
|
118
|
+
},
|
|
119
|
+
"control": "text"
|
|
86
120
|
},
|
|
87
121
|
"spellCheck": {
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
122
|
+
"type": {
|
|
123
|
+
"name": "boolean",
|
|
124
|
+
"required": false
|
|
125
|
+
},
|
|
126
|
+
"control": "boolean"
|
|
91
127
|
},
|
|
92
128
|
"tabIndex": {
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
129
|
+
"type": {
|
|
130
|
+
"name": "number",
|
|
131
|
+
"required": false
|
|
132
|
+
},
|
|
133
|
+
"control": "number"
|
|
96
134
|
},
|
|
97
135
|
"translate": {
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
136
|
+
"type": {
|
|
137
|
+
"name": "string",
|
|
138
|
+
"required": false
|
|
139
|
+
},
|
|
140
|
+
"control": {
|
|
141
|
+
"type": "radio",
|
|
142
|
+
"options": ["yes", "no"]
|
|
143
|
+
}
|
|
102
144
|
},
|
|
103
145
|
"radioGroup": {
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
146
|
+
"type": {
|
|
147
|
+
"name": "string",
|
|
148
|
+
"required": false
|
|
149
|
+
},
|
|
150
|
+
"control": "text"
|
|
107
151
|
},
|
|
108
152
|
"role": {
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
153
|
+
"type": {
|
|
154
|
+
"name": "AriaRole",
|
|
155
|
+
"required": false
|
|
156
|
+
},
|
|
157
|
+
"control": "text"
|
|
112
158
|
},
|
|
113
159
|
"about": {
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
160
|
+
"type": {
|
|
161
|
+
"name": "string",
|
|
162
|
+
"required": false
|
|
163
|
+
},
|
|
164
|
+
"control": "text"
|
|
117
165
|
},
|
|
118
166
|
"datatype": {
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
167
|
+
"type": {
|
|
168
|
+
"name": "string",
|
|
169
|
+
"required": false
|
|
170
|
+
},
|
|
171
|
+
"control": "text"
|
|
122
172
|
},
|
|
123
173
|
"inlist": {
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
174
|
+
"type": {
|
|
175
|
+
"name": "any",
|
|
176
|
+
"required": false
|
|
177
|
+
},
|
|
178
|
+
"control": "text"
|
|
127
179
|
},
|
|
128
180
|
"prefix": {
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
181
|
+
"type": {
|
|
182
|
+
"name": "string",
|
|
183
|
+
"required": false
|
|
184
|
+
},
|
|
185
|
+
"control": "text"
|
|
132
186
|
},
|
|
133
187
|
"property": {
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
188
|
+
"type": {
|
|
189
|
+
"name": "string",
|
|
190
|
+
"required": false
|
|
191
|
+
},
|
|
192
|
+
"control": "text"
|
|
137
193
|
},
|
|
138
194
|
"resource": {
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
195
|
+
"type": {
|
|
196
|
+
"name": "string",
|
|
197
|
+
"required": false
|
|
198
|
+
},
|
|
199
|
+
"control": "text"
|
|
142
200
|
},
|
|
143
201
|
"typeof": {
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
202
|
+
"type": {
|
|
203
|
+
"name": "string",
|
|
204
|
+
"required": false
|
|
205
|
+
},
|
|
206
|
+
"control": "text"
|
|
147
207
|
},
|
|
148
208
|
"vocab": {
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
209
|
+
"type": {
|
|
210
|
+
"name": "string",
|
|
211
|
+
"required": false
|
|
212
|
+
},
|
|
213
|
+
"control": "text"
|
|
152
214
|
},
|
|
153
215
|
"autoCapitalize": {
|
|
154
|
-
"
|
|
155
|
-
|
|
156
|
-
|
|
216
|
+
"type": {
|
|
217
|
+
"name": "string",
|
|
218
|
+
"required": false
|
|
219
|
+
},
|
|
220
|
+
"control": "text"
|
|
157
221
|
},
|
|
158
222
|
"autoCorrect": {
|
|
159
|
-
"
|
|
160
|
-
|
|
161
|
-
|
|
223
|
+
"type": {
|
|
224
|
+
"name": "string",
|
|
225
|
+
"required": false
|
|
226
|
+
},
|
|
227
|
+
"control": "text"
|
|
162
228
|
},
|
|
163
229
|
"autoSave": {
|
|
164
|
-
"
|
|
165
|
-
|
|
166
|
-
|
|
230
|
+
"type": {
|
|
231
|
+
"name": "string",
|
|
232
|
+
"required": false
|
|
233
|
+
},
|
|
234
|
+
"control": "text"
|
|
167
235
|
},
|
|
168
236
|
"color": {
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
237
|
+
"type": {
|
|
238
|
+
"name": "string",
|
|
239
|
+
"required": false
|
|
240
|
+
},
|
|
241
|
+
"control": "color"
|
|
172
242
|
},
|
|
173
243
|
"itemProp": {
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
244
|
+
"type": {
|
|
245
|
+
"name": "string",
|
|
246
|
+
"required": false
|
|
247
|
+
},
|
|
248
|
+
"control": "text"
|
|
177
249
|
},
|
|
178
250
|
"itemScope": {
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
251
|
+
"type": {
|
|
252
|
+
"name": "boolean",
|
|
253
|
+
"required": false
|
|
254
|
+
},
|
|
255
|
+
"control": "boolean"
|
|
182
256
|
},
|
|
183
257
|
"itemType": {
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
258
|
+
"type": {
|
|
259
|
+
"name": "string",
|
|
260
|
+
"required": false
|
|
261
|
+
},
|
|
262
|
+
"control": "text"
|
|
187
263
|
},
|
|
188
264
|
"itemID": {
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
265
|
+
"type": {
|
|
266
|
+
"name": "string",
|
|
267
|
+
"required": false
|
|
268
|
+
},
|
|
269
|
+
"control": "text"
|
|
192
270
|
},
|
|
193
271
|
"itemRef": {
|
|
194
|
-
"
|
|
195
|
-
|
|
196
|
-
|
|
272
|
+
"type": {
|
|
273
|
+
"name": "string",
|
|
274
|
+
"required": false
|
|
275
|
+
},
|
|
276
|
+
"control": "text"
|
|
197
277
|
},
|
|
198
278
|
"results": {
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
279
|
+
"type": {
|
|
280
|
+
"name": "number",
|
|
281
|
+
"required": false
|
|
282
|
+
},
|
|
283
|
+
"control": "number"
|
|
202
284
|
},
|
|
203
285
|
"security": {
|
|
204
|
-
"
|
|
205
|
-
|
|
206
|
-
|
|
286
|
+
"type": {
|
|
287
|
+
"name": "string",
|
|
288
|
+
"required": false
|
|
289
|
+
},
|
|
290
|
+
"control": "text"
|
|
207
291
|
},
|
|
208
292
|
"unselectable": {
|
|
209
|
-
"
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
293
|
+
"type": {
|
|
294
|
+
"name": "string",
|
|
295
|
+
"required": false
|
|
296
|
+
},
|
|
297
|
+
"control": {
|
|
298
|
+
"type": "radio",
|
|
299
|
+
"options": ["on", "off"]
|
|
300
|
+
}
|
|
213
301
|
},
|
|
214
302
|
"inputMode": {
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
303
|
+
"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",
|
|
304
|
+
"type": {
|
|
305
|
+
"name": "string",
|
|
306
|
+
"required": false
|
|
307
|
+
},
|
|
308
|
+
"control": {
|
|
309
|
+
"type": "select",
|
|
310
|
+
"options": [
|
|
311
|
+
"text",
|
|
312
|
+
"none",
|
|
313
|
+
"search",
|
|
314
|
+
"tel",
|
|
315
|
+
"url",
|
|
316
|
+
"email",
|
|
317
|
+
"numeric",
|
|
318
|
+
"decimal"
|
|
319
|
+
]
|
|
320
|
+
}
|
|
228
321
|
},
|
|
229
322
|
"is": {
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
|
|
323
|
+
"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",
|
|
324
|
+
"type": {
|
|
325
|
+
"name": "string",
|
|
326
|
+
"required": false
|
|
327
|
+
},
|
|
328
|
+
"control": "text"
|
|
233
329
|
},
|
|
234
330
|
"aria-activedescendant": {
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
|
|
331
|
+
"description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
332
|
+
"type": {
|
|
333
|
+
"name": "string",
|
|
334
|
+
"required": false
|
|
335
|
+
},
|
|
336
|
+
"control": "text"
|
|
238
337
|
},
|
|
239
338
|
"aria-atomic": {
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
|
|
339
|
+
"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.",
|
|
340
|
+
"type": {
|
|
341
|
+
"name": "boolean",
|
|
342
|
+
"required": false
|
|
343
|
+
},
|
|
344
|
+
"control": "boolean"
|
|
243
345
|
},
|
|
244
346
|
"aria-autocomplete": {
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
|
|
248
|
-
|
|
347
|
+
"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.",
|
|
348
|
+
"type": {
|
|
349
|
+
"name": "string",
|
|
350
|
+
"required": false
|
|
351
|
+
},
|
|
352
|
+
"control": {
|
|
353
|
+
"type": "radio",
|
|
354
|
+
"options": ["list", "none", "inline", "both"]
|
|
355
|
+
}
|
|
249
356
|
},
|
|
250
357
|
"aria-busy": {
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
|
|
358
|
+
"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.",
|
|
359
|
+
"type": {
|
|
360
|
+
"name": "boolean",
|
|
361
|
+
"required": false
|
|
362
|
+
},
|
|
363
|
+
"control": "boolean"
|
|
254
364
|
},
|
|
255
365
|
"aria-checked": {
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
|
|
366
|
+
"description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.",
|
|
367
|
+
"type": {
|
|
368
|
+
"name": "boolean | \"true\" | \"false\" | \"mixed\"",
|
|
369
|
+
"required": false
|
|
370
|
+
},
|
|
371
|
+
"control": "text"
|
|
259
372
|
},
|
|
260
373
|
"aria-colcount": {
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
|
|
374
|
+
"description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.",
|
|
375
|
+
"type": {
|
|
376
|
+
"name": "number",
|
|
377
|
+
"required": false
|
|
378
|
+
},
|
|
379
|
+
"control": "number"
|
|
264
380
|
},
|
|
265
381
|
"aria-colindex": {
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
|
|
382
|
+
"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.",
|
|
383
|
+
"type": {
|
|
384
|
+
"name": "number",
|
|
385
|
+
"required": false
|
|
386
|
+
},
|
|
387
|
+
"control": "number"
|
|
269
388
|
},
|
|
270
389
|
"aria-colspan": {
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
390
|
+
"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.",
|
|
391
|
+
"type": {
|
|
392
|
+
"name": "number",
|
|
393
|
+
"required": false
|
|
394
|
+
},
|
|
395
|
+
"control": "number"
|
|
274
396
|
},
|
|
275
397
|
"aria-controls": {
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
|
|
398
|
+
"description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.",
|
|
399
|
+
"type": {
|
|
400
|
+
"name": "string",
|
|
401
|
+
"required": false
|
|
402
|
+
},
|
|
403
|
+
"control": "text"
|
|
279
404
|
},
|
|
280
405
|
"aria-current": {
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
|
|
406
|
+
"description": "Indicates the element that represents the current item within a container or set of related elements.",
|
|
407
|
+
"type": {
|
|
408
|
+
"name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"",
|
|
409
|
+
"required": false
|
|
410
|
+
},
|
|
411
|
+
"control": "text"
|
|
284
412
|
},
|
|
285
413
|
"aria-describedby": {
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
|
|
414
|
+
"description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby",
|
|
415
|
+
"type": {
|
|
416
|
+
"name": "string",
|
|
417
|
+
"required": false
|
|
418
|
+
},
|
|
419
|
+
"control": "text"
|
|
289
420
|
},
|
|
290
421
|
"aria-details": {
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
|
|
422
|
+
"description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.",
|
|
423
|
+
"type": {
|
|
424
|
+
"name": "string",
|
|
425
|
+
"required": false
|
|
426
|
+
},
|
|
427
|
+
"control": "text"
|
|
294
428
|
},
|
|
295
429
|
"aria-disabled": {
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
|
|
430
|
+
"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.",
|
|
431
|
+
"type": {
|
|
432
|
+
"name": "boolean",
|
|
433
|
+
"required": false
|
|
434
|
+
},
|
|
435
|
+
"control": "boolean"
|
|
299
436
|
},
|
|
300
437
|
"aria-dropeffect": {
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
438
|
+
"description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1",
|
|
439
|
+
"type": {
|
|
440
|
+
"name": "string",
|
|
441
|
+
"required": false
|
|
442
|
+
},
|
|
443
|
+
"control": {
|
|
444
|
+
"type": "select",
|
|
445
|
+
"options": ["link", "none", "copy", "execute", "move", "popup"]
|
|
446
|
+
}
|
|
305
447
|
},
|
|
306
448
|
"aria-errormessage": {
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
|
|
449
|
+
"description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.",
|
|
450
|
+
"type": {
|
|
451
|
+
"name": "string",
|
|
452
|
+
"required": false
|
|
453
|
+
},
|
|
454
|
+
"control": "text"
|
|
310
455
|
},
|
|
311
456
|
"aria-expanded": {
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
|
|
457
|
+
"description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
|
|
458
|
+
"type": {
|
|
459
|
+
"name": "boolean",
|
|
460
|
+
"required": false
|
|
461
|
+
},
|
|
462
|
+
"control": "boolean"
|
|
315
463
|
},
|
|
316
464
|
"aria-flowto": {
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
|
|
465
|
+
"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.",
|
|
466
|
+
"type": {
|
|
467
|
+
"name": "string",
|
|
468
|
+
"required": false
|
|
469
|
+
},
|
|
470
|
+
"control": "text"
|
|
320
471
|
},
|
|
321
472
|
"aria-grabbed": {
|
|
322
|
-
"
|
|
323
|
-
"
|
|
324
|
-
|
|
473
|
+
"description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1",
|
|
474
|
+
"type": {
|
|
475
|
+
"name": "boolean",
|
|
476
|
+
"required": false
|
|
477
|
+
},
|
|
478
|
+
"control": "boolean"
|
|
325
479
|
},
|
|
326
480
|
"aria-haspopup": {
|
|
327
|
-
"
|
|
328
|
-
"
|
|
329
|
-
|
|
481
|
+
"description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
|
|
482
|
+
"type": {
|
|
483
|
+
"name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"",
|
|
484
|
+
"required": false
|
|
485
|
+
},
|
|
486
|
+
"control": "text"
|
|
330
487
|
},
|
|
331
488
|
"aria-hidden": {
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
|
|
489
|
+
"description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.",
|
|
490
|
+
"type": {
|
|
491
|
+
"name": "boolean",
|
|
492
|
+
"required": false
|
|
493
|
+
},
|
|
494
|
+
"control": "boolean"
|
|
335
495
|
},
|
|
336
496
|
"aria-invalid": {
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
|
|
497
|
+
"description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.",
|
|
498
|
+
"type": {
|
|
499
|
+
"name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"",
|
|
500
|
+
"required": false
|
|
501
|
+
},
|
|
502
|
+
"control": "text"
|
|
340
503
|
},
|
|
341
504
|
"aria-keyshortcuts": {
|
|
342
|
-
"
|
|
343
|
-
"
|
|
344
|
-
|
|
505
|
+
"description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
|
|
506
|
+
"type": {
|
|
507
|
+
"name": "string",
|
|
508
|
+
"required": false
|
|
509
|
+
},
|
|
510
|
+
"control": "text"
|
|
345
511
|
},
|
|
346
512
|
"aria-label": {
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
-
|
|
513
|
+
"description": "Defines a string value that labels the current element.\n@see aria-labelledby.",
|
|
514
|
+
"type": {
|
|
515
|
+
"name": "string",
|
|
516
|
+
"required": false
|
|
517
|
+
},
|
|
518
|
+
"control": "text"
|
|
350
519
|
},
|
|
351
520
|
"aria-labelledby": {
|
|
352
|
-
"
|
|
353
|
-
"
|
|
354
|
-
|
|
521
|
+
"description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.",
|
|
522
|
+
"type": {
|
|
523
|
+
"name": "string",
|
|
524
|
+
"required": false
|
|
525
|
+
},
|
|
526
|
+
"control": "text"
|
|
355
527
|
},
|
|
356
528
|
"aria-level": {
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
|
|
529
|
+
"description": "Defines the hierarchical level of an element within a structure.",
|
|
530
|
+
"type": {
|
|
531
|
+
"name": "number",
|
|
532
|
+
"required": false
|
|
533
|
+
},
|
|
534
|
+
"control": "number"
|
|
360
535
|
},
|
|
361
536
|
"aria-live": {
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
|
|
365
|
-
|
|
537
|
+
"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.",
|
|
538
|
+
"type": {
|
|
539
|
+
"name": "string",
|
|
540
|
+
"required": false
|
|
541
|
+
},
|
|
542
|
+
"control": {
|
|
543
|
+
"type": "radio",
|
|
544
|
+
"options": ["off", "assertive", "polite"]
|
|
545
|
+
}
|
|
366
546
|
},
|
|
367
547
|
"aria-modal": {
|
|
368
|
-
"
|
|
369
|
-
"
|
|
370
|
-
|
|
548
|
+
"description": "Indicates whether an element is modal when displayed.",
|
|
549
|
+
"type": {
|
|
550
|
+
"name": "boolean",
|
|
551
|
+
"required": false
|
|
552
|
+
},
|
|
553
|
+
"control": "boolean"
|
|
371
554
|
},
|
|
372
555
|
"aria-multiline": {
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
|
|
556
|
+
"description": "Indicates whether a text box accepts multiple lines of input or only a single line.",
|
|
557
|
+
"type": {
|
|
558
|
+
"name": "boolean",
|
|
559
|
+
"required": false
|
|
560
|
+
},
|
|
561
|
+
"control": "boolean"
|
|
376
562
|
},
|
|
377
563
|
"aria-multiselectable": {
|
|
378
|
-
"
|
|
379
|
-
"
|
|
380
|
-
|
|
564
|
+
"description": "Indicates that the user may select more than one item from the current selectable descendants.",
|
|
565
|
+
"type": {
|
|
566
|
+
"name": "boolean",
|
|
567
|
+
"required": false
|
|
568
|
+
},
|
|
569
|
+
"control": "boolean"
|
|
381
570
|
},
|
|
382
571
|
"aria-orientation": {
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
|
|
386
|
-
|
|
572
|
+
"description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
|
|
573
|
+
"type": {
|
|
574
|
+
"name": "string",
|
|
575
|
+
"required": false
|
|
576
|
+
},
|
|
577
|
+
"control": {
|
|
578
|
+
"type": "radio",
|
|
579
|
+
"options": ["horizontal", "vertical"]
|
|
580
|
+
}
|
|
387
581
|
},
|
|
388
582
|
"aria-owns": {
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
|
|
583
|
+
"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.",
|
|
584
|
+
"type": {
|
|
585
|
+
"name": "string",
|
|
586
|
+
"required": false
|
|
587
|
+
},
|
|
588
|
+
"control": "text"
|
|
392
589
|
},
|
|
393
590
|
"aria-placeholder": {
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
|
|
591
|
+
"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.",
|
|
592
|
+
"type": {
|
|
593
|
+
"name": "string",
|
|
594
|
+
"required": false
|
|
595
|
+
},
|
|
596
|
+
"control": "text"
|
|
397
597
|
},
|
|
398
598
|
"aria-posinset": {
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
|
|
599
|
+
"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.",
|
|
600
|
+
"type": {
|
|
601
|
+
"name": "number",
|
|
602
|
+
"required": false
|
|
603
|
+
},
|
|
604
|
+
"control": "number"
|
|
402
605
|
},
|
|
403
606
|
"aria-pressed": {
|
|
404
|
-
"
|
|
405
|
-
"
|
|
406
|
-
|
|
607
|
+
"description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.",
|
|
608
|
+
"type": {
|
|
609
|
+
"name": "boolean | \"true\" | \"false\" | \"mixed\"",
|
|
610
|
+
"required": false
|
|
611
|
+
},
|
|
612
|
+
"control": "text"
|
|
407
613
|
},
|
|
408
614
|
"aria-readonly": {
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
|
|
615
|
+
"description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.",
|
|
616
|
+
"type": {
|
|
617
|
+
"name": "boolean",
|
|
618
|
+
"required": false
|
|
619
|
+
},
|
|
620
|
+
"control": "boolean"
|
|
412
621
|
},
|
|
413
622
|
"aria-relevant": {
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
623
|
+
"description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.",
|
|
624
|
+
"type": {
|
|
625
|
+
"name": "string",
|
|
626
|
+
"required": false
|
|
627
|
+
},
|
|
628
|
+
"control": {
|
|
629
|
+
"type": "select",
|
|
630
|
+
"options": [
|
|
631
|
+
"text",
|
|
632
|
+
"additions",
|
|
633
|
+
"additions removals",
|
|
634
|
+
"additions text",
|
|
635
|
+
"all",
|
|
636
|
+
"removals",
|
|
637
|
+
"removals additions",
|
|
638
|
+
"removals text",
|
|
639
|
+
"text additions",
|
|
640
|
+
"text removals"
|
|
641
|
+
]
|
|
642
|
+
}
|
|
429
643
|
},
|
|
430
644
|
"aria-required": {
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
|
|
645
|
+
"description": "Indicates that user input is required on the element before a form may be submitted.",
|
|
646
|
+
"type": {
|
|
647
|
+
"name": "boolean",
|
|
648
|
+
"required": false
|
|
649
|
+
},
|
|
650
|
+
"control": "boolean"
|
|
434
651
|
},
|
|
435
652
|
"aria-roledescription": {
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
|
|
653
|
+
"description": "Defines a human-readable, author-localized description for the role of an element.",
|
|
654
|
+
"type": {
|
|
655
|
+
"name": "string",
|
|
656
|
+
"required": false
|
|
657
|
+
},
|
|
658
|
+
"control": "text"
|
|
439
659
|
},
|
|
440
660
|
"aria-rowcount": {
|
|
441
|
-
"
|
|
442
|
-
"
|
|
443
|
-
|
|
661
|
+
"description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.",
|
|
662
|
+
"type": {
|
|
663
|
+
"name": "number",
|
|
664
|
+
"required": false
|
|
665
|
+
},
|
|
666
|
+
"control": "number"
|
|
444
667
|
},
|
|
445
668
|
"aria-rowindex": {
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
|
|
669
|
+
"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.",
|
|
670
|
+
"type": {
|
|
671
|
+
"name": "number",
|
|
672
|
+
"required": false
|
|
673
|
+
},
|
|
674
|
+
"control": "number"
|
|
449
675
|
},
|
|
450
676
|
"aria-rowspan": {
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
|
|
677
|
+
"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.",
|
|
678
|
+
"type": {
|
|
679
|
+
"name": "number",
|
|
680
|
+
"required": false
|
|
681
|
+
},
|
|
682
|
+
"control": "number"
|
|
454
683
|
},
|
|
455
684
|
"aria-selected": {
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
|
|
685
|
+
"description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.",
|
|
686
|
+
"type": {
|
|
687
|
+
"name": "boolean",
|
|
688
|
+
"required": false
|
|
689
|
+
},
|
|
690
|
+
"control": "boolean"
|
|
459
691
|
},
|
|
460
692
|
"aria-setsize": {
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
|
|
693
|
+
"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.",
|
|
694
|
+
"type": {
|
|
695
|
+
"name": "number",
|
|
696
|
+
"required": false
|
|
697
|
+
},
|
|
698
|
+
"control": "number"
|
|
464
699
|
},
|
|
465
700
|
"aria-sort": {
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
|
|
469
|
-
|
|
701
|
+
"description": "Indicates if items in a table or grid are sorted in ascending or descending order.",
|
|
702
|
+
"type": {
|
|
703
|
+
"name": "string",
|
|
704
|
+
"required": false
|
|
705
|
+
},
|
|
706
|
+
"control": {
|
|
707
|
+
"type": "radio",
|
|
708
|
+
"options": ["none", "ascending", "descending", "other"]
|
|
709
|
+
}
|
|
470
710
|
},
|
|
471
711
|
"aria-valuemax": {
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
|
|
712
|
+
"description": "Defines the maximum allowed value for a range widget.",
|
|
713
|
+
"type": {
|
|
714
|
+
"name": "number",
|
|
715
|
+
"required": false
|
|
716
|
+
},
|
|
717
|
+
"control": "number"
|
|
475
718
|
},
|
|
476
719
|
"aria-valuemin": {
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
|
|
720
|
+
"description": "Defines the minimum allowed value for a range widget.",
|
|
721
|
+
"type": {
|
|
722
|
+
"name": "number",
|
|
723
|
+
"required": false
|
|
724
|
+
},
|
|
725
|
+
"control": "number"
|
|
480
726
|
},
|
|
481
727
|
"aria-valuenow": {
|
|
482
|
-
"
|
|
483
|
-
"
|
|
484
|
-
|
|
728
|
+
"description": "Defines the current value for a range widget.\n@see aria-valuetext.",
|
|
729
|
+
"type": {
|
|
730
|
+
"name": "number",
|
|
731
|
+
"required": false
|
|
732
|
+
},
|
|
733
|
+
"control": "number"
|
|
485
734
|
},
|
|
486
735
|
"aria-valuetext": {
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
|
|
736
|
+
"description": "Defines the human readable text alternative of aria-valuenow for a range widget.",
|
|
737
|
+
"type": {
|
|
738
|
+
"name": "string",
|
|
739
|
+
"required": false
|
|
740
|
+
},
|
|
741
|
+
"control": "text"
|
|
490
742
|
},
|
|
491
743
|
"tag": {
|
|
492
|
-
"
|
|
493
|
-
|
|
494
|
-
"
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
"
|
|
498
|
-
"
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
744
|
+
"type": {
|
|
745
|
+
"name": "string",
|
|
746
|
+
"required": false
|
|
747
|
+
},
|
|
748
|
+
"control": {
|
|
749
|
+
"type": "select",
|
|
750
|
+
"options": [
|
|
751
|
+
"div",
|
|
752
|
+
"address",
|
|
753
|
+
"article",
|
|
754
|
+
"aside",
|
|
755
|
+
"figure",
|
|
756
|
+
"footer",
|
|
757
|
+
"header",
|
|
758
|
+
"main",
|
|
759
|
+
"nav",
|
|
760
|
+
"section"
|
|
761
|
+
]
|
|
762
|
+
},
|
|
763
|
+
"defaultValue": "div"
|
|
507
764
|
}
|
|
508
765
|
}
|