@webstudio-is/sdk-components-react-radix 0.218.0 → 0.219.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/__generated__/accordion.props.js +9 -906
- package/lib/__generated__/checkbox.props.js +5 -403
- package/lib/__generated__/collapsible.props.js +7 -344
- package/lib/__generated__/dialog.props.js +10 -915
- package/lib/__generated__/label.props.js +2 -183
- package/lib/__generated__/navigation-menu.props.js +13 -1294
- package/lib/__generated__/popover.props.js +5 -174
- package/lib/__generated__/radio-group.props.js +14 -561
- package/lib/__generated__/select.props.js +38 -1273
- package/lib/__generated__/switch.props.js +5 -403
- package/lib/__generated__/tabs.props.js +12 -732
- package/lib/__generated__/tooltip.props.js +6 -175
- package/lib/accordion.js +4 -4
- package/lib/accordion.template.js +12 -12
- package/lib/checkbox.js +2 -2
- package/lib/checkbox.template.js +9 -9
- package/lib/collapsible.js +3 -3
- package/lib/dialog.template.js +19 -19
- package/lib/dialog.ws.js +15 -15
- package/lib/label.template.js +3 -3
- package/lib/navigation-menu.template.js +8 -8
- package/lib/navigation-menu.ws.js +6 -6
- package/lib/popover.ws.js +4 -4
- package/lib/radio-group.js +2 -2
- package/lib/select.js +4 -6
- package/lib/select.ws.js +6 -6
- package/lib/shared/theme.js +25 -68
- package/lib/sheet.template.js +20 -20
- package/lib/switch.js +2 -2
- package/lib/switch.template.js +9 -9
- package/lib/tabs.js +4 -4
- package/lib/tabs.template.js +15 -15
- package/lib/tooltip.ws.js +4 -4
- package/lib/types/select.d.ts +3 -3
- package/package.json +22 -22
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
const e = {
|
|
2
|
-
about: { required: !1, control: "text", type: "string" },
|
|
3
|
-
accessKey: {
|
|
4
|
-
required: !1,
|
|
5
|
-
control: "text",
|
|
6
|
-
type: "string",
|
|
7
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
8
|
-
},
|
|
9
2
|
activationMode: {
|
|
10
3
|
description: `Whether a tab is activated automatically or manually.
|
|
11
4
|
@defaultValue automatic`,
|
|
@@ -14,40 +7,6 @@ const e = {
|
|
|
14
7
|
type: "string",
|
|
15
8
|
options: ["automatic", "manual"]
|
|
16
9
|
},
|
|
17
|
-
autoCapitalize: {
|
|
18
|
-
required: !1,
|
|
19
|
-
control: "text",
|
|
20
|
-
type: "string",
|
|
21
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
22
|
-
},
|
|
23
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
24
|
-
autoFocus: {
|
|
25
|
-
required: !1,
|
|
26
|
-
control: "boolean",
|
|
27
|
-
type: "boolean",
|
|
28
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
29
|
-
},
|
|
30
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
31
|
-
className: { required: !1, control: "text", type: "string" },
|
|
32
|
-
color: {
|
|
33
|
-
required: !1,
|
|
34
|
-
control: "color",
|
|
35
|
-
type: "string",
|
|
36
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
37
|
-
},
|
|
38
|
-
content: {
|
|
39
|
-
required: !1,
|
|
40
|
-
control: "text",
|
|
41
|
-
type: "string",
|
|
42
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
43
|
-
},
|
|
44
|
-
contextMenu: {
|
|
45
|
-
required: !1,
|
|
46
|
-
control: "text",
|
|
47
|
-
type: "string",
|
|
48
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
49
|
-
},
|
|
50
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
51
10
|
defaultValue: {
|
|
52
11
|
description: "The value of the tab to select by default, if uncontrolled",
|
|
53
12
|
required: !1,
|
|
@@ -61,58 +20,6 @@ const e = {
|
|
|
61
20
|
type: "string",
|
|
62
21
|
options: ["ltr", "rtl"]
|
|
63
22
|
},
|
|
64
|
-
draggable: {
|
|
65
|
-
required: !1,
|
|
66
|
-
control: "boolean",
|
|
67
|
-
type: "boolean",
|
|
68
|
-
description: "Defines whether the element can be dragged."
|
|
69
|
-
},
|
|
70
|
-
hidden: {
|
|
71
|
-
required: !1,
|
|
72
|
-
control: "boolean",
|
|
73
|
-
type: "boolean",
|
|
74
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
75
|
-
},
|
|
76
|
-
id: {
|
|
77
|
-
required: !1,
|
|
78
|
-
control: "text",
|
|
79
|
-
type: "string",
|
|
80
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
81
|
-
},
|
|
82
|
-
inputMode: {
|
|
83
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
84
|
-
required: !1,
|
|
85
|
-
control: "select",
|
|
86
|
-
type: "string",
|
|
87
|
-
options: [
|
|
88
|
-
"search",
|
|
89
|
-
"text",
|
|
90
|
-
"none",
|
|
91
|
-
"tel",
|
|
92
|
-
"url",
|
|
93
|
-
"email",
|
|
94
|
-
"numeric",
|
|
95
|
-
"decimal"
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
is: {
|
|
99
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
100
|
-
required: !1,
|
|
101
|
-
control: "text",
|
|
102
|
-
type: "string"
|
|
103
|
-
},
|
|
104
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
105
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
106
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
107
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
108
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
109
|
-
lang: {
|
|
110
|
-
required: !1,
|
|
111
|
-
control: "text",
|
|
112
|
-
type: "string",
|
|
113
|
-
description: "Defines the language used in the element."
|
|
114
|
-
},
|
|
115
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
116
23
|
orientation: {
|
|
117
24
|
description: `The orientation the tabs are layed out.
|
|
118
25
|
Mainly so arrow navigation is done accordingly (left & right vs. up & down)
|
|
@@ -122,664 +29,37 @@ Mainly so arrow navigation is done accordingly (left & right vs. up & down)
|
|
|
122
29
|
type: "string",
|
|
123
30
|
options: ["horizontal", "vertical"]
|
|
124
31
|
},
|
|
125
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
126
|
-
property: { required: !1, control: "text", type: "string" },
|
|
127
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
128
|
-
rel: {
|
|
129
|
-
required: !1,
|
|
130
|
-
control: "text",
|
|
131
|
-
type: "string",
|
|
132
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
133
|
-
},
|
|
134
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
135
|
-
results: { required: !1, control: "number", type: "number" },
|
|
136
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
137
|
-
role: {
|
|
138
|
-
required: !1,
|
|
139
|
-
control: "text",
|
|
140
|
-
type: "string",
|
|
141
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
142
|
-
},
|
|
143
|
-
security: { required: !1, control: "text", type: "string" },
|
|
144
|
-
slot: {
|
|
145
|
-
required: !1,
|
|
146
|
-
control: "text",
|
|
147
|
-
type: "string",
|
|
148
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
149
|
-
},
|
|
150
|
-
spellCheck: {
|
|
151
|
-
required: !1,
|
|
152
|
-
control: "boolean",
|
|
153
|
-
type: "boolean",
|
|
154
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
155
|
-
},
|
|
156
|
-
suppressContentEditableWarning: {
|
|
157
|
-
required: !1,
|
|
158
|
-
control: "boolean",
|
|
159
|
-
type: "boolean"
|
|
160
|
-
},
|
|
161
|
-
suppressHydrationWarning: {
|
|
162
|
-
required: !1,
|
|
163
|
-
control: "boolean",
|
|
164
|
-
type: "boolean"
|
|
165
|
-
},
|
|
166
|
-
tabIndex: {
|
|
167
|
-
required: !1,
|
|
168
|
-
control: "number",
|
|
169
|
-
type: "number",
|
|
170
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
171
|
-
},
|
|
172
|
-
title: {
|
|
173
|
-
required: !1,
|
|
174
|
-
control: "text",
|
|
175
|
-
type: "string",
|
|
176
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
177
|
-
},
|
|
178
|
-
translate: {
|
|
179
|
-
required: !1,
|
|
180
|
-
control: "radio",
|
|
181
|
-
type: "string",
|
|
182
|
-
options: ["yes", "no"],
|
|
183
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
184
|
-
},
|
|
185
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
186
|
-
unselectable: {
|
|
187
|
-
required: !1,
|
|
188
|
-
control: "radio",
|
|
189
|
-
type: "string",
|
|
190
|
-
options: ["on", "off"]
|
|
191
|
-
},
|
|
192
32
|
value: {
|
|
193
33
|
required: !1,
|
|
194
34
|
control: "text",
|
|
195
35
|
type: "string",
|
|
196
|
-
description: "
|
|
197
|
-
}
|
|
198
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
36
|
+
description: "Current value of the element"
|
|
37
|
+
}
|
|
199
38
|
}, t = {
|
|
200
|
-
about: { required: !1, control: "text", type: "string" },
|
|
201
|
-
accessKey: {
|
|
202
|
-
required: !1,
|
|
203
|
-
control: "text",
|
|
204
|
-
type: "string",
|
|
205
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
206
|
-
},
|
|
207
|
-
autoCapitalize: {
|
|
208
|
-
required: !1,
|
|
209
|
-
control: "text",
|
|
210
|
-
type: "string",
|
|
211
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
212
|
-
},
|
|
213
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
214
|
-
autoFocus: {
|
|
215
|
-
required: !1,
|
|
216
|
-
control: "boolean",
|
|
217
|
-
type: "boolean",
|
|
218
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
219
|
-
},
|
|
220
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
221
|
-
className: { required: !1, control: "text", type: "string" },
|
|
222
|
-
color: {
|
|
223
|
-
required: !1,
|
|
224
|
-
control: "color",
|
|
225
|
-
type: "string",
|
|
226
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
227
|
-
},
|
|
228
|
-
content: {
|
|
229
|
-
required: !1,
|
|
230
|
-
control: "text",
|
|
231
|
-
type: "string",
|
|
232
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
233
|
-
},
|
|
234
|
-
contextMenu: {
|
|
235
|
-
required: !1,
|
|
236
|
-
control: "text",
|
|
237
|
-
type: "string",
|
|
238
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
239
|
-
},
|
|
240
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
241
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
242
|
-
dir: {
|
|
243
|
-
required: !1,
|
|
244
|
-
control: "text",
|
|
245
|
-
type: "string",
|
|
246
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
247
|
-
},
|
|
248
|
-
draggable: {
|
|
249
|
-
required: !1,
|
|
250
|
-
control: "boolean",
|
|
251
|
-
type: "boolean",
|
|
252
|
-
description: "Defines whether the element can be dragged."
|
|
253
|
-
},
|
|
254
|
-
hidden: {
|
|
255
|
-
required: !1,
|
|
256
|
-
control: "boolean",
|
|
257
|
-
type: "boolean",
|
|
258
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
259
|
-
},
|
|
260
|
-
id: {
|
|
261
|
-
required: !1,
|
|
262
|
-
control: "text",
|
|
263
|
-
type: "string",
|
|
264
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
265
|
-
},
|
|
266
|
-
inputMode: {
|
|
267
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
268
|
-
required: !1,
|
|
269
|
-
control: "select",
|
|
270
|
-
type: "string",
|
|
271
|
-
options: [
|
|
272
|
-
"search",
|
|
273
|
-
"text",
|
|
274
|
-
"none",
|
|
275
|
-
"tel",
|
|
276
|
-
"url",
|
|
277
|
-
"email",
|
|
278
|
-
"numeric",
|
|
279
|
-
"decimal"
|
|
280
|
-
]
|
|
281
|
-
},
|
|
282
|
-
is: {
|
|
283
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
284
|
-
required: !1,
|
|
285
|
-
control: "text",
|
|
286
|
-
type: "string"
|
|
287
|
-
},
|
|
288
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
289
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
290
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
291
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
292
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
293
|
-
lang: {
|
|
294
|
-
required: !1,
|
|
295
|
-
control: "text",
|
|
296
|
-
type: "string",
|
|
297
|
-
description: "Defines the language used in the element."
|
|
298
|
-
},
|
|
299
39
|
loop: {
|
|
300
40
|
required: !1,
|
|
301
41
|
control: "boolean",
|
|
302
42
|
type: "boolean",
|
|
303
|
-
description: "
|
|
304
|
-
}
|
|
305
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
306
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
307
|
-
property: { required: !1, control: "text", type: "string" },
|
|
308
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
309
|
-
rel: {
|
|
310
|
-
required: !1,
|
|
311
|
-
control: "text",
|
|
312
|
-
type: "string",
|
|
313
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
314
|
-
},
|
|
315
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
316
|
-
results: { required: !1, control: "number", type: "number" },
|
|
317
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
318
|
-
role: {
|
|
319
|
-
required: !1,
|
|
320
|
-
control: "text",
|
|
321
|
-
type: "string",
|
|
322
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
323
|
-
},
|
|
324
|
-
security: { required: !1, control: "text", type: "string" },
|
|
325
|
-
slot: {
|
|
326
|
-
required: !1,
|
|
327
|
-
control: "text",
|
|
328
|
-
type: "string",
|
|
329
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
330
|
-
},
|
|
331
|
-
spellCheck: {
|
|
332
|
-
required: !1,
|
|
333
|
-
control: "boolean",
|
|
334
|
-
type: "boolean",
|
|
335
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
336
|
-
},
|
|
337
|
-
suppressContentEditableWarning: {
|
|
338
|
-
required: !1,
|
|
339
|
-
control: "boolean",
|
|
340
|
-
type: "boolean"
|
|
341
|
-
},
|
|
342
|
-
suppressHydrationWarning: {
|
|
343
|
-
required: !1,
|
|
344
|
-
control: "boolean",
|
|
345
|
-
type: "boolean"
|
|
346
|
-
},
|
|
347
|
-
tabIndex: {
|
|
348
|
-
required: !1,
|
|
349
|
-
control: "number",
|
|
350
|
-
type: "number",
|
|
351
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
352
|
-
},
|
|
353
|
-
title: {
|
|
354
|
-
required: !1,
|
|
355
|
-
control: "text",
|
|
356
|
-
type: "string",
|
|
357
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
358
|
-
},
|
|
359
|
-
translate: {
|
|
360
|
-
required: !1,
|
|
361
|
-
control: "radio",
|
|
362
|
-
type: "string",
|
|
363
|
-
options: ["yes", "no"],
|
|
364
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
365
|
-
},
|
|
366
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
367
|
-
unselectable: {
|
|
368
|
-
required: !1,
|
|
369
|
-
control: "radio",
|
|
370
|
-
type: "string",
|
|
371
|
-
options: ["on", "off"]
|
|
372
|
-
},
|
|
373
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
374
|
-
}, r = {
|
|
375
|
-
about: { required: !1, control: "text", type: "string" },
|
|
376
|
-
accessKey: {
|
|
377
|
-
required: !1,
|
|
378
|
-
control: "text",
|
|
379
|
-
type: "string",
|
|
380
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
381
|
-
},
|
|
382
|
-
autoCapitalize: {
|
|
383
|
-
required: !1,
|
|
384
|
-
control: "text",
|
|
385
|
-
type: "string",
|
|
386
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
387
|
-
},
|
|
388
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
389
|
-
autoFocus: {
|
|
390
|
-
required: !1,
|
|
391
|
-
control: "boolean",
|
|
392
|
-
type: "boolean",
|
|
393
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
394
|
-
},
|
|
395
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
396
|
-
className: { required: !1, control: "text", type: "string" },
|
|
397
|
-
color: {
|
|
398
|
-
required: !1,
|
|
399
|
-
control: "color",
|
|
400
|
-
type: "string",
|
|
401
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
402
|
-
},
|
|
403
|
-
content: {
|
|
404
|
-
required: !1,
|
|
405
|
-
control: "text",
|
|
406
|
-
type: "string",
|
|
407
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
408
|
-
},
|
|
409
|
-
contextMenu: {
|
|
410
|
-
required: !1,
|
|
411
|
-
control: "text",
|
|
412
|
-
type: "string",
|
|
413
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
414
|
-
},
|
|
415
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
416
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
417
|
-
dir: {
|
|
418
|
-
required: !1,
|
|
419
|
-
control: "text",
|
|
420
|
-
type: "string",
|
|
421
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
422
|
-
},
|
|
423
|
-
disabled: {
|
|
424
|
-
required: !1,
|
|
425
|
-
control: "boolean",
|
|
426
|
-
type: "boolean",
|
|
427
|
-
description: "Indicates whether the user can interact with the element."
|
|
428
|
-
},
|
|
429
|
-
draggable: {
|
|
430
|
-
required: !1,
|
|
431
|
-
control: "boolean",
|
|
432
|
-
type: "boolean",
|
|
433
|
-
description: "Defines whether the element can be dragged."
|
|
434
|
-
},
|
|
435
|
-
form: {
|
|
436
|
-
required: !1,
|
|
437
|
-
control: "text",
|
|
438
|
-
type: "string",
|
|
439
|
-
description: "Indicates the form that is the owner of the element."
|
|
440
|
-
},
|
|
441
|
-
formAction: {
|
|
442
|
-
required: !1,
|
|
443
|
-
control: "text",
|
|
444
|
-
type: "string",
|
|
445
|
-
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
446
|
-
},
|
|
447
|
-
formEncType: {
|
|
448
|
-
required: !1,
|
|
449
|
-
control: "text",
|
|
450
|
-
type: "string",
|
|
451
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides theenctype attribute of the button's form owner.`
|
|
452
|
-
},
|
|
453
|
-
formMethod: {
|
|
454
|
-
required: !1,
|
|
455
|
-
control: "text",
|
|
456
|
-
type: "string",
|
|
457
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner.`
|
|
458
|
-
},
|
|
459
|
-
formNoValidate: {
|
|
460
|
-
required: !1,
|
|
461
|
-
control: "boolean",
|
|
462
|
-
type: "boolean",
|
|
463
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this boolean attribute specifies that the form is not to be validatedwhen it is submitted. If this attribute is specified, it overrides thenovalidate attribute of the button's form owner.`
|
|
464
|
-
},
|
|
465
|
-
formTarget: {
|
|
466
|
-
required: !1,
|
|
467
|
-
control: "text",
|
|
468
|
-
type: "string",
|
|
469
|
-
description: `If the button/input is a submit button (e.g. type="submit"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received aftersubmitting the form. If this attribute is specified, it overrides thetarget attribute of the button's form owner.`
|
|
470
|
-
},
|
|
471
|
-
hidden: {
|
|
472
|
-
required: !1,
|
|
473
|
-
control: "boolean",
|
|
474
|
-
type: "boolean",
|
|
475
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
476
|
-
},
|
|
477
|
-
id: {
|
|
478
|
-
required: !1,
|
|
479
|
-
control: "text",
|
|
480
|
-
type: "string",
|
|
481
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
482
|
-
},
|
|
483
|
-
inputMode: {
|
|
484
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
485
|
-
required: !1,
|
|
486
|
-
control: "select",
|
|
487
|
-
type: "string",
|
|
488
|
-
options: [
|
|
489
|
-
"search",
|
|
490
|
-
"text",
|
|
491
|
-
"none",
|
|
492
|
-
"tel",
|
|
493
|
-
"url",
|
|
494
|
-
"email",
|
|
495
|
-
"numeric",
|
|
496
|
-
"decimal"
|
|
497
|
-
]
|
|
498
|
-
},
|
|
499
|
-
is: {
|
|
500
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
501
|
-
required: !1,
|
|
502
|
-
control: "text",
|
|
503
|
-
type: "string"
|
|
504
|
-
},
|
|
505
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
506
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
507
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
508
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
509
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
510
|
-
lang: {
|
|
511
|
-
required: !1,
|
|
512
|
-
control: "text",
|
|
513
|
-
type: "string",
|
|
514
|
-
description: "Defines the language used in the element."
|
|
515
|
-
},
|
|
516
|
-
name: {
|
|
517
|
-
required: !1,
|
|
518
|
-
control: "text",
|
|
519
|
-
type: "string",
|
|
520
|
-
description: "This name is important when submitting form data to the server, as it identifies the data associated with the input. When multiple inputs share the same name attribute, they are treated as part of the same group (e.g., radio buttons or checkboxes)."
|
|
521
|
-
},
|
|
522
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
523
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
524
|
-
property: { required: !1, control: "text", type: "string" },
|
|
525
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
526
|
-
rel: {
|
|
527
|
-
required: !1,
|
|
528
|
-
control: "text",
|
|
529
|
-
type: "string",
|
|
530
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
531
|
-
},
|
|
532
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
533
|
-
results: { required: !1, control: "number", type: "number" },
|
|
534
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
535
|
-
role: {
|
|
536
|
-
required: !1,
|
|
537
|
-
control: "text",
|
|
538
|
-
type: "string",
|
|
539
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
540
|
-
},
|
|
541
|
-
security: { required: !1, control: "text", type: "string" },
|
|
542
|
-
slot: {
|
|
543
|
-
required: !1,
|
|
544
|
-
control: "text",
|
|
545
|
-
type: "string",
|
|
546
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
547
|
-
},
|
|
548
|
-
spellCheck: {
|
|
549
|
-
required: !1,
|
|
550
|
-
control: "boolean",
|
|
551
|
-
type: "boolean",
|
|
552
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
553
|
-
},
|
|
554
|
-
suppressContentEditableWarning: {
|
|
555
|
-
required: !1,
|
|
556
|
-
control: "boolean",
|
|
557
|
-
type: "boolean"
|
|
558
|
-
},
|
|
559
|
-
suppressHydrationWarning: {
|
|
560
|
-
required: !1,
|
|
561
|
-
control: "boolean",
|
|
562
|
-
type: "boolean"
|
|
563
|
-
},
|
|
564
|
-
tabIndex: {
|
|
565
|
-
required: !1,
|
|
566
|
-
control: "number",
|
|
567
|
-
type: "number",
|
|
568
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
569
|
-
},
|
|
570
|
-
title: {
|
|
571
|
-
required: !1,
|
|
572
|
-
control: "text",
|
|
573
|
-
type: "string",
|
|
574
|
-
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
575
|
-
},
|
|
576
|
-
translate: {
|
|
577
|
-
required: !1,
|
|
578
|
-
control: "radio",
|
|
579
|
-
type: "string",
|
|
580
|
-
options: ["yes", "no"],
|
|
581
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
582
|
-
},
|
|
583
|
-
type: {
|
|
584
|
-
required: !1,
|
|
585
|
-
control: "radio",
|
|
586
|
-
type: "string",
|
|
587
|
-
options: ["button", "submit", "reset"],
|
|
588
|
-
description: "Defines the type of the element."
|
|
589
|
-
},
|
|
590
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
591
|
-
unselectable: {
|
|
592
|
-
required: !1,
|
|
593
|
-
control: "radio",
|
|
594
|
-
type: "string",
|
|
595
|
-
options: ["on", "off"]
|
|
596
|
-
},
|
|
597
|
-
value: {
|
|
598
|
-
required: !1,
|
|
599
|
-
control: "text",
|
|
600
|
-
type: "string",
|
|
601
|
-
description: "Defines a default value which will be displayed in the element on pageload."
|
|
602
|
-
},
|
|
603
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
43
|
+
description: "Whether to loop the media resource"
|
|
44
|
+
}
|
|
604
45
|
}, o = {
|
|
605
|
-
|
|
606
|
-
accessKey: {
|
|
607
|
-
required: !1,
|
|
608
|
-
control: "text",
|
|
609
|
-
type: "string",
|
|
610
|
-
description: "Keyboard shortcut to activate or add focus to the element."
|
|
611
|
-
},
|
|
612
|
-
autoCapitalize: {
|
|
613
|
-
required: !1,
|
|
614
|
-
control: "text",
|
|
615
|
-
type: "string",
|
|
616
|
-
description: "Sets whether input is automatically capitalized when entered by user."
|
|
617
|
-
},
|
|
618
|
-
autoCorrect: { required: !1, control: "text", type: "string" },
|
|
619
|
-
autoFocus: {
|
|
620
|
-
required: !1,
|
|
621
|
-
control: "boolean",
|
|
622
|
-
type: "boolean",
|
|
623
|
-
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
624
|
-
},
|
|
625
|
-
autoSave: { required: !1, control: "text", type: "string" },
|
|
626
|
-
className: { required: !1, control: "text", type: "string" },
|
|
627
|
-
color: {
|
|
628
|
-
required: !1,
|
|
629
|
-
control: "color",
|
|
630
|
-
type: "string",
|
|
631
|
-
description: "This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format. Note: This is a legacy attribute. Please use the CSS color property instead."
|
|
632
|
-
},
|
|
633
|
-
content: {
|
|
634
|
-
required: !1,
|
|
635
|
-
control: "text",
|
|
636
|
-
type: "string",
|
|
637
|
-
description: "A value associated with http-equiv orname depending on the context."
|
|
638
|
-
},
|
|
639
|
-
contextMenu: {
|
|
640
|
-
required: !1,
|
|
641
|
-
control: "text",
|
|
642
|
-
type: "string",
|
|
643
|
-
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
644
|
-
},
|
|
645
|
-
datatype: { required: !1, control: "text", type: "string" },
|
|
646
|
-
defaultValue: { required: !1, control: "text", type: "string" },
|
|
647
|
-
dir: {
|
|
648
|
-
required: !1,
|
|
649
|
-
control: "text",
|
|
650
|
-
type: "string",
|
|
651
|
-
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
652
|
-
},
|
|
653
|
-
draggable: {
|
|
654
|
-
required: !1,
|
|
655
|
-
control: "boolean",
|
|
656
|
-
type: "boolean",
|
|
657
|
-
description: "Defines whether the element can be dragged."
|
|
658
|
-
},
|
|
659
|
-
hidden: {
|
|
660
|
-
required: !1,
|
|
661
|
-
control: "boolean",
|
|
662
|
-
type: "boolean",
|
|
663
|
-
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
664
|
-
},
|
|
665
|
-
id: {
|
|
666
|
-
required: !1,
|
|
667
|
-
control: "text",
|
|
668
|
-
type: "string",
|
|
669
|
-
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
670
|
-
},
|
|
671
|
-
inputMode: {
|
|
672
|
-
description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
|
|
673
|
-
required: !1,
|
|
674
|
-
control: "select",
|
|
675
|
-
type: "string",
|
|
676
|
-
options: [
|
|
677
|
-
"search",
|
|
678
|
-
"text",
|
|
679
|
-
"none",
|
|
680
|
-
"tel",
|
|
681
|
-
"url",
|
|
682
|
-
"email",
|
|
683
|
-
"numeric",
|
|
684
|
-
"decimal"
|
|
685
|
-
]
|
|
686
|
-
},
|
|
687
|
-
is: {
|
|
688
|
-
description: "Specify that a standard HTML element should behave like a defined custom built-in element",
|
|
689
|
-
required: !1,
|
|
690
|
-
control: "text",
|
|
691
|
-
type: "string"
|
|
692
|
-
},
|
|
693
|
-
itemID: { required: !1, control: "text", type: "string" },
|
|
694
|
-
itemProp: { required: !1, control: "text", type: "string" },
|
|
695
|
-
itemRef: { required: !1, control: "text", type: "string" },
|
|
696
|
-
itemScope: { required: !1, control: "boolean", type: "boolean" },
|
|
697
|
-
itemType: { required: !1, control: "text", type: "string" },
|
|
698
|
-
lang: {
|
|
699
|
-
required: !1,
|
|
700
|
-
control: "text",
|
|
701
|
-
type: "string",
|
|
702
|
-
description: "Defines the language used in the element."
|
|
703
|
-
},
|
|
704
|
-
nonce: { required: !1, control: "text", type: "string" },
|
|
705
|
-
prefix: { required: !1, control: "text", type: "string" },
|
|
706
|
-
property: { required: !1, control: "text", type: "string" },
|
|
707
|
-
radioGroup: { required: !1, control: "text", type: "string" },
|
|
708
|
-
rel: {
|
|
709
|
-
required: !1,
|
|
710
|
-
control: "text",
|
|
711
|
-
type: "string",
|
|
712
|
-
description: "Specifies the relationship of the target object to the link object."
|
|
713
|
-
},
|
|
714
|
-
resource: { required: !1, control: "text", type: "string" },
|
|
715
|
-
results: { required: !1, control: "number", type: "number" },
|
|
716
|
-
rev: { required: !1, control: "text", type: "string" },
|
|
717
|
-
role: {
|
|
718
|
-
required: !1,
|
|
719
|
-
control: "text",
|
|
720
|
-
type: "string",
|
|
721
|
-
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
722
|
-
},
|
|
723
|
-
security: { required: !1, control: "text", type: "string" },
|
|
724
|
-
slot: {
|
|
725
|
-
required: !1,
|
|
726
|
-
control: "text",
|
|
727
|
-
type: "string",
|
|
728
|
-
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
729
|
-
},
|
|
730
|
-
spellCheck: {
|
|
731
|
-
required: !1,
|
|
732
|
-
control: "boolean",
|
|
733
|
-
type: "boolean",
|
|
734
|
-
description: "Indicates whether spell checking is allowed for the element."
|
|
735
|
-
},
|
|
736
|
-
suppressContentEditableWarning: {
|
|
737
|
-
required: !1,
|
|
738
|
-
control: "boolean",
|
|
739
|
-
type: "boolean"
|
|
740
|
-
},
|
|
741
|
-
suppressHydrationWarning: {
|
|
742
|
-
required: !1,
|
|
743
|
-
control: "boolean",
|
|
744
|
-
type: "boolean"
|
|
745
|
-
},
|
|
746
|
-
tabIndex: {
|
|
747
|
-
required: !1,
|
|
748
|
-
control: "number",
|
|
749
|
-
type: "number",
|
|
750
|
-
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
751
|
-
},
|
|
752
|
-
title: {
|
|
46
|
+
value: {
|
|
753
47
|
required: !1,
|
|
754
48
|
control: "text",
|
|
755
49
|
type: "string",
|
|
756
|
-
description: "
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
required: !1,
|
|
760
|
-
control: "radio",
|
|
761
|
-
type: "string",
|
|
762
|
-
options: ["yes", "no"],
|
|
763
|
-
description: "Specify whether an element's attribute values and the values of its text node children are to be translated when the page is localized, or whether to leave them unchanged."
|
|
764
|
-
},
|
|
765
|
-
typeof: { required: !1, control: "text", type: "string" },
|
|
766
|
-
unselectable: {
|
|
767
|
-
required: !1,
|
|
768
|
-
control: "radio",
|
|
769
|
-
type: "string",
|
|
770
|
-
options: ["on", "off"]
|
|
771
|
-
},
|
|
50
|
+
description: "Current value of the element"
|
|
51
|
+
}
|
|
52
|
+
}, r = {
|
|
772
53
|
value: {
|
|
773
54
|
required: !1,
|
|
774
55
|
control: "text",
|
|
775
56
|
type: "string",
|
|
776
|
-
description: "
|
|
777
|
-
}
|
|
778
|
-
vocab: { required: !1, control: "text", type: "string" }
|
|
57
|
+
description: "Current value of the element"
|
|
58
|
+
}
|
|
779
59
|
};
|
|
780
60
|
export {
|
|
781
61
|
e as propsTabs,
|
|
782
|
-
|
|
62
|
+
r as propsTabsContent,
|
|
783
63
|
t as propsTabsList,
|
|
784
|
-
|
|
64
|
+
o as propsTabsTrigger
|
|
785
65
|
};
|