@webstudio-is/sdk-components-react-radix 0.88.0 → 0.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__generated__/accordion.props.js +605 -109
- package/lib/__generated__/button.props.js +161 -29
- package/lib/__generated__/checkbox.props.js +284 -51
- package/lib/__generated__/collapsible.props.js +234 -42
- package/lib/__generated__/dialog.props.js +611 -110
- package/lib/__generated__/input.props.js +264 -47
- package/lib/__generated__/label.props.js +123 -22
- package/lib/__generated__/navigation-menu.props.js +563 -102
- package/lib/__generated__/popover.props.js +129 -25
- package/lib/__generated__/radio-group.props.js +421 -76
- package/lib/__generated__/select.props.js +876 -160
- package/lib/__generated__/sheet.props.js +591 -110
- package/lib/__generated__/switch.props.js +284 -51
- package/lib/__generated__/tabs.props.js +506 -91
- package/lib/__generated__/textarea.props.js +177 -31
- package/lib/__generated__/tooltip.props.js +131 -27
- package/lib/accordion.ws.js +1 -0
- package/lib/checkbox.ws.js +2 -0
- package/lib/cjs/__generated__/accordion.props.js +605 -109
- package/lib/cjs/__generated__/button.props.js +161 -29
- package/lib/cjs/__generated__/checkbox.props.js +284 -51
- package/lib/cjs/__generated__/collapsible.props.js +234 -42
- package/lib/cjs/__generated__/dialog.props.js +611 -110
- package/lib/cjs/__generated__/input.props.js +264 -47
- package/lib/cjs/__generated__/label.props.js +123 -22
- package/lib/cjs/__generated__/navigation-menu.props.js +563 -102
- package/lib/cjs/__generated__/popover.props.js +129 -25
- package/lib/cjs/__generated__/radio-group.props.js +421 -76
- package/lib/cjs/__generated__/select.props.js +875 -159
- package/lib/cjs/__generated__/sheet.props.js +591 -110
- package/lib/cjs/__generated__/switch.props.js +284 -51
- package/lib/cjs/__generated__/tabs.props.js +506 -91
- package/lib/cjs/__generated__/textarea.props.js +177 -31
- package/lib/cjs/__generated__/tooltip.props.js +131 -27
- package/lib/cjs/accordion.ws.js +1 -0
- package/lib/cjs/checkbox.ws.js +2 -0
- package/lib/cjs/collapsible.ws.js +1 -0
- package/lib/cjs/dialog.ws.js +1 -0
- package/lib/cjs/label.ws.js +1 -0
- package/lib/cjs/navigation-menu.ws.js +1 -0
- package/lib/cjs/popover.ws.js +1 -0
- package/lib/cjs/props-descriptions.js +56 -0
- package/lib/cjs/radio-group.ws.js +3 -0
- package/lib/cjs/select.js +3 -1
- package/lib/cjs/select.ws.js +1 -0
- package/lib/cjs/sheet.ws.js +1 -0
- package/lib/cjs/switch.ws.js +2 -0
- package/lib/cjs/tabs.ws.js +1 -0
- package/lib/cjs/tooltip.ws.js +1 -0
- package/lib/collapsible.ws.js +1 -0
- package/lib/dialog.ws.js +1 -0
- package/lib/label.ws.js +1 -0
- package/lib/navigation-menu.ws.js +1 -0
- package/lib/popover.ws.js +1 -0
- package/lib/props-descriptions.js +36 -0
- package/lib/radio-group.ws.js +3 -0
- package/lib/select.js +3 -1
- package/lib/select.ws.js +1 -0
- package/lib/sheet.ws.js +1 -0
- package/lib/switch.ws.js +2 -0
- package/lib/tabs.ws.js +1 -0
- package/lib/tooltip.ws.js +1 -0
- package/lib/types/props-descriptions.d.ts +29 -0
- package/lib/types/select.d.ts +4 -2
- package/package.json +6 -6
- package/src/__generated__/accordion.props.ts +675 -103
- package/src/__generated__/button.props.ts +180 -27
- package/src/__generated__/checkbox.props.ts +317 -48
- package/src/__generated__/collapsible.props.ts +261 -40
- package/src/__generated__/dialog.props.ts +682 -104
- package/src/__generated__/input.props.ts +292 -44
- package/src/__generated__/label.props.ts +137 -21
- package/src/__generated__/navigation-menu.props.ts +629 -96
- package/src/__generated__/popover.props.ts +142 -21
- package/src/__generated__/radio-group.props.ts +470 -71
- package/src/__generated__/select.props.ts +979 -153
- package/src/__generated__/sheet.props.ts +657 -99
- package/src/__generated__/switch.props.ts +317 -48
- package/src/__generated__/tabs.props.ts +565 -86
- package/src/__generated__/textarea.props.ts +195 -30
- package/src/__generated__/tooltip.props.ts +145 -23
- package/src/accordion.ws.ts +2 -0
- package/src/checkbox.ws.ts +3 -0
- package/src/collapsible.ws.ts +2 -0
- package/src/dialog.ws.tsx +2 -0
- package/src/label.ws.ts +2 -0
- package/src/navigation-menu.ws.ts +1 -0
- package/src/popover.ws.tsx +1 -0
- package/src/props-descriptions.ts +43 -0
- package/src/radio-group.ws.ts +4 -0
- package/src/select.tsx +8 -3
- package/src/select.ws.ts +2 -0
- package/src/sheet.ws.tsx +2 -0
- package/src/switch.ws.ts +3 -0
- package/src/tabs.ws.ts +2 -0
- package/src/tooltip.ws.tsx +2 -0
|
@@ -27,7 +27,12 @@ __export(accordion_props_exports, {
|
|
|
27
27
|
module.exports = __toCommonJS(accordion_props_exports);
|
|
28
28
|
const propsAccordion = {
|
|
29
29
|
about: { required: false, control: "text", type: "string" },
|
|
30
|
-
accessKey: {
|
|
30
|
+
accessKey: {
|
|
31
|
+
required: false,
|
|
32
|
+
control: "text",
|
|
33
|
+
type: "string",
|
|
34
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
35
|
+
},
|
|
31
36
|
"aria-activedescendant": {
|
|
32
37
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
33
38
|
required: false,
|
|
@@ -183,7 +188,7 @@ const propsAccordion = {
|
|
|
183
188
|
type: "string"
|
|
184
189
|
},
|
|
185
190
|
"aria-label": {
|
|
186
|
-
description: "
|
|
191
|
+
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.",
|
|
187
192
|
required: false,
|
|
188
193
|
control: "text",
|
|
189
194
|
type: "string"
|
|
@@ -359,14 +364,39 @@ const propsAccordion = {
|
|
|
359
364
|
control: "text",
|
|
360
365
|
type: "string"
|
|
361
366
|
},
|
|
362
|
-
autoCapitalize: {
|
|
367
|
+
autoCapitalize: {
|
|
368
|
+
required: false,
|
|
369
|
+
control: "text",
|
|
370
|
+
type: "string",
|
|
371
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
372
|
+
},
|
|
363
373
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
364
|
-
autoFocus: {
|
|
374
|
+
autoFocus: {
|
|
375
|
+
required: false,
|
|
376
|
+
control: "boolean",
|
|
377
|
+
type: "boolean",
|
|
378
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
379
|
+
},
|
|
365
380
|
autoSave: { required: false, control: "text", type: "string" },
|
|
366
381
|
className: { required: false, control: "text", type: "string" },
|
|
367
|
-
color: {
|
|
368
|
-
|
|
369
|
-
|
|
382
|
+
color: {
|
|
383
|
+
required: false,
|
|
384
|
+
control: "color",
|
|
385
|
+
type: "string",
|
|
386
|
+
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."
|
|
387
|
+
},
|
|
388
|
+
content: {
|
|
389
|
+
required: false,
|
|
390
|
+
control: "text",
|
|
391
|
+
type: "string",
|
|
392
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
393
|
+
},
|
|
394
|
+
contextMenu: {
|
|
395
|
+
required: false,
|
|
396
|
+
control: "text",
|
|
397
|
+
type: "string",
|
|
398
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
399
|
+
},
|
|
370
400
|
datatype: { required: false, control: "text", type: "string" },
|
|
371
401
|
dir: {
|
|
372
402
|
description: "The language read direction.",
|
|
@@ -381,9 +411,24 @@ const propsAccordion = {
|
|
|
381
411
|
control: "boolean",
|
|
382
412
|
type: "boolean"
|
|
383
413
|
},
|
|
384
|
-
draggable: {
|
|
385
|
-
|
|
386
|
-
|
|
414
|
+
draggable: {
|
|
415
|
+
required: false,
|
|
416
|
+
control: "boolean",
|
|
417
|
+
type: "boolean",
|
|
418
|
+
description: "Defines whether the element can be dragged."
|
|
419
|
+
},
|
|
420
|
+
hidden: {
|
|
421
|
+
required: false,
|
|
422
|
+
control: "boolean",
|
|
423
|
+
type: "boolean",
|
|
424
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
425
|
+
},
|
|
426
|
+
id: {
|
|
427
|
+
required: false,
|
|
428
|
+
control: "text",
|
|
429
|
+
type: "string",
|
|
430
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
431
|
+
},
|
|
387
432
|
inputMode: {
|
|
388
433
|
description: "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
389
434
|
required: false,
|
|
@@ -411,7 +456,12 @@ const propsAccordion = {
|
|
|
411
456
|
itemRef: { required: false, control: "text", type: "string" },
|
|
412
457
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
413
458
|
itemType: { required: false, control: "text", type: "string" },
|
|
414
|
-
lang: {
|
|
459
|
+
lang: {
|
|
460
|
+
required: false,
|
|
461
|
+
control: "text",
|
|
462
|
+
type: "string",
|
|
463
|
+
description: "Defines the language used in the element."
|
|
464
|
+
},
|
|
415
465
|
nonce: { required: false, control: "text", type: "string" },
|
|
416
466
|
orientation: {
|
|
417
467
|
description: "The layout in which the Accordion operates.",
|
|
@@ -421,18 +471,43 @@ const propsAccordion = {
|
|
|
421
471
|
defaultValue: "vertical",
|
|
422
472
|
options: ["horizontal", "vertical"]
|
|
423
473
|
},
|
|
424
|
-
placeholder: {
|
|
474
|
+
placeholder: {
|
|
475
|
+
required: false,
|
|
476
|
+
control: "text",
|
|
477
|
+
type: "string",
|
|
478
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
479
|
+
},
|
|
425
480
|
prefix: { required: false, control: "text", type: "string" },
|
|
426
481
|
property: { required: false, control: "text", type: "string" },
|
|
427
482
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
428
|
-
rel: {
|
|
483
|
+
rel: {
|
|
484
|
+
required: false,
|
|
485
|
+
control: "text",
|
|
486
|
+
type: "string",
|
|
487
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
488
|
+
},
|
|
429
489
|
resource: { required: false, control: "text", type: "string" },
|
|
430
490
|
results: { required: false, control: "number", type: "number" },
|
|
431
491
|
rev: { required: false, control: "text", type: "string" },
|
|
432
|
-
role: {
|
|
492
|
+
role: {
|
|
493
|
+
required: false,
|
|
494
|
+
control: "text",
|
|
495
|
+
type: "string",
|
|
496
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
497
|
+
},
|
|
433
498
|
security: { required: false, control: "text", type: "string" },
|
|
434
|
-
slot: {
|
|
435
|
-
|
|
499
|
+
slot: {
|
|
500
|
+
required: false,
|
|
501
|
+
control: "text",
|
|
502
|
+
type: "string",
|
|
503
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
504
|
+
},
|
|
505
|
+
spellCheck: {
|
|
506
|
+
required: false,
|
|
507
|
+
control: "boolean",
|
|
508
|
+
type: "boolean",
|
|
509
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
510
|
+
},
|
|
436
511
|
suppressContentEditableWarning: {
|
|
437
512
|
required: false,
|
|
438
513
|
control: "boolean",
|
|
@@ -443,13 +518,24 @@ const propsAccordion = {
|
|
|
443
518
|
control: "boolean",
|
|
444
519
|
type: "boolean"
|
|
445
520
|
},
|
|
446
|
-
tabIndex: {
|
|
447
|
-
|
|
521
|
+
tabIndex: {
|
|
522
|
+
required: false,
|
|
523
|
+
control: "number",
|
|
524
|
+
type: "number",
|
|
525
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
526
|
+
},
|
|
527
|
+
title: {
|
|
528
|
+
required: false,
|
|
529
|
+
control: "text",
|
|
530
|
+
type: "string",
|
|
531
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
532
|
+
},
|
|
448
533
|
translate: {
|
|
449
534
|
required: false,
|
|
450
535
|
control: "radio",
|
|
451
536
|
type: "string",
|
|
452
|
-
options: ["yes", "no"]
|
|
537
|
+
options: ["yes", "no"],
|
|
538
|
+
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."
|
|
453
539
|
},
|
|
454
540
|
typeof: { required: false, control: "text", type: "string" },
|
|
455
541
|
unselectable: {
|
|
@@ -458,12 +544,22 @@ const propsAccordion = {
|
|
|
458
544
|
type: "string",
|
|
459
545
|
options: ["on", "off"]
|
|
460
546
|
},
|
|
461
|
-
value: {
|
|
547
|
+
value: {
|
|
548
|
+
required: true,
|
|
549
|
+
control: "text",
|
|
550
|
+
type: "string",
|
|
551
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
552
|
+
},
|
|
462
553
|
vocab: { required: false, control: "text", type: "string" }
|
|
463
554
|
};
|
|
464
555
|
const propsAccordionItem = {
|
|
465
556
|
about: { required: false, control: "text", type: "string" },
|
|
466
|
-
accessKey: {
|
|
557
|
+
accessKey: {
|
|
558
|
+
required: false,
|
|
559
|
+
control: "text",
|
|
560
|
+
type: "string",
|
|
561
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
562
|
+
},
|
|
467
563
|
"aria-activedescendant": {
|
|
468
564
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
469
565
|
required: false,
|
|
@@ -619,7 +715,7 @@ const propsAccordionItem = {
|
|
|
619
715
|
type: "string"
|
|
620
716
|
},
|
|
621
717
|
"aria-label": {
|
|
622
|
-
description: "
|
|
718
|
+
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.",
|
|
623
719
|
required: false,
|
|
624
720
|
control: "text",
|
|
625
721
|
type: "string"
|
|
@@ -795,25 +891,70 @@ const propsAccordionItem = {
|
|
|
795
891
|
control: "text",
|
|
796
892
|
type: "string"
|
|
797
893
|
},
|
|
798
|
-
autoCapitalize: {
|
|
894
|
+
autoCapitalize: {
|
|
895
|
+
required: false,
|
|
896
|
+
control: "text",
|
|
897
|
+
type: "string",
|
|
898
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
899
|
+
},
|
|
799
900
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
800
|
-
autoFocus: {
|
|
901
|
+
autoFocus: {
|
|
902
|
+
required: false,
|
|
903
|
+
control: "boolean",
|
|
904
|
+
type: "boolean",
|
|
905
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
906
|
+
},
|
|
801
907
|
autoSave: { required: false, control: "text", type: "string" },
|
|
802
908
|
className: { required: false, control: "text", type: "string" },
|
|
803
|
-
color: {
|
|
804
|
-
|
|
805
|
-
|
|
909
|
+
color: {
|
|
910
|
+
required: false,
|
|
911
|
+
control: "color",
|
|
912
|
+
type: "string",
|
|
913
|
+
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."
|
|
914
|
+
},
|
|
915
|
+
content: {
|
|
916
|
+
required: false,
|
|
917
|
+
control: "text",
|
|
918
|
+
type: "string",
|
|
919
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
920
|
+
},
|
|
921
|
+
contextMenu: {
|
|
922
|
+
required: false,
|
|
923
|
+
control: "text",
|
|
924
|
+
type: "string",
|
|
925
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
926
|
+
},
|
|
806
927
|
datatype: { required: false, control: "text", type: "string" },
|
|
807
|
-
dir: {
|
|
928
|
+
dir: {
|
|
929
|
+
required: false,
|
|
930
|
+
control: "text",
|
|
931
|
+
type: "string",
|
|
932
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
933
|
+
},
|
|
808
934
|
disabled: {
|
|
809
935
|
description: "Whether or not an accordion item is disabled from user interaction.\n@defaultValue false",
|
|
810
936
|
required: false,
|
|
811
937
|
control: "boolean",
|
|
812
938
|
type: "boolean"
|
|
813
939
|
},
|
|
814
|
-
draggable: {
|
|
815
|
-
|
|
816
|
-
|
|
940
|
+
draggable: {
|
|
941
|
+
required: false,
|
|
942
|
+
control: "boolean",
|
|
943
|
+
type: "boolean",
|
|
944
|
+
description: "Defines whether the element can be dragged."
|
|
945
|
+
},
|
|
946
|
+
hidden: {
|
|
947
|
+
required: false,
|
|
948
|
+
control: "boolean",
|
|
949
|
+
type: "boolean",
|
|
950
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
951
|
+
},
|
|
952
|
+
id: {
|
|
953
|
+
required: false,
|
|
954
|
+
control: "text",
|
|
955
|
+
type: "string",
|
|
956
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
957
|
+
},
|
|
817
958
|
inputMode: {
|
|
818
959
|
description: "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
819
960
|
required: false,
|
|
@@ -841,20 +982,50 @@ const propsAccordionItem = {
|
|
|
841
982
|
itemRef: { required: false, control: "text", type: "string" },
|
|
842
983
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
843
984
|
itemType: { required: false, control: "text", type: "string" },
|
|
844
|
-
lang: {
|
|
985
|
+
lang: {
|
|
986
|
+
required: false,
|
|
987
|
+
control: "text",
|
|
988
|
+
type: "string",
|
|
989
|
+
description: "Defines the language used in the element."
|
|
990
|
+
},
|
|
845
991
|
nonce: { required: false, control: "text", type: "string" },
|
|
846
|
-
placeholder: {
|
|
992
|
+
placeholder: {
|
|
993
|
+
required: false,
|
|
994
|
+
control: "text",
|
|
995
|
+
type: "string",
|
|
996
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
997
|
+
},
|
|
847
998
|
prefix: { required: false, control: "text", type: "string" },
|
|
848
999
|
property: { required: false, control: "text", type: "string" },
|
|
849
1000
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
850
|
-
rel: {
|
|
1001
|
+
rel: {
|
|
1002
|
+
required: false,
|
|
1003
|
+
control: "text",
|
|
1004
|
+
type: "string",
|
|
1005
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
1006
|
+
},
|
|
851
1007
|
resource: { required: false, control: "text", type: "string" },
|
|
852
1008
|
results: { required: false, control: "number", type: "number" },
|
|
853
1009
|
rev: { required: false, control: "text", type: "string" },
|
|
854
|
-
role: {
|
|
1010
|
+
role: {
|
|
1011
|
+
required: false,
|
|
1012
|
+
control: "text",
|
|
1013
|
+
type: "string",
|
|
1014
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1015
|
+
},
|
|
855
1016
|
security: { required: false, control: "text", type: "string" },
|
|
856
|
-
slot: {
|
|
857
|
-
|
|
1017
|
+
slot: {
|
|
1018
|
+
required: false,
|
|
1019
|
+
control: "text",
|
|
1020
|
+
type: "string",
|
|
1021
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1022
|
+
},
|
|
1023
|
+
spellCheck: {
|
|
1024
|
+
required: false,
|
|
1025
|
+
control: "boolean",
|
|
1026
|
+
type: "boolean",
|
|
1027
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1028
|
+
},
|
|
858
1029
|
suppressContentEditableWarning: {
|
|
859
1030
|
required: false,
|
|
860
1031
|
control: "boolean",
|
|
@@ -865,13 +1036,24 @@ const propsAccordionItem = {
|
|
|
865
1036
|
control: "boolean",
|
|
866
1037
|
type: "boolean"
|
|
867
1038
|
},
|
|
868
|
-
tabIndex: {
|
|
869
|
-
|
|
1039
|
+
tabIndex: {
|
|
1040
|
+
required: false,
|
|
1041
|
+
control: "number",
|
|
1042
|
+
type: "number",
|
|
1043
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1044
|
+
},
|
|
1045
|
+
title: {
|
|
1046
|
+
required: false,
|
|
1047
|
+
control: "text",
|
|
1048
|
+
type: "string",
|
|
1049
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1050
|
+
},
|
|
870
1051
|
translate: {
|
|
871
1052
|
required: false,
|
|
872
1053
|
control: "radio",
|
|
873
1054
|
type: "string",
|
|
874
|
-
options: ["yes", "no"]
|
|
1055
|
+
options: ["yes", "no"],
|
|
1056
|
+
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."
|
|
875
1057
|
},
|
|
876
1058
|
typeof: { required: false, control: "text", type: "string" },
|
|
877
1059
|
unselectable: {
|
|
@@ -890,7 +1072,12 @@ const propsAccordionItem = {
|
|
|
890
1072
|
};
|
|
891
1073
|
const propsAccordionHeader = {
|
|
892
1074
|
about: { required: false, control: "text", type: "string" },
|
|
893
|
-
accessKey: {
|
|
1075
|
+
accessKey: {
|
|
1076
|
+
required: false,
|
|
1077
|
+
control: "text",
|
|
1078
|
+
type: "string",
|
|
1079
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1080
|
+
},
|
|
894
1081
|
"aria-activedescendant": {
|
|
895
1082
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
896
1083
|
required: false,
|
|
@@ -1046,7 +1233,7 @@ const propsAccordionHeader = {
|
|
|
1046
1233
|
type: "string"
|
|
1047
1234
|
},
|
|
1048
1235
|
"aria-label": {
|
|
1049
|
-
description: "
|
|
1236
|
+
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.",
|
|
1050
1237
|
required: false,
|
|
1051
1238
|
control: "text",
|
|
1052
1239
|
type: "string"
|
|
@@ -1222,19 +1409,64 @@ const propsAccordionHeader = {
|
|
|
1222
1409
|
control: "text",
|
|
1223
1410
|
type: "string"
|
|
1224
1411
|
},
|
|
1225
|
-
autoCapitalize: {
|
|
1412
|
+
autoCapitalize: {
|
|
1413
|
+
required: false,
|
|
1414
|
+
control: "text",
|
|
1415
|
+
type: "string",
|
|
1416
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1417
|
+
},
|
|
1226
1418
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1227
|
-
autoFocus: {
|
|
1419
|
+
autoFocus: {
|
|
1420
|
+
required: false,
|
|
1421
|
+
control: "boolean",
|
|
1422
|
+
type: "boolean",
|
|
1423
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1424
|
+
},
|
|
1228
1425
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1229
1426
|
className: { required: false, control: "text", type: "string" },
|
|
1230
|
-
color: {
|
|
1231
|
-
|
|
1232
|
-
|
|
1427
|
+
color: {
|
|
1428
|
+
required: false,
|
|
1429
|
+
control: "color",
|
|
1430
|
+
type: "string",
|
|
1431
|
+
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."
|
|
1432
|
+
},
|
|
1433
|
+
content: {
|
|
1434
|
+
required: false,
|
|
1435
|
+
control: "text",
|
|
1436
|
+
type: "string",
|
|
1437
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1438
|
+
},
|
|
1439
|
+
contextMenu: {
|
|
1440
|
+
required: false,
|
|
1441
|
+
control: "text",
|
|
1442
|
+
type: "string",
|
|
1443
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1444
|
+
},
|
|
1233
1445
|
datatype: { required: false, control: "text", type: "string" },
|
|
1234
|
-
dir: {
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1446
|
+
dir: {
|
|
1447
|
+
required: false,
|
|
1448
|
+
control: "text",
|
|
1449
|
+
type: "string",
|
|
1450
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1451
|
+
},
|
|
1452
|
+
draggable: {
|
|
1453
|
+
required: false,
|
|
1454
|
+
control: "boolean",
|
|
1455
|
+
type: "boolean",
|
|
1456
|
+
description: "Defines whether the element can be dragged."
|
|
1457
|
+
},
|
|
1458
|
+
hidden: {
|
|
1459
|
+
required: false,
|
|
1460
|
+
control: "boolean",
|
|
1461
|
+
type: "boolean",
|
|
1462
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1463
|
+
},
|
|
1464
|
+
id: {
|
|
1465
|
+
required: false,
|
|
1466
|
+
control: "text",
|
|
1467
|
+
type: "string",
|
|
1468
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1469
|
+
},
|
|
1238
1470
|
inputMode: {
|
|
1239
1471
|
description: "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
1240
1472
|
required: false,
|
|
@@ -1262,20 +1494,50 @@ const propsAccordionHeader = {
|
|
|
1262
1494
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1263
1495
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1264
1496
|
itemType: { required: false, control: "text", type: "string" },
|
|
1265
|
-
lang: {
|
|
1497
|
+
lang: {
|
|
1498
|
+
required: false,
|
|
1499
|
+
control: "text",
|
|
1500
|
+
type: "string",
|
|
1501
|
+
description: "Defines the language used in the element."
|
|
1502
|
+
},
|
|
1266
1503
|
nonce: { required: false, control: "text", type: "string" },
|
|
1267
|
-
placeholder: {
|
|
1504
|
+
placeholder: {
|
|
1505
|
+
required: false,
|
|
1506
|
+
control: "text",
|
|
1507
|
+
type: "string",
|
|
1508
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
1509
|
+
},
|
|
1268
1510
|
prefix: { required: false, control: "text", type: "string" },
|
|
1269
1511
|
property: { required: false, control: "text", type: "string" },
|
|
1270
1512
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1271
|
-
rel: {
|
|
1513
|
+
rel: {
|
|
1514
|
+
required: false,
|
|
1515
|
+
control: "text",
|
|
1516
|
+
type: "string",
|
|
1517
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
1518
|
+
},
|
|
1272
1519
|
resource: { required: false, control: "text", type: "string" },
|
|
1273
1520
|
results: { required: false, control: "number", type: "number" },
|
|
1274
1521
|
rev: { required: false, control: "text", type: "string" },
|
|
1275
|
-
role: {
|
|
1522
|
+
role: {
|
|
1523
|
+
required: false,
|
|
1524
|
+
control: "text",
|
|
1525
|
+
type: "string",
|
|
1526
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1527
|
+
},
|
|
1276
1528
|
security: { required: false, control: "text", type: "string" },
|
|
1277
|
-
slot: {
|
|
1278
|
-
|
|
1529
|
+
slot: {
|
|
1530
|
+
required: false,
|
|
1531
|
+
control: "text",
|
|
1532
|
+
type: "string",
|
|
1533
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1534
|
+
},
|
|
1535
|
+
spellCheck: {
|
|
1536
|
+
required: false,
|
|
1537
|
+
control: "boolean",
|
|
1538
|
+
type: "boolean",
|
|
1539
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1540
|
+
},
|
|
1279
1541
|
suppressContentEditableWarning: {
|
|
1280
1542
|
required: false,
|
|
1281
1543
|
control: "boolean",
|
|
@@ -1286,13 +1548,24 @@ const propsAccordionHeader = {
|
|
|
1286
1548
|
control: "boolean",
|
|
1287
1549
|
type: "boolean"
|
|
1288
1550
|
},
|
|
1289
|
-
tabIndex: {
|
|
1290
|
-
|
|
1551
|
+
tabIndex: {
|
|
1552
|
+
required: false,
|
|
1553
|
+
control: "number",
|
|
1554
|
+
type: "number",
|
|
1555
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1556
|
+
},
|
|
1557
|
+
title: {
|
|
1558
|
+
required: false,
|
|
1559
|
+
control: "text",
|
|
1560
|
+
type: "string",
|
|
1561
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1562
|
+
},
|
|
1291
1563
|
translate: {
|
|
1292
1564
|
required: false,
|
|
1293
1565
|
control: "radio",
|
|
1294
1566
|
type: "string",
|
|
1295
|
-
options: ["yes", "no"]
|
|
1567
|
+
options: ["yes", "no"],
|
|
1568
|
+
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."
|
|
1296
1569
|
},
|
|
1297
1570
|
typeof: { required: false, control: "text", type: "string" },
|
|
1298
1571
|
unselectable: {
|
|
@@ -1305,7 +1578,12 @@ const propsAccordionHeader = {
|
|
|
1305
1578
|
};
|
|
1306
1579
|
const propsAccordionTrigger = {
|
|
1307
1580
|
about: { required: false, control: "text", type: "string" },
|
|
1308
|
-
accessKey: {
|
|
1581
|
+
accessKey: {
|
|
1582
|
+
required: false,
|
|
1583
|
+
control: "text",
|
|
1584
|
+
type: "string",
|
|
1585
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1586
|
+
},
|
|
1309
1587
|
"aria-activedescendant": {
|
|
1310
1588
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1311
1589
|
required: false,
|
|
@@ -1461,7 +1739,7 @@ const propsAccordionTrigger = {
|
|
|
1461
1739
|
type: "string"
|
|
1462
1740
|
},
|
|
1463
1741
|
"aria-label": {
|
|
1464
|
-
description: "
|
|
1742
|
+
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.",
|
|
1465
1743
|
required: false,
|
|
1466
1744
|
control: "text",
|
|
1467
1745
|
type: "string"
|
|
@@ -1637,26 +1915,106 @@ const propsAccordionTrigger = {
|
|
|
1637
1915
|
control: "text",
|
|
1638
1916
|
type: "string"
|
|
1639
1917
|
},
|
|
1640
|
-
autoCapitalize: {
|
|
1918
|
+
autoCapitalize: {
|
|
1919
|
+
required: false,
|
|
1920
|
+
control: "text",
|
|
1921
|
+
type: "string",
|
|
1922
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1923
|
+
},
|
|
1641
1924
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1642
|
-
autoFocus: {
|
|
1925
|
+
autoFocus: {
|
|
1926
|
+
required: false,
|
|
1927
|
+
control: "boolean",
|
|
1928
|
+
type: "boolean",
|
|
1929
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1930
|
+
},
|
|
1643
1931
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1644
1932
|
className: { required: false, control: "text", type: "string" },
|
|
1645
|
-
color: {
|
|
1646
|
-
|
|
1647
|
-
|
|
1933
|
+
color: {
|
|
1934
|
+
required: false,
|
|
1935
|
+
control: "color",
|
|
1936
|
+
type: "string",
|
|
1937
|
+
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."
|
|
1938
|
+
},
|
|
1939
|
+
content: {
|
|
1940
|
+
required: false,
|
|
1941
|
+
control: "text",
|
|
1942
|
+
type: "string",
|
|
1943
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1944
|
+
},
|
|
1945
|
+
contextMenu: {
|
|
1946
|
+
required: false,
|
|
1947
|
+
control: "text",
|
|
1948
|
+
type: "string",
|
|
1949
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1950
|
+
},
|
|
1648
1951
|
datatype: { required: false, control: "text", type: "string" },
|
|
1649
|
-
dir: {
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1952
|
+
dir: {
|
|
1953
|
+
required: false,
|
|
1954
|
+
control: "text",
|
|
1955
|
+
type: "string",
|
|
1956
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1957
|
+
},
|
|
1958
|
+
disabled: {
|
|
1959
|
+
required: false,
|
|
1960
|
+
control: "boolean",
|
|
1961
|
+
type: "boolean",
|
|
1962
|
+
description: "Indicates whether the user can interact with the element."
|
|
1963
|
+
},
|
|
1964
|
+
draggable: {
|
|
1965
|
+
required: false,
|
|
1966
|
+
control: "boolean",
|
|
1967
|
+
type: "boolean",
|
|
1968
|
+
description: "Defines whether the element can be dragged."
|
|
1969
|
+
},
|
|
1970
|
+
form: {
|
|
1971
|
+
required: false,
|
|
1972
|
+
control: "text",
|
|
1973
|
+
type: "string",
|
|
1974
|
+
description: "Indicates the form that is the owner of the element."
|
|
1975
|
+
},
|
|
1976
|
+
formAction: {
|
|
1977
|
+
required: false,
|
|
1978
|
+
control: "text",
|
|
1979
|
+
type: "string",
|
|
1980
|
+
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
1981
|
+
},
|
|
1982
|
+
formEncType: {
|
|
1983
|
+
required: false,
|
|
1984
|
+
control: "text",
|
|
1985
|
+
type: "string",
|
|
1986
|
+
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.`
|
|
1987
|
+
},
|
|
1988
|
+
formMethod: {
|
|
1989
|
+
required: false,
|
|
1990
|
+
control: "text",
|
|
1991
|
+
type: "string",
|
|
1992
|
+
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.`
|
|
1993
|
+
},
|
|
1994
|
+
formNoValidate: {
|
|
1995
|
+
required: false,
|
|
1996
|
+
control: "boolean",
|
|
1997
|
+
type: "boolean",
|
|
1998
|
+
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.`
|
|
1999
|
+
},
|
|
2000
|
+
formTarget: {
|
|
2001
|
+
required: false,
|
|
2002
|
+
control: "text",
|
|
2003
|
+
type: "string",
|
|
2004
|
+
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.`
|
|
2005
|
+
},
|
|
2006
|
+
hidden: {
|
|
2007
|
+
required: false,
|
|
2008
|
+
control: "boolean",
|
|
2009
|
+
type: "boolean",
|
|
2010
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2011
|
+
},
|
|
2012
|
+
id: {
|
|
2013
|
+
required: false,
|
|
2014
|
+
control: "text",
|
|
2015
|
+
type: "string",
|
|
2016
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2017
|
+
},
|
|
1660
2018
|
inputMode: {
|
|
1661
2019
|
description: "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
1662
2020
|
required: false,
|
|
@@ -1684,21 +2042,56 @@ const propsAccordionTrigger = {
|
|
|
1684
2042
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1685
2043
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1686
2044
|
itemType: { required: false, control: "text", type: "string" },
|
|
1687
|
-
lang: {
|
|
1688
|
-
|
|
2045
|
+
lang: {
|
|
2046
|
+
required: false,
|
|
2047
|
+
control: "text",
|
|
2048
|
+
type: "string",
|
|
2049
|
+
description: "Defines the language used in the element."
|
|
2050
|
+
},
|
|
2051
|
+
name: {
|
|
2052
|
+
required: false,
|
|
2053
|
+
control: "text",
|
|
2054
|
+
type: "string",
|
|
2055
|
+
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)."
|
|
2056
|
+
},
|
|
1689
2057
|
nonce: { required: false, control: "text", type: "string" },
|
|
1690
|
-
placeholder: {
|
|
2058
|
+
placeholder: {
|
|
2059
|
+
required: false,
|
|
2060
|
+
control: "text",
|
|
2061
|
+
type: "string",
|
|
2062
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2063
|
+
},
|
|
1691
2064
|
prefix: { required: false, control: "text", type: "string" },
|
|
1692
2065
|
property: { required: false, control: "text", type: "string" },
|
|
1693
2066
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1694
|
-
rel: {
|
|
2067
|
+
rel: {
|
|
2068
|
+
required: false,
|
|
2069
|
+
control: "text",
|
|
2070
|
+
type: "string",
|
|
2071
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2072
|
+
},
|
|
1695
2073
|
resource: { required: false, control: "text", type: "string" },
|
|
1696
2074
|
results: { required: false, control: "number", type: "number" },
|
|
1697
2075
|
rev: { required: false, control: "text", type: "string" },
|
|
1698
|
-
role: {
|
|
2076
|
+
role: {
|
|
2077
|
+
required: false,
|
|
2078
|
+
control: "text",
|
|
2079
|
+
type: "string",
|
|
2080
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2081
|
+
},
|
|
1699
2082
|
security: { required: false, control: "text", type: "string" },
|
|
1700
|
-
slot: {
|
|
1701
|
-
|
|
2083
|
+
slot: {
|
|
2084
|
+
required: false,
|
|
2085
|
+
control: "text",
|
|
2086
|
+
type: "string",
|
|
2087
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2088
|
+
},
|
|
2089
|
+
spellCheck: {
|
|
2090
|
+
required: false,
|
|
2091
|
+
control: "boolean",
|
|
2092
|
+
type: "boolean",
|
|
2093
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2094
|
+
},
|
|
1702
2095
|
suppressContentEditableWarning: {
|
|
1703
2096
|
required: false,
|
|
1704
2097
|
control: "boolean",
|
|
@@ -1709,19 +2102,31 @@ const propsAccordionTrigger = {
|
|
|
1709
2102
|
control: "boolean",
|
|
1710
2103
|
type: "boolean"
|
|
1711
2104
|
},
|
|
1712
|
-
tabIndex: {
|
|
1713
|
-
|
|
2105
|
+
tabIndex: {
|
|
2106
|
+
required: false,
|
|
2107
|
+
control: "number",
|
|
2108
|
+
type: "number",
|
|
2109
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2110
|
+
},
|
|
2111
|
+
title: {
|
|
2112
|
+
required: false,
|
|
2113
|
+
control: "text",
|
|
2114
|
+
type: "string",
|
|
2115
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2116
|
+
},
|
|
1714
2117
|
translate: {
|
|
1715
2118
|
required: false,
|
|
1716
2119
|
control: "radio",
|
|
1717
2120
|
type: "string",
|
|
1718
|
-
options: ["yes", "no"]
|
|
2121
|
+
options: ["yes", "no"],
|
|
2122
|
+
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."
|
|
1719
2123
|
},
|
|
1720
2124
|
type: {
|
|
1721
2125
|
required: false,
|
|
1722
2126
|
control: "radio",
|
|
1723
2127
|
type: "string",
|
|
1724
|
-
options: ["button", "submit", "reset"]
|
|
2128
|
+
options: ["button", "submit", "reset"],
|
|
2129
|
+
description: "Defines the type of the element."
|
|
1725
2130
|
},
|
|
1726
2131
|
typeof: { required: false, control: "text", type: "string" },
|
|
1727
2132
|
unselectable: {
|
|
@@ -1734,7 +2139,12 @@ const propsAccordionTrigger = {
|
|
|
1734
2139
|
};
|
|
1735
2140
|
const propsAccordionContent = {
|
|
1736
2141
|
about: { required: false, control: "text", type: "string" },
|
|
1737
|
-
accessKey: {
|
|
2142
|
+
accessKey: {
|
|
2143
|
+
required: false,
|
|
2144
|
+
control: "text",
|
|
2145
|
+
type: "string",
|
|
2146
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2147
|
+
},
|
|
1738
2148
|
"aria-activedescendant": {
|
|
1739
2149
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1740
2150
|
required: false,
|
|
@@ -1890,7 +2300,7 @@ const propsAccordionContent = {
|
|
|
1890
2300
|
type: "string"
|
|
1891
2301
|
},
|
|
1892
2302
|
"aria-label": {
|
|
1893
|
-
description: "
|
|
2303
|
+
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.",
|
|
1894
2304
|
required: false,
|
|
1895
2305
|
control: "text",
|
|
1896
2306
|
type: "string"
|
|
@@ -2066,19 +2476,64 @@ const propsAccordionContent = {
|
|
|
2066
2476
|
control: "text",
|
|
2067
2477
|
type: "string"
|
|
2068
2478
|
},
|
|
2069
|
-
autoCapitalize: {
|
|
2479
|
+
autoCapitalize: {
|
|
2480
|
+
required: false,
|
|
2481
|
+
control: "text",
|
|
2482
|
+
type: "string",
|
|
2483
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
2484
|
+
},
|
|
2070
2485
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2071
|
-
autoFocus: {
|
|
2486
|
+
autoFocus: {
|
|
2487
|
+
required: false,
|
|
2488
|
+
control: "boolean",
|
|
2489
|
+
type: "boolean",
|
|
2490
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
2491
|
+
},
|
|
2072
2492
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2073
2493
|
className: { required: false, control: "text", type: "string" },
|
|
2074
|
-
color: {
|
|
2075
|
-
|
|
2076
|
-
|
|
2494
|
+
color: {
|
|
2495
|
+
required: false,
|
|
2496
|
+
control: "color",
|
|
2497
|
+
type: "string",
|
|
2498
|
+
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."
|
|
2499
|
+
},
|
|
2500
|
+
content: {
|
|
2501
|
+
required: false,
|
|
2502
|
+
control: "text",
|
|
2503
|
+
type: "string",
|
|
2504
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
2505
|
+
},
|
|
2506
|
+
contextMenu: {
|
|
2507
|
+
required: false,
|
|
2508
|
+
control: "text",
|
|
2509
|
+
type: "string",
|
|
2510
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
2511
|
+
},
|
|
2077
2512
|
datatype: { required: false, control: "text", type: "string" },
|
|
2078
|
-
dir: {
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2513
|
+
dir: {
|
|
2514
|
+
required: false,
|
|
2515
|
+
control: "text",
|
|
2516
|
+
type: "string",
|
|
2517
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
2518
|
+
},
|
|
2519
|
+
draggable: {
|
|
2520
|
+
required: false,
|
|
2521
|
+
control: "boolean",
|
|
2522
|
+
type: "boolean",
|
|
2523
|
+
description: "Defines whether the element can be dragged."
|
|
2524
|
+
},
|
|
2525
|
+
hidden: {
|
|
2526
|
+
required: false,
|
|
2527
|
+
control: "boolean",
|
|
2528
|
+
type: "boolean",
|
|
2529
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2530
|
+
},
|
|
2531
|
+
id: {
|
|
2532
|
+
required: false,
|
|
2533
|
+
control: "text",
|
|
2534
|
+
type: "string",
|
|
2535
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2536
|
+
},
|
|
2082
2537
|
inputMode: {
|
|
2083
2538
|
description: "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute",
|
|
2084
2539
|
required: false,
|
|
@@ -2106,20 +2561,50 @@ const propsAccordionContent = {
|
|
|
2106
2561
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2107
2562
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2108
2563
|
itemType: { required: false, control: "text", type: "string" },
|
|
2109
|
-
lang: {
|
|
2564
|
+
lang: {
|
|
2565
|
+
required: false,
|
|
2566
|
+
control: "text",
|
|
2567
|
+
type: "string",
|
|
2568
|
+
description: "Defines the language used in the element."
|
|
2569
|
+
},
|
|
2110
2570
|
nonce: { required: false, control: "text", type: "string" },
|
|
2111
|
-
placeholder: {
|
|
2571
|
+
placeholder: {
|
|
2572
|
+
required: false,
|
|
2573
|
+
control: "text",
|
|
2574
|
+
type: "string",
|
|
2575
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2576
|
+
},
|
|
2112
2577
|
prefix: { required: false, control: "text", type: "string" },
|
|
2113
2578
|
property: { required: false, control: "text", type: "string" },
|
|
2114
2579
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2115
|
-
rel: {
|
|
2580
|
+
rel: {
|
|
2581
|
+
required: false,
|
|
2582
|
+
control: "text",
|
|
2583
|
+
type: "string",
|
|
2584
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2585
|
+
},
|
|
2116
2586
|
resource: { required: false, control: "text", type: "string" },
|
|
2117
2587
|
results: { required: false, control: "number", type: "number" },
|
|
2118
2588
|
rev: { required: false, control: "text", type: "string" },
|
|
2119
|
-
role: {
|
|
2589
|
+
role: {
|
|
2590
|
+
required: false,
|
|
2591
|
+
control: "text",
|
|
2592
|
+
type: "string",
|
|
2593
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2594
|
+
},
|
|
2120
2595
|
security: { required: false, control: "text", type: "string" },
|
|
2121
|
-
slot: {
|
|
2122
|
-
|
|
2596
|
+
slot: {
|
|
2597
|
+
required: false,
|
|
2598
|
+
control: "text",
|
|
2599
|
+
type: "string",
|
|
2600
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2601
|
+
},
|
|
2602
|
+
spellCheck: {
|
|
2603
|
+
required: false,
|
|
2604
|
+
control: "boolean",
|
|
2605
|
+
type: "boolean",
|
|
2606
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2607
|
+
},
|
|
2123
2608
|
suppressContentEditableWarning: {
|
|
2124
2609
|
required: false,
|
|
2125
2610
|
control: "boolean",
|
|
@@ -2130,13 +2615,24 @@ const propsAccordionContent = {
|
|
|
2130
2615
|
control: "boolean",
|
|
2131
2616
|
type: "boolean"
|
|
2132
2617
|
},
|
|
2133
|
-
tabIndex: {
|
|
2134
|
-
|
|
2618
|
+
tabIndex: {
|
|
2619
|
+
required: false,
|
|
2620
|
+
control: "number",
|
|
2621
|
+
type: "number",
|
|
2622
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2623
|
+
},
|
|
2624
|
+
title: {
|
|
2625
|
+
required: false,
|
|
2626
|
+
control: "text",
|
|
2627
|
+
type: "string",
|
|
2628
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2629
|
+
},
|
|
2135
2630
|
translate: {
|
|
2136
2631
|
required: false,
|
|
2137
2632
|
control: "radio",
|
|
2138
2633
|
type: "string",
|
|
2139
|
-
options: ["yes", "no"]
|
|
2634
|
+
options: ["yes", "no"],
|
|
2635
|
+
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."
|
|
2140
2636
|
},
|
|
2141
2637
|
typeof: { required: false, control: "text", type: "string" },
|
|
2142
2638
|
unselectable: {
|