@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
|
@@ -28,12 +28,22 @@ __export(dialog_props_exports, {
|
|
|
28
28
|
});
|
|
29
29
|
module.exports = __toCommonJS(dialog_props_exports);
|
|
30
30
|
const propsDialog = {
|
|
31
|
-
open: {
|
|
31
|
+
open: {
|
|
32
|
+
required: false,
|
|
33
|
+
control: "boolean",
|
|
34
|
+
type: "boolean",
|
|
35
|
+
description: "Show or hide the content of this component on the canvas. This will not affect the initial state of the component."
|
|
36
|
+
}
|
|
32
37
|
};
|
|
33
38
|
const propsDialogTrigger = {};
|
|
34
39
|
const propsDialogOverlay = {
|
|
35
40
|
about: { required: false, control: "text", type: "string" },
|
|
36
|
-
accessKey: {
|
|
41
|
+
accessKey: {
|
|
42
|
+
required: false,
|
|
43
|
+
control: "text",
|
|
44
|
+
type: "string",
|
|
45
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
46
|
+
},
|
|
37
47
|
"aria-activedescendant": {
|
|
38
48
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
39
49
|
required: false,
|
|
@@ -189,7 +199,7 @@ const propsDialogOverlay = {
|
|
|
189
199
|
type: "string"
|
|
190
200
|
},
|
|
191
201
|
"aria-label": {
|
|
192
|
-
description: "
|
|
202
|
+
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.",
|
|
193
203
|
required: false,
|
|
194
204
|
control: "text",
|
|
195
205
|
type: "string"
|
|
@@ -365,19 +375,64 @@ const propsDialogOverlay = {
|
|
|
365
375
|
control: "text",
|
|
366
376
|
type: "string"
|
|
367
377
|
},
|
|
368
|
-
autoCapitalize: {
|
|
378
|
+
autoCapitalize: {
|
|
379
|
+
required: false,
|
|
380
|
+
control: "text",
|
|
381
|
+
type: "string",
|
|
382
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
383
|
+
},
|
|
369
384
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
370
|
-
autoFocus: {
|
|
385
|
+
autoFocus: {
|
|
386
|
+
required: false,
|
|
387
|
+
control: "boolean",
|
|
388
|
+
type: "boolean",
|
|
389
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
390
|
+
},
|
|
371
391
|
autoSave: { required: false, control: "text", type: "string" },
|
|
372
392
|
className: { required: false, control: "text", type: "string" },
|
|
373
|
-
color: {
|
|
374
|
-
|
|
375
|
-
|
|
393
|
+
color: {
|
|
394
|
+
required: false,
|
|
395
|
+
control: "color",
|
|
396
|
+
type: "string",
|
|
397
|
+
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."
|
|
398
|
+
},
|
|
399
|
+
content: {
|
|
400
|
+
required: false,
|
|
401
|
+
control: "text",
|
|
402
|
+
type: "string",
|
|
403
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
404
|
+
},
|
|
405
|
+
contextMenu: {
|
|
406
|
+
required: false,
|
|
407
|
+
control: "text",
|
|
408
|
+
type: "string",
|
|
409
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
410
|
+
},
|
|
376
411
|
datatype: { required: false, control: "text", type: "string" },
|
|
377
|
-
dir: {
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
412
|
+
dir: {
|
|
413
|
+
required: false,
|
|
414
|
+
control: "text",
|
|
415
|
+
type: "string",
|
|
416
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
417
|
+
},
|
|
418
|
+
draggable: {
|
|
419
|
+
required: false,
|
|
420
|
+
control: "boolean",
|
|
421
|
+
type: "boolean",
|
|
422
|
+
description: "Defines whether the element can be dragged."
|
|
423
|
+
},
|
|
424
|
+
hidden: {
|
|
425
|
+
required: false,
|
|
426
|
+
control: "boolean",
|
|
427
|
+
type: "boolean",
|
|
428
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
429
|
+
},
|
|
430
|
+
id: {
|
|
431
|
+
required: false,
|
|
432
|
+
control: "text",
|
|
433
|
+
type: "string",
|
|
434
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
435
|
+
},
|
|
381
436
|
inputMode: {
|
|
382
437
|
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",
|
|
383
438
|
required: false,
|
|
@@ -405,20 +460,50 @@ const propsDialogOverlay = {
|
|
|
405
460
|
itemRef: { required: false, control: "text", type: "string" },
|
|
406
461
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
407
462
|
itemType: { required: false, control: "text", type: "string" },
|
|
408
|
-
lang: {
|
|
463
|
+
lang: {
|
|
464
|
+
required: false,
|
|
465
|
+
control: "text",
|
|
466
|
+
type: "string",
|
|
467
|
+
description: "Defines the language used in the element."
|
|
468
|
+
},
|
|
409
469
|
nonce: { required: false, control: "text", type: "string" },
|
|
410
|
-
placeholder: {
|
|
470
|
+
placeholder: {
|
|
471
|
+
required: false,
|
|
472
|
+
control: "text",
|
|
473
|
+
type: "string",
|
|
474
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
475
|
+
},
|
|
411
476
|
prefix: { required: false, control: "text", type: "string" },
|
|
412
477
|
property: { required: false, control: "text", type: "string" },
|
|
413
478
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
414
|
-
rel: {
|
|
479
|
+
rel: {
|
|
480
|
+
required: false,
|
|
481
|
+
control: "text",
|
|
482
|
+
type: "string",
|
|
483
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
484
|
+
},
|
|
415
485
|
resource: { required: false, control: "text", type: "string" },
|
|
416
486
|
results: { required: false, control: "number", type: "number" },
|
|
417
487
|
rev: { required: false, control: "text", type: "string" },
|
|
418
|
-
role: {
|
|
488
|
+
role: {
|
|
489
|
+
required: false,
|
|
490
|
+
control: "text",
|
|
491
|
+
type: "string",
|
|
492
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
493
|
+
},
|
|
419
494
|
security: { required: false, control: "text", type: "string" },
|
|
420
|
-
slot: {
|
|
421
|
-
|
|
495
|
+
slot: {
|
|
496
|
+
required: false,
|
|
497
|
+
control: "text",
|
|
498
|
+
type: "string",
|
|
499
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
500
|
+
},
|
|
501
|
+
spellCheck: {
|
|
502
|
+
required: false,
|
|
503
|
+
control: "boolean",
|
|
504
|
+
type: "boolean",
|
|
505
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
506
|
+
},
|
|
422
507
|
suppressContentEditableWarning: {
|
|
423
508
|
required: false,
|
|
424
509
|
control: "boolean",
|
|
@@ -429,13 +514,24 @@ const propsDialogOverlay = {
|
|
|
429
514
|
control: "boolean",
|
|
430
515
|
type: "boolean"
|
|
431
516
|
},
|
|
432
|
-
tabIndex: {
|
|
433
|
-
|
|
517
|
+
tabIndex: {
|
|
518
|
+
required: false,
|
|
519
|
+
control: "number",
|
|
520
|
+
type: "number",
|
|
521
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
522
|
+
},
|
|
523
|
+
title: {
|
|
524
|
+
required: false,
|
|
525
|
+
control: "text",
|
|
526
|
+
type: "string",
|
|
527
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
528
|
+
},
|
|
434
529
|
translate: {
|
|
435
530
|
required: false,
|
|
436
531
|
control: "radio",
|
|
437
532
|
type: "string",
|
|
438
|
-
options: ["yes", "no"]
|
|
533
|
+
options: ["yes", "no"],
|
|
534
|
+
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."
|
|
439
535
|
},
|
|
440
536
|
typeof: { required: false, control: "text", type: "string" },
|
|
441
537
|
unselectable: {
|
|
@@ -448,7 +544,12 @@ const propsDialogOverlay = {
|
|
|
448
544
|
};
|
|
449
545
|
const propsDialogContent = {
|
|
450
546
|
about: { required: false, control: "text", type: "string" },
|
|
451
|
-
accessKey: {
|
|
547
|
+
accessKey: {
|
|
548
|
+
required: false,
|
|
549
|
+
control: "text",
|
|
550
|
+
type: "string",
|
|
551
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
552
|
+
},
|
|
452
553
|
"aria-activedescendant": {
|
|
453
554
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
454
555
|
required: false,
|
|
@@ -604,7 +705,7 @@ const propsDialogContent = {
|
|
|
604
705
|
type: "string"
|
|
605
706
|
},
|
|
606
707
|
"aria-label": {
|
|
607
|
-
description: "
|
|
708
|
+
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.",
|
|
608
709
|
required: false,
|
|
609
710
|
control: "text",
|
|
610
711
|
type: "string"
|
|
@@ -780,19 +881,64 @@ const propsDialogContent = {
|
|
|
780
881
|
control: "text",
|
|
781
882
|
type: "string"
|
|
782
883
|
},
|
|
783
|
-
autoCapitalize: {
|
|
884
|
+
autoCapitalize: {
|
|
885
|
+
required: false,
|
|
886
|
+
control: "text",
|
|
887
|
+
type: "string",
|
|
888
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
889
|
+
},
|
|
784
890
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
785
|
-
autoFocus: {
|
|
891
|
+
autoFocus: {
|
|
892
|
+
required: false,
|
|
893
|
+
control: "boolean",
|
|
894
|
+
type: "boolean",
|
|
895
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
896
|
+
},
|
|
786
897
|
autoSave: { required: false, control: "text", type: "string" },
|
|
787
898
|
className: { required: false, control: "text", type: "string" },
|
|
788
|
-
color: {
|
|
789
|
-
|
|
790
|
-
|
|
899
|
+
color: {
|
|
900
|
+
required: false,
|
|
901
|
+
control: "color",
|
|
902
|
+
type: "string",
|
|
903
|
+
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."
|
|
904
|
+
},
|
|
905
|
+
content: {
|
|
906
|
+
required: false,
|
|
907
|
+
control: "text",
|
|
908
|
+
type: "string",
|
|
909
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
910
|
+
},
|
|
911
|
+
contextMenu: {
|
|
912
|
+
required: false,
|
|
913
|
+
control: "text",
|
|
914
|
+
type: "string",
|
|
915
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
916
|
+
},
|
|
791
917
|
datatype: { required: false, control: "text", type: "string" },
|
|
792
|
-
dir: {
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
918
|
+
dir: {
|
|
919
|
+
required: false,
|
|
920
|
+
control: "text",
|
|
921
|
+
type: "string",
|
|
922
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
923
|
+
},
|
|
924
|
+
draggable: {
|
|
925
|
+
required: false,
|
|
926
|
+
control: "boolean",
|
|
927
|
+
type: "boolean",
|
|
928
|
+
description: "Defines whether the element can be dragged."
|
|
929
|
+
},
|
|
930
|
+
hidden: {
|
|
931
|
+
required: false,
|
|
932
|
+
control: "boolean",
|
|
933
|
+
type: "boolean",
|
|
934
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
935
|
+
},
|
|
936
|
+
id: {
|
|
937
|
+
required: false,
|
|
938
|
+
control: "text",
|
|
939
|
+
type: "string",
|
|
940
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
941
|
+
},
|
|
796
942
|
inputMode: {
|
|
797
943
|
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",
|
|
798
944
|
required: false,
|
|
@@ -820,20 +966,50 @@ const propsDialogContent = {
|
|
|
820
966
|
itemRef: { required: false, control: "text", type: "string" },
|
|
821
967
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
822
968
|
itemType: { required: false, control: "text", type: "string" },
|
|
823
|
-
lang: {
|
|
969
|
+
lang: {
|
|
970
|
+
required: false,
|
|
971
|
+
control: "text",
|
|
972
|
+
type: "string",
|
|
973
|
+
description: "Defines the language used in the element."
|
|
974
|
+
},
|
|
824
975
|
nonce: { required: false, control: "text", type: "string" },
|
|
825
|
-
placeholder: {
|
|
976
|
+
placeholder: {
|
|
977
|
+
required: false,
|
|
978
|
+
control: "text",
|
|
979
|
+
type: "string",
|
|
980
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
981
|
+
},
|
|
826
982
|
prefix: { required: false, control: "text", type: "string" },
|
|
827
983
|
property: { required: false, control: "text", type: "string" },
|
|
828
984
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
829
|
-
rel: {
|
|
985
|
+
rel: {
|
|
986
|
+
required: false,
|
|
987
|
+
control: "text",
|
|
988
|
+
type: "string",
|
|
989
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
990
|
+
},
|
|
830
991
|
resource: { required: false, control: "text", type: "string" },
|
|
831
992
|
results: { required: false, control: "number", type: "number" },
|
|
832
993
|
rev: { required: false, control: "text", type: "string" },
|
|
833
|
-
role: {
|
|
994
|
+
role: {
|
|
995
|
+
required: false,
|
|
996
|
+
control: "text",
|
|
997
|
+
type: "string",
|
|
998
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
999
|
+
},
|
|
834
1000
|
security: { required: false, control: "text", type: "string" },
|
|
835
|
-
slot: {
|
|
836
|
-
|
|
1001
|
+
slot: {
|
|
1002
|
+
required: false,
|
|
1003
|
+
control: "text",
|
|
1004
|
+
type: "string",
|
|
1005
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1006
|
+
},
|
|
1007
|
+
spellCheck: {
|
|
1008
|
+
required: false,
|
|
1009
|
+
control: "boolean",
|
|
1010
|
+
type: "boolean",
|
|
1011
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1012
|
+
},
|
|
837
1013
|
suppressContentEditableWarning: {
|
|
838
1014
|
required: false,
|
|
839
1015
|
control: "boolean",
|
|
@@ -844,13 +1020,24 @@ const propsDialogContent = {
|
|
|
844
1020
|
control: "boolean",
|
|
845
1021
|
type: "boolean"
|
|
846
1022
|
},
|
|
847
|
-
tabIndex: {
|
|
848
|
-
|
|
1023
|
+
tabIndex: {
|
|
1024
|
+
required: false,
|
|
1025
|
+
control: "number",
|
|
1026
|
+
type: "number",
|
|
1027
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1028
|
+
},
|
|
1029
|
+
title: {
|
|
1030
|
+
required: false,
|
|
1031
|
+
control: "text",
|
|
1032
|
+
type: "string",
|
|
1033
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1034
|
+
},
|
|
849
1035
|
translate: {
|
|
850
1036
|
required: false,
|
|
851
1037
|
control: "radio",
|
|
852
1038
|
type: "string",
|
|
853
|
-
options: ["yes", "no"]
|
|
1039
|
+
options: ["yes", "no"],
|
|
1040
|
+
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."
|
|
854
1041
|
},
|
|
855
1042
|
typeof: { required: false, control: "text", type: "string" },
|
|
856
1043
|
unselectable: {
|
|
@@ -863,7 +1050,12 @@ const propsDialogContent = {
|
|
|
863
1050
|
};
|
|
864
1051
|
const propsDialogClose = {
|
|
865
1052
|
about: { required: false, control: "text", type: "string" },
|
|
866
|
-
accessKey: {
|
|
1053
|
+
accessKey: {
|
|
1054
|
+
required: false,
|
|
1055
|
+
control: "text",
|
|
1056
|
+
type: "string",
|
|
1057
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1058
|
+
},
|
|
867
1059
|
"aria-activedescendant": {
|
|
868
1060
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
869
1061
|
required: false,
|
|
@@ -1019,7 +1211,7 @@ const propsDialogClose = {
|
|
|
1019
1211
|
type: "string"
|
|
1020
1212
|
},
|
|
1021
1213
|
"aria-label": {
|
|
1022
|
-
description: "
|
|
1214
|
+
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.",
|
|
1023
1215
|
required: false,
|
|
1024
1216
|
control: "text",
|
|
1025
1217
|
type: "string"
|
|
@@ -1195,26 +1387,106 @@ const propsDialogClose = {
|
|
|
1195
1387
|
control: "text",
|
|
1196
1388
|
type: "string"
|
|
1197
1389
|
},
|
|
1198
|
-
autoCapitalize: {
|
|
1390
|
+
autoCapitalize: {
|
|
1391
|
+
required: false,
|
|
1392
|
+
control: "text",
|
|
1393
|
+
type: "string",
|
|
1394
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1395
|
+
},
|
|
1199
1396
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1200
|
-
autoFocus: {
|
|
1397
|
+
autoFocus: {
|
|
1398
|
+
required: false,
|
|
1399
|
+
control: "boolean",
|
|
1400
|
+
type: "boolean",
|
|
1401
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1402
|
+
},
|
|
1201
1403
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1202
1404
|
className: { required: false, control: "text", type: "string" },
|
|
1203
|
-
color: {
|
|
1204
|
-
|
|
1205
|
-
|
|
1405
|
+
color: {
|
|
1406
|
+
required: false,
|
|
1407
|
+
control: "color",
|
|
1408
|
+
type: "string",
|
|
1409
|
+
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."
|
|
1410
|
+
},
|
|
1411
|
+
content: {
|
|
1412
|
+
required: false,
|
|
1413
|
+
control: "text",
|
|
1414
|
+
type: "string",
|
|
1415
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1416
|
+
},
|
|
1417
|
+
contextMenu: {
|
|
1418
|
+
required: false,
|
|
1419
|
+
control: "text",
|
|
1420
|
+
type: "string",
|
|
1421
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1422
|
+
},
|
|
1206
1423
|
datatype: { required: false, control: "text", type: "string" },
|
|
1207
|
-
dir: {
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1424
|
+
dir: {
|
|
1425
|
+
required: false,
|
|
1426
|
+
control: "text",
|
|
1427
|
+
type: "string",
|
|
1428
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1429
|
+
},
|
|
1430
|
+
disabled: {
|
|
1431
|
+
required: false,
|
|
1432
|
+
control: "boolean",
|
|
1433
|
+
type: "boolean",
|
|
1434
|
+
description: "Indicates whether the user can interact with the element."
|
|
1435
|
+
},
|
|
1436
|
+
draggable: {
|
|
1437
|
+
required: false,
|
|
1438
|
+
control: "boolean",
|
|
1439
|
+
type: "boolean",
|
|
1440
|
+
description: "Defines whether the element can be dragged."
|
|
1441
|
+
},
|
|
1442
|
+
form: {
|
|
1443
|
+
required: false,
|
|
1444
|
+
control: "text",
|
|
1445
|
+
type: "string",
|
|
1446
|
+
description: "Indicates the form that is the owner of the element."
|
|
1447
|
+
},
|
|
1448
|
+
formAction: {
|
|
1449
|
+
required: false,
|
|
1450
|
+
control: "text",
|
|
1451
|
+
type: "string",
|
|
1452
|
+
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
1453
|
+
},
|
|
1454
|
+
formEncType: {
|
|
1455
|
+
required: false,
|
|
1456
|
+
control: "text",
|
|
1457
|
+
type: "string",
|
|
1458
|
+
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.`
|
|
1459
|
+
},
|
|
1460
|
+
formMethod: {
|
|
1461
|
+
required: false,
|
|
1462
|
+
control: "text",
|
|
1463
|
+
type: "string",
|
|
1464
|
+
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.`
|
|
1465
|
+
},
|
|
1466
|
+
formNoValidate: {
|
|
1467
|
+
required: false,
|
|
1468
|
+
control: "boolean",
|
|
1469
|
+
type: "boolean",
|
|
1470
|
+
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.`
|
|
1471
|
+
},
|
|
1472
|
+
formTarget: {
|
|
1473
|
+
required: false,
|
|
1474
|
+
control: "text",
|
|
1475
|
+
type: "string",
|
|
1476
|
+
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.`
|
|
1477
|
+
},
|
|
1478
|
+
hidden: {
|
|
1479
|
+
required: false,
|
|
1480
|
+
control: "boolean",
|
|
1481
|
+
type: "boolean",
|
|
1482
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1483
|
+
},
|
|
1484
|
+
id: {
|
|
1485
|
+
required: false,
|
|
1486
|
+
control: "text",
|
|
1487
|
+
type: "string",
|
|
1488
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1489
|
+
},
|
|
1218
1490
|
inputMode: {
|
|
1219
1491
|
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",
|
|
1220
1492
|
required: false,
|
|
@@ -1242,21 +1514,56 @@ const propsDialogClose = {
|
|
|
1242
1514
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1243
1515
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1244
1516
|
itemType: { required: false, control: "text", type: "string" },
|
|
1245
|
-
lang: {
|
|
1246
|
-
|
|
1517
|
+
lang: {
|
|
1518
|
+
required: false,
|
|
1519
|
+
control: "text",
|
|
1520
|
+
type: "string",
|
|
1521
|
+
description: "Defines the language used in the element."
|
|
1522
|
+
},
|
|
1523
|
+
name: {
|
|
1524
|
+
required: false,
|
|
1525
|
+
control: "text",
|
|
1526
|
+
type: "string",
|
|
1527
|
+
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)."
|
|
1528
|
+
},
|
|
1247
1529
|
nonce: { required: false, control: "text", type: "string" },
|
|
1248
|
-
placeholder: {
|
|
1530
|
+
placeholder: {
|
|
1531
|
+
required: false,
|
|
1532
|
+
control: "text",
|
|
1533
|
+
type: "string",
|
|
1534
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
1535
|
+
},
|
|
1249
1536
|
prefix: { required: false, control: "text", type: "string" },
|
|
1250
1537
|
property: { required: false, control: "text", type: "string" },
|
|
1251
1538
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1252
|
-
rel: {
|
|
1539
|
+
rel: {
|
|
1540
|
+
required: false,
|
|
1541
|
+
control: "text",
|
|
1542
|
+
type: "string",
|
|
1543
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
1544
|
+
},
|
|
1253
1545
|
resource: { required: false, control: "text", type: "string" },
|
|
1254
1546
|
results: { required: false, control: "number", type: "number" },
|
|
1255
1547
|
rev: { required: false, control: "text", type: "string" },
|
|
1256
|
-
role: {
|
|
1548
|
+
role: {
|
|
1549
|
+
required: false,
|
|
1550
|
+
control: "text",
|
|
1551
|
+
type: "string",
|
|
1552
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1553
|
+
},
|
|
1257
1554
|
security: { required: false, control: "text", type: "string" },
|
|
1258
|
-
slot: {
|
|
1259
|
-
|
|
1555
|
+
slot: {
|
|
1556
|
+
required: false,
|
|
1557
|
+
control: "text",
|
|
1558
|
+
type: "string",
|
|
1559
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1560
|
+
},
|
|
1561
|
+
spellCheck: {
|
|
1562
|
+
required: false,
|
|
1563
|
+
control: "boolean",
|
|
1564
|
+
type: "boolean",
|
|
1565
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1566
|
+
},
|
|
1260
1567
|
suppressContentEditableWarning: {
|
|
1261
1568
|
required: false,
|
|
1262
1569
|
control: "boolean",
|
|
@@ -1267,19 +1574,31 @@ const propsDialogClose = {
|
|
|
1267
1574
|
control: "boolean",
|
|
1268
1575
|
type: "boolean"
|
|
1269
1576
|
},
|
|
1270
|
-
tabIndex: {
|
|
1271
|
-
|
|
1577
|
+
tabIndex: {
|
|
1578
|
+
required: false,
|
|
1579
|
+
control: "number",
|
|
1580
|
+
type: "number",
|
|
1581
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1582
|
+
},
|
|
1583
|
+
title: {
|
|
1584
|
+
required: false,
|
|
1585
|
+
control: "text",
|
|
1586
|
+
type: "string",
|
|
1587
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1588
|
+
},
|
|
1272
1589
|
translate: {
|
|
1273
1590
|
required: false,
|
|
1274
1591
|
control: "radio",
|
|
1275
1592
|
type: "string",
|
|
1276
|
-
options: ["yes", "no"]
|
|
1593
|
+
options: ["yes", "no"],
|
|
1594
|
+
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."
|
|
1277
1595
|
},
|
|
1278
1596
|
type: {
|
|
1279
1597
|
required: false,
|
|
1280
1598
|
control: "radio",
|
|
1281
1599
|
type: "string",
|
|
1282
|
-
options: ["button", "submit", "reset"]
|
|
1600
|
+
options: ["button", "submit", "reset"],
|
|
1601
|
+
description: "Defines the type of the element."
|
|
1283
1602
|
},
|
|
1284
1603
|
typeof: { required: false, control: "text", type: "string" },
|
|
1285
1604
|
unselectable: {
|
|
@@ -1292,7 +1611,12 @@ const propsDialogClose = {
|
|
|
1292
1611
|
};
|
|
1293
1612
|
const propsDialogTitle = {
|
|
1294
1613
|
about: { required: false, control: "text", type: "string" },
|
|
1295
|
-
accessKey: {
|
|
1614
|
+
accessKey: {
|
|
1615
|
+
required: false,
|
|
1616
|
+
control: "text",
|
|
1617
|
+
type: "string",
|
|
1618
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1619
|
+
},
|
|
1296
1620
|
"aria-activedescendant": {
|
|
1297
1621
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1298
1622
|
required: false,
|
|
@@ -1448,7 +1772,7 @@ const propsDialogTitle = {
|
|
|
1448
1772
|
type: "string"
|
|
1449
1773
|
},
|
|
1450
1774
|
"aria-label": {
|
|
1451
|
-
description: "
|
|
1775
|
+
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.",
|
|
1452
1776
|
required: false,
|
|
1453
1777
|
control: "text",
|
|
1454
1778
|
type: "string"
|
|
@@ -1624,19 +1948,64 @@ const propsDialogTitle = {
|
|
|
1624
1948
|
control: "text",
|
|
1625
1949
|
type: "string"
|
|
1626
1950
|
},
|
|
1627
|
-
autoCapitalize: {
|
|
1951
|
+
autoCapitalize: {
|
|
1952
|
+
required: false,
|
|
1953
|
+
control: "text",
|
|
1954
|
+
type: "string",
|
|
1955
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1956
|
+
},
|
|
1628
1957
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1629
|
-
autoFocus: {
|
|
1958
|
+
autoFocus: {
|
|
1959
|
+
required: false,
|
|
1960
|
+
control: "boolean",
|
|
1961
|
+
type: "boolean",
|
|
1962
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1963
|
+
},
|
|
1630
1964
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1631
1965
|
className: { required: false, control: "text", type: "string" },
|
|
1632
|
-
color: {
|
|
1633
|
-
|
|
1634
|
-
|
|
1966
|
+
color: {
|
|
1967
|
+
required: false,
|
|
1968
|
+
control: "color",
|
|
1969
|
+
type: "string",
|
|
1970
|
+
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."
|
|
1971
|
+
},
|
|
1972
|
+
content: {
|
|
1973
|
+
required: false,
|
|
1974
|
+
control: "text",
|
|
1975
|
+
type: "string",
|
|
1976
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1977
|
+
},
|
|
1978
|
+
contextMenu: {
|
|
1979
|
+
required: false,
|
|
1980
|
+
control: "text",
|
|
1981
|
+
type: "string",
|
|
1982
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1983
|
+
},
|
|
1635
1984
|
datatype: { required: false, control: "text", type: "string" },
|
|
1636
|
-
dir: {
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1985
|
+
dir: {
|
|
1986
|
+
required: false,
|
|
1987
|
+
control: "text",
|
|
1988
|
+
type: "string",
|
|
1989
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1990
|
+
},
|
|
1991
|
+
draggable: {
|
|
1992
|
+
required: false,
|
|
1993
|
+
control: "boolean",
|
|
1994
|
+
type: "boolean",
|
|
1995
|
+
description: "Defines whether the element can be dragged."
|
|
1996
|
+
},
|
|
1997
|
+
hidden: {
|
|
1998
|
+
required: false,
|
|
1999
|
+
control: "boolean",
|
|
2000
|
+
type: "boolean",
|
|
2001
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2002
|
+
},
|
|
2003
|
+
id: {
|
|
2004
|
+
required: false,
|
|
2005
|
+
control: "text",
|
|
2006
|
+
type: "string",
|
|
2007
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2008
|
+
},
|
|
1640
2009
|
inputMode: {
|
|
1641
2010
|
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",
|
|
1642
2011
|
required: false,
|
|
@@ -1664,20 +2033,50 @@ const propsDialogTitle = {
|
|
|
1664
2033
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1665
2034
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1666
2035
|
itemType: { required: false, control: "text", type: "string" },
|
|
1667
|
-
lang: {
|
|
2036
|
+
lang: {
|
|
2037
|
+
required: false,
|
|
2038
|
+
control: "text",
|
|
2039
|
+
type: "string",
|
|
2040
|
+
description: "Defines the language used in the element."
|
|
2041
|
+
},
|
|
1668
2042
|
nonce: { required: false, control: "text", type: "string" },
|
|
1669
|
-
placeholder: {
|
|
2043
|
+
placeholder: {
|
|
2044
|
+
required: false,
|
|
2045
|
+
control: "text",
|
|
2046
|
+
type: "string",
|
|
2047
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2048
|
+
},
|
|
1670
2049
|
prefix: { required: false, control: "text", type: "string" },
|
|
1671
2050
|
property: { required: false, control: "text", type: "string" },
|
|
1672
2051
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1673
|
-
rel: {
|
|
2052
|
+
rel: {
|
|
2053
|
+
required: false,
|
|
2054
|
+
control: "text",
|
|
2055
|
+
type: "string",
|
|
2056
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2057
|
+
},
|
|
1674
2058
|
resource: { required: false, control: "text", type: "string" },
|
|
1675
2059
|
results: { required: false, control: "number", type: "number" },
|
|
1676
2060
|
rev: { required: false, control: "text", type: "string" },
|
|
1677
|
-
role: {
|
|
2061
|
+
role: {
|
|
2062
|
+
required: false,
|
|
2063
|
+
control: "text",
|
|
2064
|
+
type: "string",
|
|
2065
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2066
|
+
},
|
|
1678
2067
|
security: { required: false, control: "text", type: "string" },
|
|
1679
|
-
slot: {
|
|
1680
|
-
|
|
2068
|
+
slot: {
|
|
2069
|
+
required: false,
|
|
2070
|
+
control: "text",
|
|
2071
|
+
type: "string",
|
|
2072
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2073
|
+
},
|
|
2074
|
+
spellCheck: {
|
|
2075
|
+
required: false,
|
|
2076
|
+
control: "boolean",
|
|
2077
|
+
type: "boolean",
|
|
2078
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2079
|
+
},
|
|
1681
2080
|
suppressContentEditableWarning: {
|
|
1682
2081
|
required: false,
|
|
1683
2082
|
control: "boolean",
|
|
@@ -1688,13 +2087,24 @@ const propsDialogTitle = {
|
|
|
1688
2087
|
control: "boolean",
|
|
1689
2088
|
type: "boolean"
|
|
1690
2089
|
},
|
|
1691
|
-
tabIndex: {
|
|
1692
|
-
|
|
2090
|
+
tabIndex: {
|
|
2091
|
+
required: false,
|
|
2092
|
+
control: "number",
|
|
2093
|
+
type: "number",
|
|
2094
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2095
|
+
},
|
|
2096
|
+
title: {
|
|
2097
|
+
required: false,
|
|
2098
|
+
control: "text",
|
|
2099
|
+
type: "string",
|
|
2100
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2101
|
+
},
|
|
1693
2102
|
translate: {
|
|
1694
2103
|
required: false,
|
|
1695
2104
|
control: "radio",
|
|
1696
2105
|
type: "string",
|
|
1697
|
-
options: ["yes", "no"]
|
|
2106
|
+
options: ["yes", "no"],
|
|
2107
|
+
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."
|
|
1698
2108
|
},
|
|
1699
2109
|
typeof: { required: false, control: "text", type: "string" },
|
|
1700
2110
|
unselectable: {
|
|
@@ -1707,7 +2117,12 @@ const propsDialogTitle = {
|
|
|
1707
2117
|
};
|
|
1708
2118
|
const propsDialogDescription = {
|
|
1709
2119
|
about: { required: false, control: "text", type: "string" },
|
|
1710
|
-
accessKey: {
|
|
2120
|
+
accessKey: {
|
|
2121
|
+
required: false,
|
|
2122
|
+
control: "text",
|
|
2123
|
+
type: "string",
|
|
2124
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2125
|
+
},
|
|
1711
2126
|
"aria-activedescendant": {
|
|
1712
2127
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1713
2128
|
required: false,
|
|
@@ -1863,7 +2278,7 @@ const propsDialogDescription = {
|
|
|
1863
2278
|
type: "string"
|
|
1864
2279
|
},
|
|
1865
2280
|
"aria-label": {
|
|
1866
|
-
description: "
|
|
2281
|
+
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.",
|
|
1867
2282
|
required: false,
|
|
1868
2283
|
control: "text",
|
|
1869
2284
|
type: "string"
|
|
@@ -2039,19 +2454,64 @@ const propsDialogDescription = {
|
|
|
2039
2454
|
control: "text",
|
|
2040
2455
|
type: "string"
|
|
2041
2456
|
},
|
|
2042
|
-
autoCapitalize: {
|
|
2457
|
+
autoCapitalize: {
|
|
2458
|
+
required: false,
|
|
2459
|
+
control: "text",
|
|
2460
|
+
type: "string",
|
|
2461
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
2462
|
+
},
|
|
2043
2463
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2044
|
-
autoFocus: {
|
|
2464
|
+
autoFocus: {
|
|
2465
|
+
required: false,
|
|
2466
|
+
control: "boolean",
|
|
2467
|
+
type: "boolean",
|
|
2468
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
2469
|
+
},
|
|
2045
2470
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2046
2471
|
className: { required: false, control: "text", type: "string" },
|
|
2047
|
-
color: {
|
|
2048
|
-
|
|
2049
|
-
|
|
2472
|
+
color: {
|
|
2473
|
+
required: false,
|
|
2474
|
+
control: "color",
|
|
2475
|
+
type: "string",
|
|
2476
|
+
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."
|
|
2477
|
+
},
|
|
2478
|
+
content: {
|
|
2479
|
+
required: false,
|
|
2480
|
+
control: "text",
|
|
2481
|
+
type: "string",
|
|
2482
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
2483
|
+
},
|
|
2484
|
+
contextMenu: {
|
|
2485
|
+
required: false,
|
|
2486
|
+
control: "text",
|
|
2487
|
+
type: "string",
|
|
2488
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
2489
|
+
},
|
|
2050
2490
|
datatype: { required: false, control: "text", type: "string" },
|
|
2051
|
-
dir: {
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2491
|
+
dir: {
|
|
2492
|
+
required: false,
|
|
2493
|
+
control: "text",
|
|
2494
|
+
type: "string",
|
|
2495
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
2496
|
+
},
|
|
2497
|
+
draggable: {
|
|
2498
|
+
required: false,
|
|
2499
|
+
control: "boolean",
|
|
2500
|
+
type: "boolean",
|
|
2501
|
+
description: "Defines whether the element can be dragged."
|
|
2502
|
+
},
|
|
2503
|
+
hidden: {
|
|
2504
|
+
required: false,
|
|
2505
|
+
control: "boolean",
|
|
2506
|
+
type: "boolean",
|
|
2507
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2508
|
+
},
|
|
2509
|
+
id: {
|
|
2510
|
+
required: false,
|
|
2511
|
+
control: "text",
|
|
2512
|
+
type: "string",
|
|
2513
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2514
|
+
},
|
|
2055
2515
|
inputMode: {
|
|
2056
2516
|
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",
|
|
2057
2517
|
required: false,
|
|
@@ -2079,20 +2539,50 @@ const propsDialogDescription = {
|
|
|
2079
2539
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2080
2540
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2081
2541
|
itemType: { required: false, control: "text", type: "string" },
|
|
2082
|
-
lang: {
|
|
2542
|
+
lang: {
|
|
2543
|
+
required: false,
|
|
2544
|
+
control: "text",
|
|
2545
|
+
type: "string",
|
|
2546
|
+
description: "Defines the language used in the element."
|
|
2547
|
+
},
|
|
2083
2548
|
nonce: { required: false, control: "text", type: "string" },
|
|
2084
|
-
placeholder: {
|
|
2549
|
+
placeholder: {
|
|
2550
|
+
required: false,
|
|
2551
|
+
control: "text",
|
|
2552
|
+
type: "string",
|
|
2553
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2554
|
+
},
|
|
2085
2555
|
prefix: { required: false, control: "text", type: "string" },
|
|
2086
2556
|
property: { required: false, control: "text", type: "string" },
|
|
2087
2557
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2088
|
-
rel: {
|
|
2558
|
+
rel: {
|
|
2559
|
+
required: false,
|
|
2560
|
+
control: "text",
|
|
2561
|
+
type: "string",
|
|
2562
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2563
|
+
},
|
|
2089
2564
|
resource: { required: false, control: "text", type: "string" },
|
|
2090
2565
|
results: { required: false, control: "number", type: "number" },
|
|
2091
2566
|
rev: { required: false, control: "text", type: "string" },
|
|
2092
|
-
role: {
|
|
2567
|
+
role: {
|
|
2568
|
+
required: false,
|
|
2569
|
+
control: "text",
|
|
2570
|
+
type: "string",
|
|
2571
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2572
|
+
},
|
|
2093
2573
|
security: { required: false, control: "text", type: "string" },
|
|
2094
|
-
slot: {
|
|
2095
|
-
|
|
2574
|
+
slot: {
|
|
2575
|
+
required: false,
|
|
2576
|
+
control: "text",
|
|
2577
|
+
type: "string",
|
|
2578
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2579
|
+
},
|
|
2580
|
+
spellCheck: {
|
|
2581
|
+
required: false,
|
|
2582
|
+
control: "boolean",
|
|
2583
|
+
type: "boolean",
|
|
2584
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2585
|
+
},
|
|
2096
2586
|
suppressContentEditableWarning: {
|
|
2097
2587
|
required: false,
|
|
2098
2588
|
control: "boolean",
|
|
@@ -2103,13 +2593,24 @@ const propsDialogDescription = {
|
|
|
2103
2593
|
control: "boolean",
|
|
2104
2594
|
type: "boolean"
|
|
2105
2595
|
},
|
|
2106
|
-
tabIndex: {
|
|
2107
|
-
|
|
2596
|
+
tabIndex: {
|
|
2597
|
+
required: false,
|
|
2598
|
+
control: "number",
|
|
2599
|
+
type: "number",
|
|
2600
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2601
|
+
},
|
|
2602
|
+
title: {
|
|
2603
|
+
required: false,
|
|
2604
|
+
control: "text",
|
|
2605
|
+
type: "string",
|
|
2606
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2607
|
+
},
|
|
2108
2608
|
translate: {
|
|
2109
2609
|
required: false,
|
|
2110
2610
|
control: "radio",
|
|
2111
2611
|
type: "string",
|
|
2112
|
-
options: ["yes", "no"]
|
|
2612
|
+
options: ["yes", "no"],
|
|
2613
|
+
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."
|
|
2113
2614
|
},
|
|
2114
2615
|
typeof: { required: false, control: "text", type: "string" },
|
|
2115
2616
|
unselectable: {
|