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