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