@webstudio-is/sdk-components-react-radix 0.217.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.
@@ -1,360 +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
- "aria-activedescendant": {
10
- description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
11
- required: !1,
12
- control: "text",
13
- type: "string"
14
- },
15
- "aria-atomic": {
16
- 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.",
17
- required: !1,
18
- control: "boolean",
19
- type: "boolean"
20
- },
21
- "aria-autocomplete": {
22
- 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
23
- presented if they are made.`,
24
- required: !1,
25
- control: "select",
26
- type: "string",
27
- options: ["list", "none", "inline", "both"]
28
- },
29
- "aria-braillelabel": {
30
- description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
31
- required: !1,
32
- control: "text",
33
- type: "string"
34
- },
35
- "aria-brailleroledescription": {
36
- description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
37
- required: !1,
38
- control: "text",
39
- type: "string"
40
- },
41
- "aria-busy": { required: !1, control: "boolean", type: "boolean" },
42
- "aria-checked": {
43
- description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
44
- required: !1,
45
- control: "text",
46
- type: "string"
47
- },
48
- "aria-colcount": {
49
- description: "Defines the total number of columns in a table, grid, or treegrid.",
50
- required: !1,
51
- control: "number",
52
- type: "number"
53
- },
54
- "aria-colindex": {
55
- description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
56
- required: !1,
57
- control: "number",
58
- type: "number"
59
- },
60
- "aria-colindextext": {
61
- description: "Defines a human readable text alternative of aria-colindex.",
62
- required: !1,
63
- control: "text",
64
- type: "string"
65
- },
66
- "aria-colspan": {
67
- description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
68
- required: !1,
69
- control: "number",
70
- type: "number"
71
- },
72
- "aria-controls": {
73
- description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
74
- required: !1,
75
- control: "text",
76
- type: "string"
77
- },
78
- "aria-current": {
79
- description: "Indicates the element that represents the current item within a container or set of related elements.",
80
- required: !1,
81
- control: "text",
82
- type: "string"
83
- },
84
- "aria-describedby": {
85
- description: "Identifies the element (or elements) that describes the object.",
86
- required: !1,
87
- control: "text",
88
- type: "string"
89
- },
90
- "aria-description": {
91
- description: "Defines a string value that describes or annotates the current element.",
92
- required: !1,
93
- control: "text",
94
- type: "string"
95
- },
96
- "aria-details": {
97
- description: "Identifies the element that provides a detailed, extended description for the object.",
98
- required: !1,
99
- control: "text",
100
- type: "string"
101
- },
102
- "aria-disabled": {
103
- description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
104
- required: !1,
105
- control: "boolean",
106
- type: "boolean"
107
- },
108
- "aria-dropeffect": {
109
- description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
110
- required: !1,
111
- control: "select",
112
- type: "string",
113
- options: ["link", "none", "copy", "execute", "move", "popup"]
114
- },
115
- "aria-errormessage": {
116
- description: "Identifies the element that provides an error message for the object.",
117
- required: !1,
118
- control: "text",
119
- type: "string"
120
- },
121
- "aria-expanded": {
122
- description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
123
- required: !1,
124
- control: "boolean",
125
- type: "boolean"
126
- },
127
- "aria-flowto": {
128
- description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
129
- allows assistive technology to override the general default of reading in document source order.`,
130
- required: !1,
131
- control: "text",
132
- type: "string"
133
- },
134
- "aria-grabbed": {
135
- description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
136
- required: !1,
137
- control: "boolean",
138
- type: "boolean"
139
- },
140
- "aria-haspopup": {
141
- description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
142
- required: !1,
143
- control: "text",
144
- type: "string"
145
- },
146
- "aria-hidden": {
147
- description: "Indicates whether the element is exposed to an accessibility API.",
148
- required: !1,
149
- control: "boolean",
150
- type: "boolean"
151
- },
152
- "aria-invalid": {
153
- description: "Indicates the entered value does not conform to the format expected by the application.",
154
- required: !1,
155
- control: "text",
156
- type: "string"
157
- },
158
- "aria-keyshortcuts": {
159
- description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
160
- required: !1,
161
- control: "text",
162
- type: "string"
163
- },
164
- "aria-label": {
165
- description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
166
- required: !1,
167
- control: "text",
168
- type: "string"
169
- },
170
- "aria-labelledby": {
171
- description: "Identifies the element (or elements) that labels the current element.",
172
- required: !1,
173
- control: "text",
174
- type: "string"
175
- },
176
- "aria-level": {
177
- description: "Defines the hierarchical level of an element within a structure.",
178
- required: !1,
179
- control: "number",
180
- type: "number"
181
- },
182
- "aria-live": {
183
- 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.",
184
- required: !1,
185
- control: "radio",
186
- type: "string",
187
- options: ["off", "assertive", "polite"]
188
- },
189
- "aria-modal": {
190
- description: "Indicates whether an element is modal when displayed.",
191
- required: !1,
192
- control: "boolean",
193
- type: "boolean"
194
- },
195
- "aria-multiline": {
196
- description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
197
- required: !1,
198
- control: "boolean",
199
- type: "boolean"
200
- },
201
- "aria-multiselectable": {
202
- description: "Indicates that the user may select more than one item from the current selectable descendants.",
203
- required: !1,
204
- control: "boolean",
205
- type: "boolean"
206
- },
207
- "aria-orientation": {
208
- description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
209
- required: !1,
210
- control: "radio",
211
- type: "string",
212
- options: ["horizontal", "vertical"]
213
- },
214
- "aria-owns": {
215
- description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
216
- between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
217
- required: !1,
218
- control: "text",
219
- type: "string"
220
- },
221
- "aria-placeholder": {
222
- description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
223
- A hint could be a sample value or a brief description of the expected format.`,
224
- required: !1,
225
- control: "text",
226
- type: "string"
227
- },
228
- "aria-posinset": {
229
- 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.",
230
- required: !1,
231
- control: "number",
232
- type: "number"
233
- },
234
- "aria-pressed": {
235
- description: 'Indicates the current "pressed" state of toggle buttons.',
236
- required: !1,
237
- control: "text",
238
- type: "string"
239
- },
240
- "aria-readonly": {
241
- description: "Indicates that the element is not editable, but is otherwise operable.",
242
- required: !1,
243
- control: "boolean",
244
- type: "boolean"
245
- },
246
- "aria-relevant": {
247
- description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
248
- required: !1,
249
- control: "select",
250
- type: "string",
251
- options: [
252
- "text",
253
- "additions",
254
- "additions removals",
255
- "additions text",
256
- "all",
257
- "removals",
258
- "removals additions",
259
- "removals text",
260
- "text additions",
261
- "text removals"
262
- ]
263
- },
264
- "aria-required": {
265
- description: "Indicates that user input is required on the element before a form may be submitted.",
266
- required: !1,
267
- control: "boolean",
268
- type: "boolean"
269
- },
270
- "aria-roledescription": {
271
- description: "Defines a human-readable, author-localized description for the role of an element.",
272
- required: !1,
273
- control: "text",
274
- type: "string"
275
- },
276
- "aria-rowcount": {
277
- description: "Defines the total number of rows in a table, grid, or treegrid.",
278
- required: !1,
279
- control: "number",
280
- type: "number"
281
- },
282
- "aria-rowindex": {
283
- description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
284
- required: !1,
285
- control: "number",
286
- type: "number"
287
- },
288
- "aria-rowindextext": {
289
- description: "Defines a human readable text alternative of aria-rowindex.",
290
- required: !1,
291
- control: "text",
292
- type: "string"
293
- },
294
- "aria-rowspan": {
295
- description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
296
- required: !1,
297
- control: "number",
298
- type: "number"
299
- },
300
- "aria-selected": {
301
- description: 'Indicates the current "selected" state of various widgets.',
302
- required: !1,
303
- control: "boolean",
304
- type: "boolean"
305
- },
306
- "aria-setsize": {
307
- 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.",
308
- required: !1,
309
- control: "number",
310
- type: "number"
311
- },
312
- "aria-sort": {
313
- description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
314
- required: !1,
315
- control: "select",
316
- type: "string",
317
- options: ["none", "ascending", "descending", "other"]
318
- },
319
- "aria-valuemax": {
320
- description: "Defines the maximum allowed value for a range widget.",
321
- required: !1,
322
- control: "number",
323
- type: "number"
324
- },
325
- "aria-valuemin": {
326
- description: "Defines the minimum allowed value for a range widget.",
327
- required: !1,
328
- control: "number",
329
- type: "number"
330
- },
331
- "aria-valuenow": {
332
- description: "Defines the current value for a range widget.",
333
- required: !1,
334
- control: "number",
335
- type: "number"
336
- },
337
- "aria-valuetext": {
338
- description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
339
- required: !1,
340
- control: "text",
341
- type: "string"
342
- },
343
- autoCapitalize: {
344
- required: !1,
345
- control: "text",
346
- type: "string",
347
- description: "Sets whether input is automatically capitalized when entered by user."
348
- },
349
- autoCorrect: { required: !1, control: "text", type: "string" },
350
- autoFocus: {
351
- required: !1,
352
- control: "boolean",
353
- type: "boolean",
354
- description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
355
- },
356
- autoSave: { required: !1, control: "text", type: "string" },
357
- className: { required: !1, control: "text", type: "string" },
358
2
  collapsible: {
359
3
  description: "Whether an accordion item can be collapsed after it has been opened.",
360
4
  required: !1,
@@ -362,25 +6,6 @@ A hint could be a sample value or a brief description of the expected format.`,
362
6
  type: "boolean",
363
7
  defaultValue: !1
364
8
  },
365
- color: {
366
- required: !1,
367
- control: "color",
368
- type: "string",
369
- 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."
370
- },
371
- content: {
372
- required: !1,
373
- control: "text",
374
- type: "string",
375
- description: "A value associated with http-equiv orname depending on the context."
376
- },
377
- contextMenu: {
378
- required: !1,
379
- control: "text",
380
- type: "string",
381
- description: "Defines the ID of a menu element which willserve as the element's context menu."
382
- },
383
- datatype: { required: !1, control: "text", type: "string" },
384
9
  defaultValue: {
385
10
  description: "The value of the item whose content is expanded when the accordion is initially rendered. Use\n`defaultValue` if you do not need to control the state of an accordion.",
386
11
  required: !1,
@@ -401,58 +26,6 @@ A hint could be a sample value or a brief description of the expected format.`,
401
26
  control: "boolean",
402
27
  type: "boolean"
403
28
  },
404
- draggable: {
405
- required: !1,
406
- control: "boolean",
407
- type: "boolean",
408
- description: "Defines whether the element can be dragged."
409
- },
410
- hidden: {
411
- required: !1,
412
- control: "boolean",
413
- type: "boolean",
414
- description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
415
- },
416
- id: {
417
- required: !1,
418
- control: "text",
419
- type: "string",
420
- description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
421
- },
422
- inputMode: {
423
- description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
424
- required: !1,
425
- control: "select",
426
- type: "string",
427
- options: [
428
- "search",
429
- "text",
430
- "none",
431
- "tel",
432
- "url",
433
- "email",
434
- "numeric",
435
- "decimal"
436
- ]
437
- },
438
- is: {
439
- description: "Specify that a standard HTML element should behave like a defined custom built-in element",
440
- required: !1,
441
- control: "text",
442
- type: "string"
443
- },
444
- itemID: { required: !1, control: "text", type: "string" },
445
- itemProp: { required: !1, control: "text", type: "string" },
446
- itemRef: { required: !1, control: "text", type: "string" },
447
- itemScope: { required: !1, control: "boolean", type: "boolean" },
448
- itemType: { required: !1, control: "text", type: "string" },
449
- lang: {
450
- required: !1,
451
- control: "text",
452
- type: "string",
453
- description: "Defines the language used in the element."
454
- },
455
- nonce: { required: !1, control: "text", type: "string" },
456
29
  orientation: {
457
30
  description: "The layout in which the Accordion operates.",
458
31
  required: !1,
@@ -461,2171 +34,31 @@ A hint could be a sample value or a brief description of the expected format.`,
461
34
  defaultValue: "vertical",
462
35
  options: ["horizontal", "vertical"]
463
36
  },
464
- prefix: { required: !1, control: "text", type: "string" },
465
- property: { required: !1, control: "text", type: "string" },
466
- radioGroup: { required: !1, control: "text", type: "string" },
467
- rel: {
468
- required: !1,
469
- control: "text",
470
- type: "string",
471
- description: "Specifies the relationship of the target object to the link object."
472
- },
473
- resource: { required: !1, control: "text", type: "string" },
474
- results: { required: !1, control: "number", type: "number" },
475
- rev: { required: !1, control: "text", type: "string" },
476
- role: {
477
- required: !1,
478
- control: "text",
479
- type: "string",
480
- description: "Defines an explicit role for an element for use by assistive technologies."
481
- },
482
- security: { required: !1, control: "text", type: "string" },
483
- slot: {
37
+ value: {
38
+ description: "The controlled stateful value of the accordion item whose content is expanded.",
484
39
  required: !1,
485
40
  control: "text",
486
- type: "string",
487
- description: "Assigns a slot in a shadow DOM shadow tree to an element."
488
- },
489
- spellCheck: {
490
- required: !1,
491
- control: "boolean",
492
- type: "boolean",
493
- description: "Indicates whether spell checking is allowed for the element."
494
- },
495
- suppressContentEditableWarning: {
496
- required: !1,
497
- control: "boolean",
498
- type: "boolean"
499
- },
500
- suppressHydrationWarning: {
41
+ type: "string"
42
+ }
43
+ }, o = {
44
+ disabled: {
45
+ description: `Whether or not an accordion item is disabled from user interaction.
46
+ @defaultValue false`,
501
47
  required: !1,
502
48
  control: "boolean",
503
49
  type: "boolean"
504
50
  },
505
- tabIndex: {
506
- required: !1,
507
- control: "number",
508
- type: "number",
509
- description: "Overrides the browser's default tab order and follows the one specified instead."
510
- },
511
- title: {
51
+ value: {
512
52
  required: !1,
513
53
  control: "text",
514
54
  type: "string",
515
- description: "Text to be displayed in a tooltip when hovering over the element."
516
- },
517
- translate: {
518
- required: !1,
519
- control: "radio",
520
- type: "string",
521
- options: ["yes", "no"],
522
- 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."
523
- },
524
- typeof: { required: !1, control: "text", type: "string" },
525
- unselectable: {
526
- required: !1,
527
- control: "radio",
528
- type: "string",
529
- options: ["on", "off"]
530
- },
531
- value: {
532
- description: "The controlled stateful value of the accordion item whose content is expanded.",
533
- required: !1,
534
- control: "text",
535
- type: "string"
536
- },
537
- vocab: { required: !1, control: "text", type: "string" }
538
- }, t = {
539
- about: { required: !1, control: "text", type: "string" },
540
- accessKey: {
541
- required: !1,
542
- control: "text",
543
- type: "string",
544
- description: "Keyboard shortcut to activate or add focus to the element."
545
- },
546
- "aria-activedescendant": {
547
- description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
548
- required: !1,
549
- control: "text",
550
- type: "string"
551
- },
552
- "aria-atomic": {
553
- 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.",
554
- required: !1,
555
- control: "boolean",
556
- type: "boolean"
557
- },
558
- "aria-autocomplete": {
559
- 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
560
- presented if they are made.`,
561
- required: !1,
562
- control: "select",
563
- type: "string",
564
- options: ["list", "none", "inline", "both"]
565
- },
566
- "aria-braillelabel": {
567
- description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
568
- required: !1,
569
- control: "text",
570
- type: "string"
571
- },
572
- "aria-brailleroledescription": {
573
- description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
574
- required: !1,
575
- control: "text",
576
- type: "string"
577
- },
578
- "aria-busy": { required: !1, control: "boolean", type: "boolean" },
579
- "aria-checked": {
580
- description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
581
- required: !1,
582
- control: "text",
583
- type: "string"
584
- },
585
- "aria-colcount": {
586
- description: "Defines the total number of columns in a table, grid, or treegrid.",
587
- required: !1,
588
- control: "number",
589
- type: "number"
590
- },
591
- "aria-colindex": {
592
- description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
593
- required: !1,
594
- control: "number",
595
- type: "number"
596
- },
597
- "aria-colindextext": {
598
- description: "Defines a human readable text alternative of aria-colindex.",
599
- required: !1,
600
- control: "text",
601
- type: "string"
602
- },
603
- "aria-colspan": {
604
- description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
605
- required: !1,
606
- control: "number",
607
- type: "number"
608
- },
609
- "aria-controls": {
610
- description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
611
- required: !1,
612
- control: "text",
613
- type: "string"
614
- },
615
- "aria-current": {
616
- description: "Indicates the element that represents the current item within a container or set of related elements.",
617
- required: !1,
618
- control: "text",
619
- type: "string"
620
- },
621
- "aria-describedby": {
622
- description: "Identifies the element (or elements) that describes the object.",
623
- required: !1,
624
- control: "text",
625
- type: "string"
626
- },
627
- "aria-description": {
628
- description: "Defines a string value that describes or annotates the current element.",
629
- required: !1,
630
- control: "text",
631
- type: "string"
632
- },
633
- "aria-details": {
634
- description: "Identifies the element that provides a detailed, extended description for the object.",
635
- required: !1,
636
- control: "text",
637
- type: "string"
638
- },
639
- "aria-disabled": {
640
- description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
641
- required: !1,
642
- control: "boolean",
643
- type: "boolean"
644
- },
645
- "aria-dropeffect": {
646
- description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
647
- required: !1,
648
- control: "select",
649
- type: "string",
650
- options: ["link", "none", "copy", "execute", "move", "popup"]
651
- },
652
- "aria-errormessage": {
653
- description: "Identifies the element that provides an error message for the object.",
654
- required: !1,
655
- control: "text",
656
- type: "string"
657
- },
658
- "aria-expanded": {
659
- description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
660
- required: !1,
661
- control: "boolean",
662
- type: "boolean"
663
- },
664
- "aria-flowto": {
665
- description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
666
- allows assistive technology to override the general default of reading in document source order.`,
667
- required: !1,
668
- control: "text",
669
- type: "string"
670
- },
671
- "aria-grabbed": {
672
- description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
673
- required: !1,
674
- control: "boolean",
675
- type: "boolean"
676
- },
677
- "aria-haspopup": {
678
- description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
679
- required: !1,
680
- control: "text",
681
- type: "string"
682
- },
683
- "aria-hidden": {
684
- description: "Indicates whether the element is exposed to an accessibility API.",
685
- required: !1,
686
- control: "boolean",
687
- type: "boolean"
688
- },
689
- "aria-invalid": {
690
- description: "Indicates the entered value does not conform to the format expected by the application.",
691
- required: !1,
692
- control: "text",
693
- type: "string"
694
- },
695
- "aria-keyshortcuts": {
696
- description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
697
- required: !1,
698
- control: "text",
699
- type: "string"
700
- },
701
- "aria-label": {
702
- description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
703
- required: !1,
704
- control: "text",
705
- type: "string"
706
- },
707
- "aria-labelledby": {
708
- description: "Identifies the element (or elements) that labels the current element.",
709
- required: !1,
710
- control: "text",
711
- type: "string"
712
- },
713
- "aria-level": {
714
- description: "Defines the hierarchical level of an element within a structure.",
715
- required: !1,
716
- control: "number",
717
- type: "number"
718
- },
719
- "aria-live": {
720
- 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.",
721
- required: !1,
722
- control: "radio",
723
- type: "string",
724
- options: ["off", "assertive", "polite"]
725
- },
726
- "aria-modal": {
727
- description: "Indicates whether an element is modal when displayed.",
728
- required: !1,
729
- control: "boolean",
730
- type: "boolean"
731
- },
732
- "aria-multiline": {
733
- description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
734
- required: !1,
735
- control: "boolean",
736
- type: "boolean"
737
- },
738
- "aria-multiselectable": {
739
- description: "Indicates that the user may select more than one item from the current selectable descendants.",
740
- required: !1,
741
- control: "boolean",
742
- type: "boolean"
743
- },
744
- "aria-orientation": {
745
- description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
746
- required: !1,
747
- control: "radio",
748
- type: "string",
749
- options: ["horizontal", "vertical"]
750
- },
751
- "aria-owns": {
752
- description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
753
- between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
754
- required: !1,
755
- control: "text",
756
- type: "string"
757
- },
758
- "aria-placeholder": {
759
- description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
760
- A hint could be a sample value or a brief description of the expected format.`,
761
- required: !1,
762
- control: "text",
763
- type: "string"
764
- },
765
- "aria-posinset": {
766
- 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.",
767
- required: !1,
768
- control: "number",
769
- type: "number"
770
- },
771
- "aria-pressed": {
772
- description: 'Indicates the current "pressed" state of toggle buttons.',
773
- required: !1,
774
- control: "text",
775
- type: "string"
776
- },
777
- "aria-readonly": {
778
- description: "Indicates that the element is not editable, but is otherwise operable.",
779
- required: !1,
780
- control: "boolean",
781
- type: "boolean"
782
- },
783
- "aria-relevant": {
784
- description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
785
- required: !1,
786
- control: "select",
787
- type: "string",
788
- options: [
789
- "text",
790
- "additions",
791
- "additions removals",
792
- "additions text",
793
- "all",
794
- "removals",
795
- "removals additions",
796
- "removals text",
797
- "text additions",
798
- "text removals"
799
- ]
800
- },
801
- "aria-required": {
802
- description: "Indicates that user input is required on the element before a form may be submitted.",
803
- required: !1,
804
- control: "boolean",
805
- type: "boolean"
806
- },
807
- "aria-roledescription": {
808
- description: "Defines a human-readable, author-localized description for the role of an element.",
809
- required: !1,
810
- control: "text",
811
- type: "string"
812
- },
813
- "aria-rowcount": {
814
- description: "Defines the total number of rows in a table, grid, or treegrid.",
815
- required: !1,
816
- control: "number",
817
- type: "number"
818
- },
819
- "aria-rowindex": {
820
- description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
821
- required: !1,
822
- control: "number",
823
- type: "number"
824
- },
825
- "aria-rowindextext": {
826
- description: "Defines a human readable text alternative of aria-rowindex.",
827
- required: !1,
828
- control: "text",
829
- type: "string"
830
- },
831
- "aria-rowspan": {
832
- description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
833
- required: !1,
834
- control: "number",
835
- type: "number"
836
- },
837
- "aria-selected": {
838
- description: 'Indicates the current "selected" state of various widgets.',
839
- required: !1,
840
- control: "boolean",
841
- type: "boolean"
842
- },
843
- "aria-setsize": {
844
- 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.",
845
- required: !1,
846
- control: "number",
847
- type: "number"
848
- },
849
- "aria-sort": {
850
- description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
851
- required: !1,
852
- control: "select",
853
- type: "string",
854
- options: ["none", "ascending", "descending", "other"]
855
- },
856
- "aria-valuemax": {
857
- description: "Defines the maximum allowed value for a range widget.",
858
- required: !1,
859
- control: "number",
860
- type: "number"
861
- },
862
- "aria-valuemin": {
863
- description: "Defines the minimum allowed value for a range widget.",
864
- required: !1,
865
- control: "number",
866
- type: "number"
867
- },
868
- "aria-valuenow": {
869
- description: "Defines the current value for a range widget.",
870
- required: !1,
871
- control: "number",
872
- type: "number"
873
- },
874
- "aria-valuetext": {
875
- description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
876
- required: !1,
877
- control: "text",
878
- type: "string"
879
- },
880
- autoCapitalize: {
881
- required: !1,
882
- control: "text",
883
- type: "string",
884
- description: "Sets whether input is automatically capitalized when entered by user."
885
- },
886
- autoCorrect: { required: !1, control: "text", type: "string" },
887
- autoFocus: {
888
- required: !1,
889
- control: "boolean",
890
- type: "boolean",
891
- description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
892
- },
893
- autoSave: { required: !1, control: "text", type: "string" },
894
- className: { required: !1, control: "text", type: "string" },
895
- color: {
896
- required: !1,
897
- control: "color",
898
- type: "string",
899
- 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."
900
- },
901
- content: {
902
- required: !1,
903
- control: "text",
904
- type: "string",
905
- description: "A value associated with http-equiv orname depending on the context."
906
- },
907
- contextMenu: {
908
- required: !1,
909
- control: "text",
910
- type: "string",
911
- description: "Defines the ID of a menu element which willserve as the element's context menu."
912
- },
913
- datatype: { required: !1, control: "text", type: "string" },
914
- defaultValue: { required: !1, control: "text", type: "string" },
915
- dir: {
916
- required: !1,
917
- control: "text",
918
- type: "string",
919
- description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
920
- },
921
- disabled: {
922
- description: `Whether or not an accordion item is disabled from user interaction.
923
- @defaultValue false`,
924
- required: !1,
925
- control: "boolean",
926
- type: "boolean"
927
- },
928
- draggable: {
929
- required: !1,
930
- control: "boolean",
931
- type: "boolean",
932
- description: "Defines whether the element can be dragged."
933
- },
934
- hidden: {
935
- required: !1,
936
- control: "boolean",
937
- type: "boolean",
938
- description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
939
- },
940
- id: {
941
- required: !1,
942
- control: "text",
943
- type: "string",
944
- description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
945
- },
946
- inputMode: {
947
- description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
948
- required: !1,
949
- control: "select",
950
- type: "string",
951
- options: [
952
- "search",
953
- "text",
954
- "none",
955
- "tel",
956
- "url",
957
- "email",
958
- "numeric",
959
- "decimal"
960
- ]
961
- },
962
- is: {
963
- description: "Specify that a standard HTML element should behave like a defined custom built-in element",
964
- required: !1,
965
- control: "text",
966
- type: "string"
967
- },
968
- itemID: { required: !1, control: "text", type: "string" },
969
- itemProp: { required: !1, control: "text", type: "string" },
970
- itemRef: { required: !1, control: "text", type: "string" },
971
- itemScope: { required: !1, control: "boolean", type: "boolean" },
972
- itemType: { required: !1, control: "text", type: "string" },
973
- lang: {
974
- required: !1,
975
- control: "text",
976
- type: "string",
977
- description: "Defines the language used in the element."
978
- },
979
- nonce: { required: !1, control: "text", type: "string" },
980
- prefix: { required: !1, control: "text", type: "string" },
981
- property: { required: !1, control: "text", type: "string" },
982
- radioGroup: { required: !1, control: "text", type: "string" },
983
- rel: {
984
- required: !1,
985
- control: "text",
986
- type: "string",
987
- description: "Specifies the relationship of the target object to the link object."
988
- },
989
- resource: { required: !1, control: "text", type: "string" },
990
- results: { required: !1, control: "number", type: "number" },
991
- rev: { required: !1, control: "text", type: "string" },
992
- role: {
993
- required: !1,
994
- control: "text",
995
- type: "string",
996
- description: "Defines an explicit role for an element for use by assistive technologies."
997
- },
998
- security: { required: !1, control: "text", type: "string" },
999
- slot: {
1000
- required: !1,
1001
- control: "text",
1002
- type: "string",
1003
- description: "Assigns a slot in a shadow DOM shadow tree to an element."
1004
- },
1005
- spellCheck: {
1006
- required: !1,
1007
- control: "boolean",
1008
- type: "boolean",
1009
- description: "Indicates whether spell checking is allowed for the element."
1010
- },
1011
- suppressContentEditableWarning: {
1012
- required: !1,
1013
- control: "boolean",
1014
- type: "boolean"
1015
- },
1016
- suppressHydrationWarning: {
1017
- required: !1,
1018
- control: "boolean",
1019
- type: "boolean"
1020
- },
1021
- tabIndex: {
1022
- required: !1,
1023
- control: "number",
1024
- type: "number",
1025
- description: "Overrides the browser's default tab order and follows the one specified instead."
1026
- },
1027
- title: {
1028
- required: !1,
1029
- control: "text",
1030
- type: "string",
1031
- description: "Text to be displayed in a tooltip when hovering over the element."
1032
- },
1033
- translate: {
1034
- required: !1,
1035
- control: "radio",
1036
- type: "string",
1037
- options: ["yes", "no"],
1038
- 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."
1039
- },
1040
- typeof: { required: !1, control: "text", type: "string" },
1041
- unselectable: {
1042
- required: !1,
1043
- control: "radio",
1044
- type: "string",
1045
- options: ["on", "off"]
1046
- },
1047
- value: {
1048
- required: !1,
1049
- control: "text",
1050
- type: "string",
1051
- description: "Defines a default value which will be displayed in the element on pageload."
1052
- },
1053
- vocab: { required: !1, control: "text", type: "string" }
1054
- }, r = {
1055
- about: { required: !1, control: "text", type: "string" },
1056
- accessKey: {
1057
- required: !1,
1058
- control: "text",
1059
- type: "string",
1060
- description: "Keyboard shortcut to activate or add focus to the element."
1061
- },
1062
- "aria-activedescendant": {
1063
- description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
1064
- required: !1,
1065
- control: "text",
1066
- type: "string"
1067
- },
1068
- "aria-atomic": {
1069
- 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.",
1070
- required: !1,
1071
- control: "boolean",
1072
- type: "boolean"
1073
- },
1074
- "aria-autocomplete": {
1075
- 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
1076
- presented if they are made.`,
1077
- required: !1,
1078
- control: "select",
1079
- type: "string",
1080
- options: ["list", "none", "inline", "both"]
1081
- },
1082
- "aria-braillelabel": {
1083
- description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
1084
- required: !1,
1085
- control: "text",
1086
- type: "string"
1087
- },
1088
- "aria-brailleroledescription": {
1089
- description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
1090
- required: !1,
1091
- control: "text",
1092
- type: "string"
1093
- },
1094
- "aria-busy": { required: !1, control: "boolean", type: "boolean" },
1095
- "aria-checked": {
1096
- description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
1097
- required: !1,
1098
- control: "text",
1099
- type: "string"
1100
- },
1101
- "aria-colcount": {
1102
- description: "Defines the total number of columns in a table, grid, or treegrid.",
1103
- required: !1,
1104
- control: "number",
1105
- type: "number"
1106
- },
1107
- "aria-colindex": {
1108
- description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
1109
- required: !1,
1110
- control: "number",
1111
- type: "number"
1112
- },
1113
- "aria-colindextext": {
1114
- description: "Defines a human readable text alternative of aria-colindex.",
1115
- required: !1,
1116
- control: "text",
1117
- type: "string"
1118
- },
1119
- "aria-colspan": {
1120
- description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
1121
- required: !1,
1122
- control: "number",
1123
- type: "number"
1124
- },
1125
- "aria-controls": {
1126
- description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
1127
- required: !1,
1128
- control: "text",
1129
- type: "string"
1130
- },
1131
- "aria-current": {
1132
- description: "Indicates the element that represents the current item within a container or set of related elements.",
1133
- required: !1,
1134
- control: "text",
1135
- type: "string"
1136
- },
1137
- "aria-describedby": {
1138
- description: "Identifies the element (or elements) that describes the object.",
1139
- required: !1,
1140
- control: "text",
1141
- type: "string"
1142
- },
1143
- "aria-description": {
1144
- description: "Defines a string value that describes or annotates the current element.",
1145
- required: !1,
1146
- control: "text",
1147
- type: "string"
1148
- },
1149
- "aria-details": {
1150
- description: "Identifies the element that provides a detailed, extended description for the object.",
1151
- required: !1,
1152
- control: "text",
1153
- type: "string"
1154
- },
1155
- "aria-disabled": {
1156
- description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
1157
- required: !1,
1158
- control: "boolean",
1159
- type: "boolean"
1160
- },
1161
- "aria-dropeffect": {
1162
- description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
1163
- required: !1,
1164
- control: "select",
1165
- type: "string",
1166
- options: ["link", "none", "copy", "execute", "move", "popup"]
1167
- },
1168
- "aria-errormessage": {
1169
- description: "Identifies the element that provides an error message for the object.",
1170
- required: !1,
1171
- control: "text",
1172
- type: "string"
1173
- },
1174
- "aria-expanded": {
1175
- description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
1176
- required: !1,
1177
- control: "boolean",
1178
- type: "boolean"
1179
- },
1180
- "aria-flowto": {
1181
- description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
1182
- allows assistive technology to override the general default of reading in document source order.`,
1183
- required: !1,
1184
- control: "text",
1185
- type: "string"
1186
- },
1187
- "aria-grabbed": {
1188
- description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
1189
- required: !1,
1190
- control: "boolean",
1191
- type: "boolean"
1192
- },
1193
- "aria-haspopup": {
1194
- description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
1195
- required: !1,
1196
- control: "text",
1197
- type: "string"
1198
- },
1199
- "aria-hidden": {
1200
- description: "Indicates whether the element is exposed to an accessibility API.",
1201
- required: !1,
1202
- control: "boolean",
1203
- type: "boolean"
1204
- },
1205
- "aria-invalid": {
1206
- description: "Indicates the entered value does not conform to the format expected by the application.",
1207
- required: !1,
1208
- control: "text",
1209
- type: "string"
1210
- },
1211
- "aria-keyshortcuts": {
1212
- description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
1213
- required: !1,
1214
- control: "text",
1215
- type: "string"
1216
- },
1217
- "aria-label": {
1218
- description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
1219
- required: !1,
1220
- control: "text",
1221
- type: "string"
1222
- },
1223
- "aria-labelledby": {
1224
- description: "Identifies the element (or elements) that labels the current element.",
1225
- required: !1,
1226
- control: "text",
1227
- type: "string"
1228
- },
1229
- "aria-level": {
1230
- description: "Defines the hierarchical level of an element within a structure.",
1231
- required: !1,
1232
- control: "number",
1233
- type: "number"
1234
- },
1235
- "aria-live": {
1236
- 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.",
1237
- required: !1,
1238
- control: "radio",
1239
- type: "string",
1240
- options: ["off", "assertive", "polite"]
1241
- },
1242
- "aria-modal": {
1243
- description: "Indicates whether an element is modal when displayed.",
1244
- required: !1,
1245
- control: "boolean",
1246
- type: "boolean"
1247
- },
1248
- "aria-multiline": {
1249
- description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
1250
- required: !1,
1251
- control: "boolean",
1252
- type: "boolean"
1253
- },
1254
- "aria-multiselectable": {
1255
- description: "Indicates that the user may select more than one item from the current selectable descendants.",
1256
- required: !1,
1257
- control: "boolean",
1258
- type: "boolean"
1259
- },
1260
- "aria-orientation": {
1261
- description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
1262
- required: !1,
1263
- control: "radio",
1264
- type: "string",
1265
- options: ["horizontal", "vertical"]
1266
- },
1267
- "aria-owns": {
1268
- description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
1269
- between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
1270
- required: !1,
1271
- control: "text",
1272
- type: "string"
1273
- },
1274
- "aria-placeholder": {
1275
- description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
1276
- A hint could be a sample value or a brief description of the expected format.`,
1277
- required: !1,
1278
- control: "text",
1279
- type: "string"
1280
- },
1281
- "aria-posinset": {
1282
- 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.",
1283
- required: !1,
1284
- control: "number",
1285
- type: "number"
1286
- },
1287
- "aria-pressed": {
1288
- description: 'Indicates the current "pressed" state of toggle buttons.',
1289
- required: !1,
1290
- control: "text",
1291
- type: "string"
1292
- },
1293
- "aria-readonly": {
1294
- description: "Indicates that the element is not editable, but is otherwise operable.",
1295
- required: !1,
1296
- control: "boolean",
1297
- type: "boolean"
1298
- },
1299
- "aria-relevant": {
1300
- description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
1301
- required: !1,
1302
- control: "select",
1303
- type: "string",
1304
- options: [
1305
- "text",
1306
- "additions",
1307
- "additions removals",
1308
- "additions text",
1309
- "all",
1310
- "removals",
1311
- "removals additions",
1312
- "removals text",
1313
- "text additions",
1314
- "text removals"
1315
- ]
1316
- },
1317
- "aria-required": {
1318
- description: "Indicates that user input is required on the element before a form may be submitted.",
1319
- required: !1,
1320
- control: "boolean",
1321
- type: "boolean"
1322
- },
1323
- "aria-roledescription": {
1324
- description: "Defines a human-readable, author-localized description for the role of an element.",
1325
- required: !1,
1326
- control: "text",
1327
- type: "string"
1328
- },
1329
- "aria-rowcount": {
1330
- description: "Defines the total number of rows in a table, grid, or treegrid.",
1331
- required: !1,
1332
- control: "number",
1333
- type: "number"
1334
- },
1335
- "aria-rowindex": {
1336
- description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
1337
- required: !1,
1338
- control: "number",
1339
- type: "number"
1340
- },
1341
- "aria-rowindextext": {
1342
- description: "Defines a human readable text alternative of aria-rowindex.",
1343
- required: !1,
1344
- control: "text",
1345
- type: "string"
1346
- },
1347
- "aria-rowspan": {
1348
- description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
1349
- required: !1,
1350
- control: "number",
1351
- type: "number"
1352
- },
1353
- "aria-selected": {
1354
- description: 'Indicates the current "selected" state of various widgets.',
1355
- required: !1,
1356
- control: "boolean",
1357
- type: "boolean"
1358
- },
1359
- "aria-setsize": {
1360
- 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.",
1361
- required: !1,
1362
- control: "number",
1363
- type: "number"
1364
- },
1365
- "aria-sort": {
1366
- description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
1367
- required: !1,
1368
- control: "select",
1369
- type: "string",
1370
- options: ["none", "ascending", "descending", "other"]
1371
- },
1372
- "aria-valuemax": {
1373
- description: "Defines the maximum allowed value for a range widget.",
1374
- required: !1,
1375
- control: "number",
1376
- type: "number"
1377
- },
1378
- "aria-valuemin": {
1379
- description: "Defines the minimum allowed value for a range widget.",
1380
- required: !1,
1381
- control: "number",
1382
- type: "number"
1383
- },
1384
- "aria-valuenow": {
1385
- description: "Defines the current value for a range widget.",
1386
- required: !1,
1387
- control: "number",
1388
- type: "number"
1389
- },
1390
- "aria-valuetext": {
1391
- description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
1392
- required: !1,
1393
- control: "text",
1394
- type: "string"
1395
- },
1396
- autoCapitalize: {
1397
- required: !1,
1398
- control: "text",
1399
- type: "string",
1400
- description: "Sets whether input is automatically capitalized when entered by user."
1401
- },
1402
- autoCorrect: { required: !1, control: "text", type: "string" },
1403
- autoFocus: {
1404
- required: !1,
1405
- control: "boolean",
1406
- type: "boolean",
1407
- description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
1408
- },
1409
- autoSave: { required: !1, control: "text", type: "string" },
1410
- className: { required: !1, control: "text", type: "string" },
1411
- color: {
1412
- required: !1,
1413
- control: "color",
1414
- type: "string",
1415
- 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."
1416
- },
1417
- content: {
1418
- required: !1,
1419
- control: "text",
1420
- type: "string",
1421
- description: "A value associated with http-equiv orname depending on the context."
1422
- },
1423
- contextMenu: {
1424
- required: !1,
1425
- control: "text",
1426
- type: "string",
1427
- description: "Defines the ID of a menu element which willserve as the element's context menu."
1428
- },
1429
- datatype: { required: !1, control: "text", type: "string" },
1430
- defaultValue: { required: !1, control: "text", type: "string" },
1431
- dir: {
1432
- required: !1,
1433
- control: "text",
1434
- type: "string",
1435
- description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
1436
- },
1437
- draggable: {
1438
- required: !1,
1439
- control: "boolean",
1440
- type: "boolean",
1441
- description: "Defines whether the element can be dragged."
1442
- },
1443
- hidden: {
1444
- required: !1,
1445
- control: "boolean",
1446
- type: "boolean",
1447
- description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
1448
- },
1449
- id: {
1450
- required: !1,
1451
- control: "text",
1452
- type: "string",
1453
- description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
1454
- },
1455
- inputMode: {
1456
- description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
1457
- required: !1,
1458
- control: "select",
1459
- type: "string",
1460
- options: [
1461
- "search",
1462
- "text",
1463
- "none",
1464
- "tel",
1465
- "url",
1466
- "email",
1467
- "numeric",
1468
- "decimal"
1469
- ]
1470
- },
1471
- is: {
1472
- description: "Specify that a standard HTML element should behave like a defined custom built-in element",
1473
- required: !1,
1474
- control: "text",
1475
- type: "string"
1476
- },
1477
- itemID: { required: !1, control: "text", type: "string" },
1478
- itemProp: { required: !1, control: "text", type: "string" },
1479
- itemRef: { required: !1, control: "text", type: "string" },
1480
- itemScope: { required: !1, control: "boolean", type: "boolean" },
1481
- itemType: { required: !1, control: "text", type: "string" },
1482
- lang: {
1483
- required: !1,
1484
- control: "text",
1485
- type: "string",
1486
- description: "Defines the language used in the element."
1487
- },
1488
- nonce: { required: !1, control: "text", type: "string" },
1489
- prefix: { required: !1, control: "text", type: "string" },
1490
- property: { required: !1, control: "text", type: "string" },
1491
- radioGroup: { required: !1, control: "text", type: "string" },
1492
- rel: {
1493
- required: !1,
1494
- control: "text",
1495
- type: "string",
1496
- description: "Specifies the relationship of the target object to the link object."
1497
- },
1498
- resource: { required: !1, control: "text", type: "string" },
1499
- results: { required: !1, control: "number", type: "number" },
1500
- rev: { required: !1, control: "text", type: "string" },
1501
- role: {
1502
- required: !1,
1503
- control: "text",
1504
- type: "string",
1505
- description: "Defines an explicit role for an element for use by assistive technologies."
1506
- },
1507
- security: { required: !1, control: "text", type: "string" },
1508
- slot: {
1509
- required: !1,
1510
- control: "text",
1511
- type: "string",
1512
- description: "Assigns a slot in a shadow DOM shadow tree to an element."
1513
- },
1514
- spellCheck: {
1515
- required: !1,
1516
- control: "boolean",
1517
- type: "boolean",
1518
- description: "Indicates whether spell checking is allowed for the element."
1519
- },
1520
- suppressContentEditableWarning: {
1521
- required: !1,
1522
- control: "boolean",
1523
- type: "boolean"
1524
- },
1525
- suppressHydrationWarning: {
1526
- required: !1,
1527
- control: "boolean",
1528
- type: "boolean"
1529
- },
1530
- tabIndex: {
1531
- required: !1,
1532
- control: "number",
1533
- type: "number",
1534
- description: "Overrides the browser's default tab order and follows the one specified instead."
1535
- },
1536
- title: {
1537
- required: !1,
1538
- control: "text",
1539
- type: "string",
1540
- description: "Text to be displayed in a tooltip when hovering over the element."
1541
- },
1542
- translate: {
1543
- required: !1,
1544
- control: "radio",
1545
- type: "string",
1546
- options: ["yes", "no"],
1547
- 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."
1548
- },
1549
- typeof: { required: !1, control: "text", type: "string" },
1550
- unselectable: {
1551
- required: !1,
1552
- control: "radio",
1553
- type: "string",
1554
- options: ["on", "off"]
1555
- },
1556
- vocab: { required: !1, control: "text", type: "string" }
1557
- }, i = {
1558
- about: { required: !1, control: "text", type: "string" },
1559
- accessKey: {
1560
- required: !1,
1561
- control: "text",
1562
- type: "string",
1563
- description: "Keyboard shortcut to activate or add focus to the element."
1564
- },
1565
- "aria-activedescendant": {
1566
- description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
1567
- required: !1,
1568
- control: "text",
1569
- type: "string"
1570
- },
1571
- "aria-atomic": {
1572
- 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.",
1573
- required: !1,
1574
- control: "boolean",
1575
- type: "boolean"
1576
- },
1577
- "aria-autocomplete": {
1578
- 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
1579
- presented if they are made.`,
1580
- required: !1,
1581
- control: "select",
1582
- type: "string",
1583
- options: ["list", "none", "inline", "both"]
1584
- },
1585
- "aria-braillelabel": {
1586
- description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
1587
- required: !1,
1588
- control: "text",
1589
- type: "string"
1590
- },
1591
- "aria-brailleroledescription": {
1592
- description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
1593
- required: !1,
1594
- control: "text",
1595
- type: "string"
1596
- },
1597
- "aria-busy": { required: !1, control: "boolean", type: "boolean" },
1598
- "aria-checked": {
1599
- description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
1600
- required: !1,
1601
- control: "text",
1602
- type: "string"
1603
- },
1604
- "aria-colcount": {
1605
- description: "Defines the total number of columns in a table, grid, or treegrid.",
1606
- required: !1,
1607
- control: "number",
1608
- type: "number"
1609
- },
1610
- "aria-colindex": {
1611
- description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
1612
- required: !1,
1613
- control: "number",
1614
- type: "number"
1615
- },
1616
- "aria-colindextext": {
1617
- description: "Defines a human readable text alternative of aria-colindex.",
1618
- required: !1,
1619
- control: "text",
1620
- type: "string"
1621
- },
1622
- "aria-colspan": {
1623
- description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
1624
- required: !1,
1625
- control: "number",
1626
- type: "number"
1627
- },
1628
- "aria-controls": {
1629
- description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
1630
- required: !1,
1631
- control: "text",
1632
- type: "string"
1633
- },
1634
- "aria-current": {
1635
- description: "Indicates the element that represents the current item within a container or set of related elements.",
1636
- required: !1,
1637
- control: "text",
1638
- type: "string"
1639
- },
1640
- "aria-describedby": {
1641
- description: "Identifies the element (or elements) that describes the object.",
1642
- required: !1,
1643
- control: "text",
1644
- type: "string"
1645
- },
1646
- "aria-description": {
1647
- description: "Defines a string value that describes or annotates the current element.",
1648
- required: !1,
1649
- control: "text",
1650
- type: "string"
1651
- },
1652
- "aria-details": {
1653
- description: "Identifies the element that provides a detailed, extended description for the object.",
1654
- required: !1,
1655
- control: "text",
1656
- type: "string"
1657
- },
1658
- "aria-disabled": {
1659
- description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
1660
- required: !1,
1661
- control: "boolean",
1662
- type: "boolean"
1663
- },
1664
- "aria-dropeffect": {
1665
- description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
1666
- required: !1,
1667
- control: "select",
1668
- type: "string",
1669
- options: ["link", "none", "copy", "execute", "move", "popup"]
1670
- },
1671
- "aria-errormessage": {
1672
- description: "Identifies the element that provides an error message for the object.",
1673
- required: !1,
1674
- control: "text",
1675
- type: "string"
1676
- },
1677
- "aria-expanded": {
1678
- description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
1679
- required: !1,
1680
- control: "boolean",
1681
- type: "boolean"
1682
- },
1683
- "aria-flowto": {
1684
- description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
1685
- allows assistive technology to override the general default of reading in document source order.`,
1686
- required: !1,
1687
- control: "text",
1688
- type: "string"
1689
- },
1690
- "aria-grabbed": {
1691
- description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
1692
- required: !1,
1693
- control: "boolean",
1694
- type: "boolean"
1695
- },
1696
- "aria-haspopup": {
1697
- description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
1698
- required: !1,
1699
- control: "text",
1700
- type: "string"
1701
- },
1702
- "aria-hidden": {
1703
- description: "Indicates whether the element is exposed to an accessibility API.",
1704
- required: !1,
1705
- control: "boolean",
1706
- type: "boolean"
1707
- },
1708
- "aria-invalid": {
1709
- description: "Indicates the entered value does not conform to the format expected by the application.",
1710
- required: !1,
1711
- control: "text",
1712
- type: "string"
1713
- },
1714
- "aria-keyshortcuts": {
1715
- description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
1716
- required: !1,
1717
- control: "text",
1718
- type: "string"
1719
- },
1720
- "aria-label": {
1721
- description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
1722
- required: !1,
1723
- control: "text",
1724
- type: "string"
1725
- },
1726
- "aria-labelledby": {
1727
- description: "Identifies the element (or elements) that labels the current element.",
1728
- required: !1,
1729
- control: "text",
1730
- type: "string"
1731
- },
1732
- "aria-level": {
1733
- description: "Defines the hierarchical level of an element within a structure.",
1734
- required: !1,
1735
- control: "number",
1736
- type: "number"
1737
- },
1738
- "aria-live": {
1739
- 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.",
1740
- required: !1,
1741
- control: "radio",
1742
- type: "string",
1743
- options: ["off", "assertive", "polite"]
1744
- },
1745
- "aria-modal": {
1746
- description: "Indicates whether an element is modal when displayed.",
1747
- required: !1,
1748
- control: "boolean",
1749
- type: "boolean"
1750
- },
1751
- "aria-multiline": {
1752
- description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
1753
- required: !1,
1754
- control: "boolean",
1755
- type: "boolean"
1756
- },
1757
- "aria-multiselectable": {
1758
- description: "Indicates that the user may select more than one item from the current selectable descendants.",
1759
- required: !1,
1760
- control: "boolean",
1761
- type: "boolean"
1762
- },
1763
- "aria-orientation": {
1764
- description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
1765
- required: !1,
1766
- control: "radio",
1767
- type: "string",
1768
- options: ["horizontal", "vertical"]
1769
- },
1770
- "aria-owns": {
1771
- description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
1772
- between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
1773
- required: !1,
1774
- control: "text",
1775
- type: "string"
1776
- },
1777
- "aria-placeholder": {
1778
- description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
1779
- A hint could be a sample value or a brief description of the expected format.`,
1780
- required: !1,
1781
- control: "text",
1782
- type: "string"
1783
- },
1784
- "aria-posinset": {
1785
- 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.",
1786
- required: !1,
1787
- control: "number",
1788
- type: "number"
1789
- },
1790
- "aria-pressed": {
1791
- description: 'Indicates the current "pressed" state of toggle buttons.',
1792
- required: !1,
1793
- control: "text",
1794
- type: "string"
1795
- },
1796
- "aria-readonly": {
1797
- description: "Indicates that the element is not editable, but is otherwise operable.",
1798
- required: !1,
1799
- control: "boolean",
1800
- type: "boolean"
1801
- },
1802
- "aria-relevant": {
1803
- description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
1804
- required: !1,
1805
- control: "select",
1806
- type: "string",
1807
- options: [
1808
- "text",
1809
- "additions",
1810
- "additions removals",
1811
- "additions text",
1812
- "all",
1813
- "removals",
1814
- "removals additions",
1815
- "removals text",
1816
- "text additions",
1817
- "text removals"
1818
- ]
1819
- },
1820
- "aria-required": {
1821
- description: "Indicates that user input is required on the element before a form may be submitted.",
1822
- required: !1,
1823
- control: "boolean",
1824
- type: "boolean"
1825
- },
1826
- "aria-roledescription": {
1827
- description: "Defines a human-readable, author-localized description for the role of an element.",
1828
- required: !1,
1829
- control: "text",
1830
- type: "string"
1831
- },
1832
- "aria-rowcount": {
1833
- description: "Defines the total number of rows in a table, grid, or treegrid.",
1834
- required: !1,
1835
- control: "number",
1836
- type: "number"
1837
- },
1838
- "aria-rowindex": {
1839
- description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
1840
- required: !1,
1841
- control: "number",
1842
- type: "number"
1843
- },
1844
- "aria-rowindextext": {
1845
- description: "Defines a human readable text alternative of aria-rowindex.",
1846
- required: !1,
1847
- control: "text",
1848
- type: "string"
1849
- },
1850
- "aria-rowspan": {
1851
- description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
1852
- required: !1,
1853
- control: "number",
1854
- type: "number"
1855
- },
1856
- "aria-selected": {
1857
- description: 'Indicates the current "selected" state of various widgets.',
1858
- required: !1,
1859
- control: "boolean",
1860
- type: "boolean"
1861
- },
1862
- "aria-setsize": {
1863
- 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.",
1864
- required: !1,
1865
- control: "number",
1866
- type: "number"
1867
- },
1868
- "aria-sort": {
1869
- description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
1870
- required: !1,
1871
- control: "select",
1872
- type: "string",
1873
- options: ["none", "ascending", "descending", "other"]
1874
- },
1875
- "aria-valuemax": {
1876
- description: "Defines the maximum allowed value for a range widget.",
1877
- required: !1,
1878
- control: "number",
1879
- type: "number"
1880
- },
1881
- "aria-valuemin": {
1882
- description: "Defines the minimum allowed value for a range widget.",
1883
- required: !1,
1884
- control: "number",
1885
- type: "number"
1886
- },
1887
- "aria-valuenow": {
1888
- description: "Defines the current value for a range widget.",
1889
- required: !1,
1890
- control: "number",
1891
- type: "number"
1892
- },
1893
- "aria-valuetext": {
1894
- description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
1895
- required: !1,
1896
- control: "text",
1897
- type: "string"
1898
- },
1899
- autoCapitalize: {
1900
- required: !1,
1901
- control: "text",
1902
- type: "string",
1903
- description: "Sets whether input is automatically capitalized when entered by user."
1904
- },
1905
- autoCorrect: { required: !1, control: "text", type: "string" },
1906
- autoFocus: {
1907
- required: !1,
1908
- control: "boolean",
1909
- type: "boolean",
1910
- description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
1911
- },
1912
- autoSave: { required: !1, control: "text", type: "string" },
1913
- className: { required: !1, control: "text", type: "string" },
1914
- color: {
1915
- required: !1,
1916
- control: "color",
1917
- type: "string",
1918
- 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."
1919
- },
1920
- content: {
1921
- required: !1,
1922
- control: "text",
1923
- type: "string",
1924
- description: "A value associated with http-equiv orname depending on the context."
1925
- },
1926
- contextMenu: {
1927
- required: !1,
1928
- control: "text",
1929
- type: "string",
1930
- description: "Defines the ID of a menu element which willserve as the element's context menu."
1931
- },
1932
- datatype: { required: !1, control: "text", type: "string" },
1933
- defaultValue: { required: !1, control: "text", type: "string" },
1934
- dir: {
1935
- required: !1,
1936
- control: "text",
1937
- type: "string",
1938
- description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
1939
- },
1940
- disabled: {
1941
- required: !1,
1942
- control: "boolean",
1943
- type: "boolean",
1944
- description: "Indicates whether the user can interact with the element."
1945
- },
1946
- draggable: {
1947
- required: !1,
1948
- control: "boolean",
1949
- type: "boolean",
1950
- description: "Defines whether the element can be dragged."
1951
- },
1952
- form: {
1953
- required: !1,
1954
- control: "text",
1955
- type: "string",
1956
- description: "Indicates the form that is the owner of the element."
1957
- },
1958
- formAction: {
1959
- required: !1,
1960
- control: "text",
1961
- type: "string",
1962
- description: "Indicates the action of the element, overriding the action defined inthe form."
1963
- },
1964
- formEncType: {
1965
- required: !1,
1966
- control: "text",
1967
- type: "string",
1968
- 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.`
1969
- },
1970
- formMethod: {
1971
- required: !1,
1972
- control: "text",
1973
- type: "string",
1974
- 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.`
1975
- },
1976
- formNoValidate: {
1977
- required: !1,
1978
- control: "boolean",
1979
- type: "boolean",
1980
- 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.`
1981
- },
1982
- formTarget: {
1983
- required: !1,
1984
- control: "text",
1985
- type: "string",
1986
- 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.`
1987
- },
1988
- hidden: {
1989
- required: !1,
1990
- control: "boolean",
1991
- type: "boolean",
1992
- description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
1993
- },
1994
- id: {
1995
- required: !1,
1996
- control: "text",
1997
- type: "string",
1998
- description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
1999
- },
2000
- inputMode: {
2001
- description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
2002
- required: !1,
2003
- control: "select",
2004
- type: "string",
2005
- options: [
2006
- "search",
2007
- "text",
2008
- "none",
2009
- "tel",
2010
- "url",
2011
- "email",
2012
- "numeric",
2013
- "decimal"
2014
- ]
2015
- },
2016
- is: {
2017
- description: "Specify that a standard HTML element should behave like a defined custom built-in element",
2018
- required: !1,
2019
- control: "text",
2020
- type: "string"
2021
- },
2022
- itemID: { required: !1, control: "text", type: "string" },
2023
- itemProp: { required: !1, control: "text", type: "string" },
2024
- itemRef: { required: !1, control: "text", type: "string" },
2025
- itemScope: { required: !1, control: "boolean", type: "boolean" },
2026
- itemType: { required: !1, control: "text", type: "string" },
2027
- lang: {
2028
- required: !1,
2029
- control: "text",
2030
- type: "string",
2031
- description: "Defines the language used in the element."
2032
- },
2033
- name: {
2034
- required: !1,
2035
- control: "text",
2036
- type: "string",
2037
- 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)."
2038
- },
2039
- nonce: { required: !1, control: "text", type: "string" },
2040
- prefix: { required: !1, control: "text", type: "string" },
2041
- property: { required: !1, control: "text", type: "string" },
2042
- radioGroup: { required: !1, control: "text", type: "string" },
2043
- rel: {
2044
- required: !1,
2045
- control: "text",
2046
- type: "string",
2047
- description: "Specifies the relationship of the target object to the link object."
2048
- },
2049
- resource: { required: !1, control: "text", type: "string" },
2050
- results: { required: !1, control: "number", type: "number" },
2051
- rev: { required: !1, control: "text", type: "string" },
2052
- role: {
2053
- required: !1,
2054
- control: "text",
2055
- type: "string",
2056
- description: "Defines an explicit role for an element for use by assistive technologies."
2057
- },
2058
- security: { required: !1, control: "text", type: "string" },
2059
- slot: {
2060
- required: !1,
2061
- control: "text",
2062
- type: "string",
2063
- description: "Assigns a slot in a shadow DOM shadow tree to an element."
2064
- },
2065
- spellCheck: {
2066
- required: !1,
2067
- control: "boolean",
2068
- type: "boolean",
2069
- description: "Indicates whether spell checking is allowed for the element."
2070
- },
2071
- suppressContentEditableWarning: {
2072
- required: !1,
2073
- control: "boolean",
2074
- type: "boolean"
2075
- },
2076
- suppressHydrationWarning: {
2077
- required: !1,
2078
- control: "boolean",
2079
- type: "boolean"
2080
- },
2081
- tabIndex: {
2082
- required: !1,
2083
- control: "number",
2084
- type: "number",
2085
- description: "Overrides the browser's default tab order and follows the one specified instead."
2086
- },
2087
- title: {
2088
- required: !1,
2089
- control: "text",
2090
- type: "string",
2091
- description: "Text to be displayed in a tooltip when hovering over the element."
2092
- },
2093
- translate: {
2094
- required: !1,
2095
- control: "radio",
2096
- type: "string",
2097
- options: ["yes", "no"],
2098
- 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."
2099
- },
2100
- type: {
2101
- required: !1,
2102
- control: "radio",
2103
- type: "string",
2104
- options: ["button", "submit", "reset"],
2105
- description: "Defines the type of the element."
2106
- },
2107
- typeof: { required: !1, control: "text", type: "string" },
2108
- unselectable: {
2109
- required: !1,
2110
- control: "radio",
2111
- type: "string",
2112
- options: ["on", "off"]
2113
- },
2114
- value: {
2115
- required: !1,
2116
- control: "text",
2117
- type: "string",
2118
- description: "Defines a default value which will be displayed in the element on pageload."
2119
- },
2120
- vocab: { required: !1, control: "text", type: "string" }
2121
- }, n = {
2122
- about: { required: !1, control: "text", type: "string" },
2123
- accessKey: {
2124
- required: !1,
2125
- control: "text",
2126
- type: "string",
2127
- description: "Keyboard shortcut to activate or add focus to the element."
2128
- },
2129
- "aria-activedescendant": {
2130
- description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
2131
- required: !1,
2132
- control: "text",
2133
- type: "string"
2134
- },
2135
- "aria-atomic": {
2136
- 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.",
2137
- required: !1,
2138
- control: "boolean",
2139
- type: "boolean"
2140
- },
2141
- "aria-autocomplete": {
2142
- 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
2143
- presented if they are made.`,
2144
- required: !1,
2145
- control: "select",
2146
- type: "string",
2147
- options: ["list", "none", "inline", "both"]
2148
- },
2149
- "aria-braillelabel": {
2150
- description: "Defines a string value that labels the current element, which is intended to be converted into Braille.",
2151
- required: !1,
2152
- control: "text",
2153
- type: "string"
2154
- },
2155
- "aria-brailleroledescription": {
2156
- description: "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.",
2157
- required: !1,
2158
- control: "text",
2159
- type: "string"
2160
- },
2161
- "aria-busy": { required: !1, control: "boolean", type: "boolean" },
2162
- "aria-checked": {
2163
- description: 'Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.',
2164
- required: !1,
2165
- control: "text",
2166
- type: "string"
2167
- },
2168
- "aria-colcount": {
2169
- description: "Defines the total number of columns in a table, grid, or treegrid.",
2170
- required: !1,
2171
- control: "number",
2172
- type: "number"
2173
- },
2174
- "aria-colindex": {
2175
- description: "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.",
2176
- required: !1,
2177
- control: "number",
2178
- type: "number"
2179
- },
2180
- "aria-colindextext": {
2181
- description: "Defines a human readable text alternative of aria-colindex.",
2182
- required: !1,
2183
- control: "text",
2184
- type: "string"
2185
- },
2186
- "aria-colspan": {
2187
- description: "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.",
2188
- required: !1,
2189
- control: "number",
2190
- type: "number"
2191
- },
2192
- "aria-controls": {
2193
- description: "Identifies the element (or elements) whose contents or presence are controlled by the current element.",
2194
- required: !1,
2195
- control: "text",
2196
- type: "string"
2197
- },
2198
- "aria-current": {
2199
- description: "Indicates the element that represents the current item within a container or set of related elements.",
2200
- required: !1,
2201
- control: "text",
2202
- type: "string"
2203
- },
2204
- "aria-describedby": {
2205
- description: "Identifies the element (or elements) that describes the object.",
2206
- required: !1,
2207
- control: "text",
2208
- type: "string"
2209
- },
2210
- "aria-description": {
2211
- description: "Defines a string value that describes or annotates the current element.",
2212
- required: !1,
2213
- control: "text",
2214
- type: "string"
2215
- },
2216
- "aria-details": {
2217
- description: "Identifies the element that provides a detailed, extended description for the object.",
2218
- required: !1,
2219
- control: "text",
2220
- type: "string"
2221
- },
2222
- "aria-disabled": {
2223
- description: "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.",
2224
- required: !1,
2225
- control: "boolean",
2226
- type: "boolean"
2227
- },
2228
- "aria-dropeffect": {
2229
- description: "Indicates what functions can be performed when a dragged object is released on the drop target.",
2230
- required: !1,
2231
- control: "select",
2232
- type: "string",
2233
- options: ["link", "none", "copy", "execute", "move", "popup"]
2234
- },
2235
- "aria-errormessage": {
2236
- description: "Identifies the element that provides an error message for the object.",
2237
- required: !1,
2238
- control: "text",
2239
- type: "string"
2240
- },
2241
- "aria-expanded": {
2242
- description: "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.",
2243
- required: !1,
2244
- control: "boolean",
2245
- type: "boolean"
2246
- },
2247
- "aria-flowto": {
2248
- description: `Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
2249
- allows assistive technology to override the general default of reading in document source order.`,
2250
- required: !1,
2251
- control: "text",
2252
- type: "string"
2253
- },
2254
- "aria-grabbed": {
2255
- description: `Indicates an element's "grabbed" state in a drag-and-drop operation.`,
2256
- required: !1,
2257
- control: "boolean",
2258
- type: "boolean"
2259
- },
2260
- "aria-haspopup": {
2261
- description: "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.",
2262
- required: !1,
2263
- control: "text",
2264
- type: "string"
2265
- },
2266
- "aria-hidden": {
2267
- description: "Indicates whether the element is exposed to an accessibility API.",
2268
- required: !1,
2269
- control: "boolean",
2270
- type: "boolean"
2271
- },
2272
- "aria-invalid": {
2273
- description: "Indicates the entered value does not conform to the format expected by the application.",
2274
- required: !1,
2275
- control: "text",
2276
- type: "string"
2277
- },
2278
- "aria-keyshortcuts": {
2279
- description: "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.",
2280
- required: !1,
2281
- control: "text",
2282
- type: "string"
2283
- },
2284
- "aria-label": {
2285
- description: "Provides the accessible name that describes an interactive element if no other accessible name exists, for example in a button that contains an image with no text.",
2286
- required: !1,
2287
- control: "text",
2288
- type: "string"
2289
- },
2290
- "aria-labelledby": {
2291
- description: "Identifies the element (or elements) that labels the current element.",
2292
- required: !1,
2293
- control: "text",
2294
- type: "string"
2295
- },
2296
- "aria-level": {
2297
- description: "Defines the hierarchical level of an element within a structure.",
2298
- required: !1,
2299
- control: "number",
2300
- type: "number"
2301
- },
2302
- "aria-live": {
2303
- 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.",
2304
- required: !1,
2305
- control: "radio",
2306
- type: "string",
2307
- options: ["off", "assertive", "polite"]
2308
- },
2309
- "aria-modal": {
2310
- description: "Indicates whether an element is modal when displayed.",
2311
- required: !1,
2312
- control: "boolean",
2313
- type: "boolean"
2314
- },
2315
- "aria-multiline": {
2316
- description: "Indicates whether a text box accepts multiple lines of input or only a single line.",
2317
- required: !1,
2318
- control: "boolean",
2319
- type: "boolean"
2320
- },
2321
- "aria-multiselectable": {
2322
- description: "Indicates that the user may select more than one item from the current selectable descendants.",
2323
- required: !1,
2324
- control: "boolean",
2325
- type: "boolean"
2326
- },
2327
- "aria-orientation": {
2328
- description: "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.",
2329
- required: !1,
2330
- control: "radio",
2331
- type: "string",
2332
- options: ["horizontal", "vertical"]
2333
- },
2334
- "aria-owns": {
2335
- description: `Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
2336
- between DOM elements where the DOM hierarchy cannot be used to represent the relationship.`,
2337
- required: !1,
2338
- control: "text",
2339
- type: "string"
2340
- },
2341
- "aria-placeholder": {
2342
- description: `Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
2343
- A hint could be a sample value or a brief description of the expected format.`,
2344
- required: !1,
2345
- control: "text",
2346
- type: "string"
2347
- },
2348
- "aria-posinset": {
2349
- 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.",
2350
- required: !1,
2351
- control: "number",
2352
- type: "number"
2353
- },
2354
- "aria-pressed": {
2355
- description: 'Indicates the current "pressed" state of toggle buttons.',
2356
- required: !1,
2357
- control: "text",
2358
- type: "string"
2359
- },
2360
- "aria-readonly": {
2361
- description: "Indicates that the element is not editable, but is otherwise operable.",
2362
- required: !1,
2363
- control: "boolean",
2364
- type: "boolean"
2365
- },
2366
- "aria-relevant": {
2367
- description: "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.",
2368
- required: !1,
2369
- control: "select",
2370
- type: "string",
2371
- options: [
2372
- "text",
2373
- "additions",
2374
- "additions removals",
2375
- "additions text",
2376
- "all",
2377
- "removals",
2378
- "removals additions",
2379
- "removals text",
2380
- "text additions",
2381
- "text removals"
2382
- ]
2383
- },
2384
- "aria-required": {
2385
- description: "Indicates that user input is required on the element before a form may be submitted.",
2386
- required: !1,
2387
- control: "boolean",
2388
- type: "boolean"
2389
- },
2390
- "aria-roledescription": {
2391
- description: "Defines a human-readable, author-localized description for the role of an element.",
2392
- required: !1,
2393
- control: "text",
2394
- type: "string"
2395
- },
2396
- "aria-rowcount": {
2397
- description: "Defines the total number of rows in a table, grid, or treegrid.",
2398
- required: !1,
2399
- control: "number",
2400
- type: "number"
2401
- },
2402
- "aria-rowindex": {
2403
- description: "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.",
2404
- required: !1,
2405
- control: "number",
2406
- type: "number"
2407
- },
2408
- "aria-rowindextext": {
2409
- description: "Defines a human readable text alternative of aria-rowindex.",
2410
- required: !1,
2411
- control: "text",
2412
- type: "string"
2413
- },
2414
- "aria-rowspan": {
2415
- description: "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.",
2416
- required: !1,
2417
- control: "number",
2418
- type: "number"
2419
- },
2420
- "aria-selected": {
2421
- description: 'Indicates the current "selected" state of various widgets.',
2422
- required: !1,
2423
- control: "boolean",
2424
- type: "boolean"
2425
- },
2426
- "aria-setsize": {
2427
- 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.",
2428
- required: !1,
2429
- control: "number",
2430
- type: "number"
2431
- },
2432
- "aria-sort": {
2433
- description: "Indicates if items in a table or grid are sorted in ascending or descending order.",
2434
- required: !1,
2435
- control: "select",
2436
- type: "string",
2437
- options: ["none", "ascending", "descending", "other"]
2438
- },
2439
- "aria-valuemax": {
2440
- description: "Defines the maximum allowed value for a range widget.",
2441
- required: !1,
2442
- control: "number",
2443
- type: "number"
2444
- },
2445
- "aria-valuemin": {
2446
- description: "Defines the minimum allowed value for a range widget.",
2447
- required: !1,
2448
- control: "number",
2449
- type: "number"
2450
- },
2451
- "aria-valuenow": {
2452
- description: "Defines the current value for a range widget.",
2453
- required: !1,
2454
- control: "number",
2455
- type: "number"
2456
- },
2457
- "aria-valuetext": {
2458
- description: "Defines the human readable text alternative of aria-valuenow for a range widget.",
2459
- required: !1,
2460
- control: "text",
2461
- type: "string"
2462
- },
2463
- autoCapitalize: {
2464
- required: !1,
2465
- control: "text",
2466
- type: "string",
2467
- description: "Sets whether input is automatically capitalized when entered by user."
2468
- },
2469
- autoCorrect: { required: !1, control: "text", type: "string" },
2470
- autoFocus: {
2471
- required: !1,
2472
- control: "boolean",
2473
- type: "boolean",
2474
- description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
2475
- },
2476
- autoSave: { required: !1, control: "text", type: "string" },
2477
- className: { required: !1, control: "text", type: "string" },
2478
- color: {
2479
- required: !1,
2480
- control: "color",
2481
- type: "string",
2482
- 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."
2483
- },
2484
- content: {
2485
- required: !1,
2486
- control: "text",
2487
- type: "string",
2488
- description: "A value associated with http-equiv orname depending on the context."
2489
- },
2490
- contextMenu: {
2491
- required: !1,
2492
- control: "text",
2493
- type: "string",
2494
- description: "Defines the ID of a menu element which willserve as the element's context menu."
2495
- },
2496
- datatype: { required: !1, control: "text", type: "string" },
2497
- defaultValue: { required: !1, control: "text", type: "string" },
2498
- dir: {
2499
- required: !1,
2500
- control: "text",
2501
- type: "string",
2502
- description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
2503
- },
2504
- draggable: {
2505
- required: !1,
2506
- control: "boolean",
2507
- type: "boolean",
2508
- description: "Defines whether the element can be dragged."
2509
- },
2510
- hidden: {
2511
- required: !1,
2512
- control: "boolean",
2513
- type: "boolean",
2514
- description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
2515
- },
2516
- id: {
2517
- required: !1,
2518
- control: "text",
2519
- type: "string",
2520
- description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
2521
- },
2522
- inputMode: {
2523
- description: "Hints at the type of data that might be entered by the user while editing the element or its contents",
2524
- required: !1,
2525
- control: "select",
2526
- type: "string",
2527
- options: [
2528
- "search",
2529
- "text",
2530
- "none",
2531
- "tel",
2532
- "url",
2533
- "email",
2534
- "numeric",
2535
- "decimal"
2536
- ]
2537
- },
2538
- is: {
2539
- description: "Specify that a standard HTML element should behave like a defined custom built-in element",
2540
- required: !1,
2541
- control: "text",
2542
- type: "string"
2543
- },
2544
- itemID: { required: !1, control: "text", type: "string" },
2545
- itemProp: { required: !1, control: "text", type: "string" },
2546
- itemRef: { required: !1, control: "text", type: "string" },
2547
- itemScope: { required: !1, control: "boolean", type: "boolean" },
2548
- itemType: { required: !1, control: "text", type: "string" },
2549
- lang: {
2550
- required: !1,
2551
- control: "text",
2552
- type: "string",
2553
- description: "Defines the language used in the element."
2554
- },
2555
- nonce: { required: !1, control: "text", type: "string" },
2556
- prefix: { required: !1, control: "text", type: "string" },
2557
- property: { required: !1, control: "text", type: "string" },
2558
- radioGroup: { required: !1, control: "text", type: "string" },
2559
- rel: {
2560
- required: !1,
2561
- control: "text",
2562
- type: "string",
2563
- description: "Specifies the relationship of the target object to the link object."
2564
- },
2565
- resource: { required: !1, control: "text", type: "string" },
2566
- results: { required: !1, control: "number", type: "number" },
2567
- rev: { required: !1, control: "text", type: "string" },
2568
- role: {
2569
- required: !1,
2570
- control: "text",
2571
- type: "string",
2572
- description: "Defines an explicit role for an element for use by assistive technologies."
2573
- },
2574
- security: { required: !1, control: "text", type: "string" },
2575
- slot: {
2576
- required: !1,
2577
- control: "text",
2578
- type: "string",
2579
- description: "Assigns a slot in a shadow DOM shadow tree to an element."
2580
- },
2581
- spellCheck: {
2582
- required: !1,
2583
- control: "boolean",
2584
- type: "boolean",
2585
- description: "Indicates whether spell checking is allowed for the element."
2586
- },
2587
- suppressContentEditableWarning: {
2588
- required: !1,
2589
- control: "boolean",
2590
- type: "boolean"
2591
- },
2592
- suppressHydrationWarning: {
2593
- required: !1,
2594
- control: "boolean",
2595
- type: "boolean"
2596
- },
2597
- tabIndex: {
2598
- required: !1,
2599
- control: "number",
2600
- type: "number",
2601
- description: "Overrides the browser's default tab order and follows the one specified instead."
2602
- },
2603
- title: {
2604
- required: !1,
2605
- control: "text",
2606
- type: "string",
2607
- description: "Text to be displayed in a tooltip when hovering over the element."
2608
- },
2609
- translate: {
2610
- required: !1,
2611
- control: "radio",
2612
- type: "string",
2613
- options: ["yes", "no"],
2614
- 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."
2615
- },
2616
- typeof: { required: !1, control: "text", type: "string" },
2617
- unselectable: {
2618
- required: !1,
2619
- control: "radio",
2620
- type: "string",
2621
- options: ["on", "off"]
2622
- },
2623
- vocab: { required: !1, control: "text", type: "string" }
2624
- };
55
+ description: "Current value of the element"
56
+ }
57
+ }, t = {}, r = {}, n = {};
2625
58
  export {
2626
59
  e as propsAccordion,
2627
60
  n as propsAccordionContent,
2628
- r as propsAccordionHeader,
2629
- t as propsAccordionItem,
2630
- i as propsAccordionTrigger
61
+ t as propsAccordionHeader,
62
+ o as propsAccordionItem,
63
+ r as propsAccordionTrigger
2631
64
  };