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