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