@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
|
@@ -29,22 +29,58 @@ __export(select_props_exports, {
|
|
|
29
29
|
});
|
|
30
30
|
module.exports = __toCommonJS(select_props_exports);
|
|
31
31
|
const propsSelect = {
|
|
32
|
-
autoComplete: {
|
|
32
|
+
autoComplete: {
|
|
33
|
+
required: false,
|
|
34
|
+
control: "text",
|
|
35
|
+
type: "string",
|
|
36
|
+
description: "Indicates whether controls in this form can by default have their valuesautomatically completed by the browser."
|
|
37
|
+
},
|
|
33
38
|
dir: {
|
|
34
39
|
required: false,
|
|
35
40
|
control: "radio",
|
|
36
41
|
type: "string",
|
|
37
|
-
options: ["ltr", "rtl"]
|
|
42
|
+
options: ["ltr", "rtl"],
|
|
43
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
44
|
+
},
|
|
45
|
+
disabled: {
|
|
46
|
+
required: false,
|
|
47
|
+
control: "boolean",
|
|
48
|
+
type: "boolean",
|
|
49
|
+
description: "Indicates whether the user can interact with the element."
|
|
50
|
+
},
|
|
51
|
+
name: {
|
|
52
|
+
required: false,
|
|
53
|
+
control: "text",
|
|
54
|
+
type: "string",
|
|
55
|
+
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)."
|
|
56
|
+
},
|
|
57
|
+
open: {
|
|
58
|
+
required: false,
|
|
59
|
+
control: "boolean",
|
|
60
|
+
type: "boolean",
|
|
61
|
+
description: "Indicates whether the contents are currently visible (in the case of a <details> element) or whether the dialog is active and can be interacted with (in the case of a <dialog> element)."
|
|
62
|
+
},
|
|
63
|
+
required: {
|
|
64
|
+
required: false,
|
|
65
|
+
control: "boolean",
|
|
66
|
+
type: "boolean",
|
|
67
|
+
description: "Indicates whether this form element must be filled before the form can be submitted."
|
|
38
68
|
},
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
69
|
+
value: {
|
|
70
|
+
required: false,
|
|
71
|
+
control: "text",
|
|
72
|
+
type: "string",
|
|
73
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
74
|
+
}
|
|
44
75
|
};
|
|
45
76
|
const propsSelectTrigger = {
|
|
46
77
|
about: { required: false, control: "text", type: "string" },
|
|
47
|
-
accessKey: {
|
|
78
|
+
accessKey: {
|
|
79
|
+
required: false,
|
|
80
|
+
control: "text",
|
|
81
|
+
type: "string",
|
|
82
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
83
|
+
},
|
|
48
84
|
"aria-activedescendant": {
|
|
49
85
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
50
86
|
required: false,
|
|
@@ -200,7 +236,7 @@ const propsSelectTrigger = {
|
|
|
200
236
|
type: "string"
|
|
201
237
|
},
|
|
202
238
|
"aria-label": {
|
|
203
|
-
description: "
|
|
239
|
+
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.",
|
|
204
240
|
required: false,
|
|
205
241
|
control: "text",
|
|
206
242
|
type: "string"
|
|
@@ -376,26 +412,106 @@ const propsSelectTrigger = {
|
|
|
376
412
|
control: "text",
|
|
377
413
|
type: "string"
|
|
378
414
|
},
|
|
379
|
-
autoCapitalize: {
|
|
415
|
+
autoCapitalize: {
|
|
416
|
+
required: false,
|
|
417
|
+
control: "text",
|
|
418
|
+
type: "string",
|
|
419
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
420
|
+
},
|
|
380
421
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
381
|
-
autoFocus: {
|
|
422
|
+
autoFocus: {
|
|
423
|
+
required: false,
|
|
424
|
+
control: "boolean",
|
|
425
|
+
type: "boolean",
|
|
426
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
427
|
+
},
|
|
382
428
|
autoSave: { required: false, control: "text", type: "string" },
|
|
383
429
|
className: { required: false, control: "text", type: "string" },
|
|
384
|
-
color: {
|
|
385
|
-
|
|
386
|
-
|
|
430
|
+
color: {
|
|
431
|
+
required: false,
|
|
432
|
+
control: "color",
|
|
433
|
+
type: "string",
|
|
434
|
+
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."
|
|
435
|
+
},
|
|
436
|
+
content: {
|
|
437
|
+
required: false,
|
|
438
|
+
control: "text",
|
|
439
|
+
type: "string",
|
|
440
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
441
|
+
},
|
|
442
|
+
contextMenu: {
|
|
443
|
+
required: false,
|
|
444
|
+
control: "text",
|
|
445
|
+
type: "string",
|
|
446
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
447
|
+
},
|
|
387
448
|
datatype: { required: false, control: "text", type: "string" },
|
|
388
|
-
dir: {
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
449
|
+
dir: {
|
|
450
|
+
required: false,
|
|
451
|
+
control: "text",
|
|
452
|
+
type: "string",
|
|
453
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
454
|
+
},
|
|
455
|
+
disabled: {
|
|
456
|
+
required: false,
|
|
457
|
+
control: "boolean",
|
|
458
|
+
type: "boolean",
|
|
459
|
+
description: "Indicates whether the user can interact with the element."
|
|
460
|
+
},
|
|
461
|
+
draggable: {
|
|
462
|
+
required: false,
|
|
463
|
+
control: "boolean",
|
|
464
|
+
type: "boolean",
|
|
465
|
+
description: "Defines whether the element can be dragged."
|
|
466
|
+
},
|
|
467
|
+
form: {
|
|
468
|
+
required: false,
|
|
469
|
+
control: "text",
|
|
470
|
+
type: "string",
|
|
471
|
+
description: "Indicates the form that is the owner of the element."
|
|
472
|
+
},
|
|
473
|
+
formAction: {
|
|
474
|
+
required: false,
|
|
475
|
+
control: "text",
|
|
476
|
+
type: "string",
|
|
477
|
+
description: "Indicates the action of the element, overriding the action defined inthe form."
|
|
478
|
+
},
|
|
479
|
+
formEncType: {
|
|
480
|
+
required: false,
|
|
481
|
+
control: "text",
|
|
482
|
+
type: "string",
|
|
483
|
+
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.`
|
|
484
|
+
},
|
|
485
|
+
formMethod: {
|
|
486
|
+
required: false,
|
|
487
|
+
control: "text",
|
|
488
|
+
type: "string",
|
|
489
|
+
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.`
|
|
490
|
+
},
|
|
491
|
+
formNoValidate: {
|
|
492
|
+
required: false,
|
|
493
|
+
control: "boolean",
|
|
494
|
+
type: "boolean",
|
|
495
|
+
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.`
|
|
496
|
+
},
|
|
497
|
+
formTarget: {
|
|
498
|
+
required: false,
|
|
499
|
+
control: "text",
|
|
500
|
+
type: "string",
|
|
501
|
+
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.`
|
|
502
|
+
},
|
|
503
|
+
hidden: {
|
|
504
|
+
required: false,
|
|
505
|
+
control: "boolean",
|
|
506
|
+
type: "boolean",
|
|
507
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
508
|
+
},
|
|
509
|
+
id: {
|
|
510
|
+
required: false,
|
|
511
|
+
control: "text",
|
|
512
|
+
type: "string",
|
|
513
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
514
|
+
},
|
|
399
515
|
inputMode: {
|
|
400
516
|
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",
|
|
401
517
|
required: false,
|
|
@@ -423,21 +539,56 @@ const propsSelectTrigger = {
|
|
|
423
539
|
itemRef: { required: false, control: "text", type: "string" },
|
|
424
540
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
425
541
|
itemType: { required: false, control: "text", type: "string" },
|
|
426
|
-
lang: {
|
|
427
|
-
|
|
542
|
+
lang: {
|
|
543
|
+
required: false,
|
|
544
|
+
control: "text",
|
|
545
|
+
type: "string",
|
|
546
|
+
description: "Defines the language used in the element."
|
|
547
|
+
},
|
|
548
|
+
name: {
|
|
549
|
+
required: false,
|
|
550
|
+
control: "text",
|
|
551
|
+
type: "string",
|
|
552
|
+
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)."
|
|
553
|
+
},
|
|
428
554
|
nonce: { required: false, control: "text", type: "string" },
|
|
429
|
-
placeholder: {
|
|
555
|
+
placeholder: {
|
|
556
|
+
required: false,
|
|
557
|
+
control: "text",
|
|
558
|
+
type: "string",
|
|
559
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
560
|
+
},
|
|
430
561
|
prefix: { required: false, control: "text", type: "string" },
|
|
431
562
|
property: { required: false, control: "text", type: "string" },
|
|
432
563
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
433
|
-
rel: {
|
|
564
|
+
rel: {
|
|
565
|
+
required: false,
|
|
566
|
+
control: "text",
|
|
567
|
+
type: "string",
|
|
568
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
569
|
+
},
|
|
434
570
|
resource: { required: false, control: "text", type: "string" },
|
|
435
571
|
results: { required: false, control: "number", type: "number" },
|
|
436
572
|
rev: { required: false, control: "text", type: "string" },
|
|
437
|
-
role: {
|
|
573
|
+
role: {
|
|
574
|
+
required: false,
|
|
575
|
+
control: "text",
|
|
576
|
+
type: "string",
|
|
577
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
578
|
+
},
|
|
438
579
|
security: { required: false, control: "text", type: "string" },
|
|
439
|
-
slot: {
|
|
440
|
-
|
|
580
|
+
slot: {
|
|
581
|
+
required: false,
|
|
582
|
+
control: "text",
|
|
583
|
+
type: "string",
|
|
584
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
585
|
+
},
|
|
586
|
+
spellCheck: {
|
|
587
|
+
required: false,
|
|
588
|
+
control: "boolean",
|
|
589
|
+
type: "boolean",
|
|
590
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
591
|
+
},
|
|
441
592
|
suppressContentEditableWarning: {
|
|
442
593
|
required: false,
|
|
443
594
|
control: "boolean",
|
|
@@ -448,19 +599,31 @@ const propsSelectTrigger = {
|
|
|
448
599
|
control: "boolean",
|
|
449
600
|
type: "boolean"
|
|
450
601
|
},
|
|
451
|
-
tabIndex: {
|
|
452
|
-
|
|
602
|
+
tabIndex: {
|
|
603
|
+
required: false,
|
|
604
|
+
control: "number",
|
|
605
|
+
type: "number",
|
|
606
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
607
|
+
},
|
|
608
|
+
title: {
|
|
609
|
+
required: false,
|
|
610
|
+
control: "text",
|
|
611
|
+
type: "string",
|
|
612
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
613
|
+
},
|
|
453
614
|
translate: {
|
|
454
615
|
required: false,
|
|
455
616
|
control: "radio",
|
|
456
617
|
type: "string",
|
|
457
|
-
options: ["yes", "no"]
|
|
618
|
+
options: ["yes", "no"],
|
|
619
|
+
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."
|
|
458
620
|
},
|
|
459
621
|
type: {
|
|
460
622
|
required: false,
|
|
461
623
|
control: "radio",
|
|
462
624
|
type: "string",
|
|
463
|
-
options: ["button", "submit", "reset"]
|
|
625
|
+
options: ["button", "submit", "reset"],
|
|
626
|
+
description: "Defines the type of the element."
|
|
464
627
|
},
|
|
465
628
|
typeof: { required: false, control: "text", type: "string" },
|
|
466
629
|
unselectable: {
|
|
@@ -473,7 +636,12 @@ const propsSelectTrigger = {
|
|
|
473
636
|
};
|
|
474
637
|
const propsSelectValue = {
|
|
475
638
|
about: { required: false, control: "text", type: "string" },
|
|
476
|
-
accessKey: {
|
|
639
|
+
accessKey: {
|
|
640
|
+
required: false,
|
|
641
|
+
control: "text",
|
|
642
|
+
type: "string",
|
|
643
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
644
|
+
},
|
|
477
645
|
"aria-activedescendant": {
|
|
478
646
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
479
647
|
required: false,
|
|
@@ -629,7 +797,7 @@ const propsSelectValue = {
|
|
|
629
797
|
type: "string"
|
|
630
798
|
},
|
|
631
799
|
"aria-label": {
|
|
632
|
-
description: "
|
|
800
|
+
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.",
|
|
633
801
|
required: false,
|
|
634
802
|
control: "text",
|
|
635
803
|
type: "string"
|
|
@@ -805,19 +973,64 @@ const propsSelectValue = {
|
|
|
805
973
|
control: "text",
|
|
806
974
|
type: "string"
|
|
807
975
|
},
|
|
808
|
-
autoCapitalize: {
|
|
976
|
+
autoCapitalize: {
|
|
977
|
+
required: false,
|
|
978
|
+
control: "text",
|
|
979
|
+
type: "string",
|
|
980
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
981
|
+
},
|
|
809
982
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
810
|
-
autoFocus: {
|
|
983
|
+
autoFocus: {
|
|
984
|
+
required: false,
|
|
985
|
+
control: "boolean",
|
|
986
|
+
type: "boolean",
|
|
987
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
988
|
+
},
|
|
811
989
|
autoSave: { required: false, control: "text", type: "string" },
|
|
812
990
|
className: { required: false, control: "text", type: "string" },
|
|
813
|
-
color: {
|
|
814
|
-
|
|
815
|
-
|
|
991
|
+
color: {
|
|
992
|
+
required: false,
|
|
993
|
+
control: "color",
|
|
994
|
+
type: "string",
|
|
995
|
+
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."
|
|
996
|
+
},
|
|
997
|
+
content: {
|
|
998
|
+
required: false,
|
|
999
|
+
control: "text",
|
|
1000
|
+
type: "string",
|
|
1001
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1002
|
+
},
|
|
1003
|
+
contextMenu: {
|
|
1004
|
+
required: false,
|
|
1005
|
+
control: "text",
|
|
1006
|
+
type: "string",
|
|
1007
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1008
|
+
},
|
|
816
1009
|
datatype: { required: false, control: "text", type: "string" },
|
|
817
|
-
dir: {
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
1010
|
+
dir: {
|
|
1011
|
+
required: false,
|
|
1012
|
+
control: "text",
|
|
1013
|
+
type: "string",
|
|
1014
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1015
|
+
},
|
|
1016
|
+
draggable: {
|
|
1017
|
+
required: false,
|
|
1018
|
+
control: "boolean",
|
|
1019
|
+
type: "boolean",
|
|
1020
|
+
description: "Defines whether the element can be dragged."
|
|
1021
|
+
},
|
|
1022
|
+
hidden: {
|
|
1023
|
+
required: false,
|
|
1024
|
+
control: "boolean",
|
|
1025
|
+
type: "boolean",
|
|
1026
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1027
|
+
},
|
|
1028
|
+
id: {
|
|
1029
|
+
required: false,
|
|
1030
|
+
control: "text",
|
|
1031
|
+
type: "string",
|
|
1032
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1033
|
+
},
|
|
821
1034
|
inputMode: {
|
|
822
1035
|
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",
|
|
823
1036
|
required: false,
|
|
@@ -845,19 +1058,45 @@ const propsSelectValue = {
|
|
|
845
1058
|
itemRef: { required: false, control: "text", type: "string" },
|
|
846
1059
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
847
1060
|
itemType: { required: false, control: "text", type: "string" },
|
|
848
|
-
lang: {
|
|
1061
|
+
lang: {
|
|
1062
|
+
required: false,
|
|
1063
|
+
control: "text",
|
|
1064
|
+
type: "string",
|
|
1065
|
+
description: "Defines the language used in the element."
|
|
1066
|
+
},
|
|
849
1067
|
nonce: { required: false, control: "text", type: "string" },
|
|
1068
|
+
placeholder: { required: false, control: "text", type: "string" },
|
|
850
1069
|
prefix: { required: false, control: "text", type: "string" },
|
|
851
1070
|
property: { required: false, control: "text", type: "string" },
|
|
852
1071
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
853
|
-
rel: {
|
|
1072
|
+
rel: {
|
|
1073
|
+
required: false,
|
|
1074
|
+
control: "text",
|
|
1075
|
+
type: "string",
|
|
1076
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
1077
|
+
},
|
|
854
1078
|
resource: { required: false, control: "text", type: "string" },
|
|
855
1079
|
results: { required: false, control: "number", type: "number" },
|
|
856
1080
|
rev: { required: false, control: "text", type: "string" },
|
|
857
|
-
role: {
|
|
1081
|
+
role: {
|
|
1082
|
+
required: false,
|
|
1083
|
+
control: "text",
|
|
1084
|
+
type: "string",
|
|
1085
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1086
|
+
},
|
|
858
1087
|
security: { required: false, control: "text", type: "string" },
|
|
859
|
-
slot: {
|
|
860
|
-
|
|
1088
|
+
slot: {
|
|
1089
|
+
required: false,
|
|
1090
|
+
control: "text",
|
|
1091
|
+
type: "string",
|
|
1092
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1093
|
+
},
|
|
1094
|
+
spellCheck: {
|
|
1095
|
+
required: false,
|
|
1096
|
+
control: "boolean",
|
|
1097
|
+
type: "boolean",
|
|
1098
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1099
|
+
},
|
|
861
1100
|
suppressContentEditableWarning: {
|
|
862
1101
|
required: false,
|
|
863
1102
|
control: "boolean",
|
|
@@ -868,13 +1107,24 @@ const propsSelectValue = {
|
|
|
868
1107
|
control: "boolean",
|
|
869
1108
|
type: "boolean"
|
|
870
1109
|
},
|
|
871
|
-
tabIndex: {
|
|
872
|
-
|
|
1110
|
+
tabIndex: {
|
|
1111
|
+
required: false,
|
|
1112
|
+
control: "number",
|
|
1113
|
+
type: "number",
|
|
1114
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1115
|
+
},
|
|
1116
|
+
title: {
|
|
1117
|
+
required: false,
|
|
1118
|
+
control: "text",
|
|
1119
|
+
type: "string",
|
|
1120
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1121
|
+
},
|
|
873
1122
|
translate: {
|
|
874
1123
|
required: false,
|
|
875
1124
|
control: "radio",
|
|
876
1125
|
type: "string",
|
|
877
|
-
options: ["yes", "no"]
|
|
1126
|
+
options: ["yes", "no"],
|
|
1127
|
+
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."
|
|
878
1128
|
},
|
|
879
1129
|
typeof: { required: false, control: "text", type: "string" },
|
|
880
1130
|
unselectable: {
|
|
@@ -887,12 +1137,18 @@ const propsSelectValue = {
|
|
|
887
1137
|
};
|
|
888
1138
|
const propsSelectContent = {
|
|
889
1139
|
about: { required: false, control: "text", type: "string" },
|
|
890
|
-
accessKey: {
|
|
1140
|
+
accessKey: {
|
|
1141
|
+
required: false,
|
|
1142
|
+
control: "text",
|
|
1143
|
+
type: "string",
|
|
1144
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1145
|
+
},
|
|
891
1146
|
align: {
|
|
892
1147
|
required: false,
|
|
893
1148
|
control: "radio",
|
|
894
1149
|
type: "string",
|
|
895
|
-
options: ["center", "start", "end"]
|
|
1150
|
+
options: ["center", "start", "end"],
|
|
1151
|
+
description: "Specifies the horizontal alignment of the element."
|
|
896
1152
|
},
|
|
897
1153
|
alignOffset: { required: false, control: "number", type: "number" },
|
|
898
1154
|
"aria-activedescendant": {
|
|
@@ -1050,7 +1306,7 @@ const propsSelectContent = {
|
|
|
1050
1306
|
type: "string"
|
|
1051
1307
|
},
|
|
1052
1308
|
"aria-label": {
|
|
1053
|
-
description: "
|
|
1309
|
+
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.",
|
|
1054
1310
|
required: false,
|
|
1055
1311
|
control: "text",
|
|
1056
1312
|
type: "string"
|
|
@@ -1227,21 +1483,66 @@ const propsSelectContent = {
|
|
|
1227
1483
|
type: "string"
|
|
1228
1484
|
},
|
|
1229
1485
|
arrowPadding: { required: false, control: "number", type: "number" },
|
|
1230
|
-
autoCapitalize: {
|
|
1486
|
+
autoCapitalize: {
|
|
1487
|
+
required: false,
|
|
1488
|
+
control: "text",
|
|
1489
|
+
type: "string",
|
|
1490
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
1491
|
+
},
|
|
1231
1492
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1232
|
-
autoFocus: {
|
|
1493
|
+
autoFocus: {
|
|
1494
|
+
required: false,
|
|
1495
|
+
control: "boolean",
|
|
1496
|
+
type: "boolean",
|
|
1497
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
1498
|
+
},
|
|
1233
1499
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1234
1500
|
avoidCollisions: { required: false, control: "boolean", type: "boolean" },
|
|
1235
1501
|
className: { required: false, control: "text", type: "string" },
|
|
1236
|
-
color: {
|
|
1237
|
-
|
|
1238
|
-
|
|
1502
|
+
color: {
|
|
1503
|
+
required: false,
|
|
1504
|
+
control: "color",
|
|
1505
|
+
type: "string",
|
|
1506
|
+
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."
|
|
1507
|
+
},
|
|
1508
|
+
content: {
|
|
1509
|
+
required: false,
|
|
1510
|
+
control: "text",
|
|
1511
|
+
type: "string",
|
|
1512
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
1513
|
+
},
|
|
1514
|
+
contextMenu: {
|
|
1515
|
+
required: false,
|
|
1516
|
+
control: "text",
|
|
1517
|
+
type: "string",
|
|
1518
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
1519
|
+
},
|
|
1239
1520
|
datatype: { required: false, control: "text", type: "string" },
|
|
1240
|
-
dir: {
|
|
1241
|
-
|
|
1242
|
-
|
|
1521
|
+
dir: {
|
|
1522
|
+
required: false,
|
|
1523
|
+
control: "text",
|
|
1524
|
+
type: "string",
|
|
1525
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
1526
|
+
},
|
|
1527
|
+
draggable: {
|
|
1528
|
+
required: false,
|
|
1529
|
+
control: "boolean",
|
|
1530
|
+
type: "boolean",
|
|
1531
|
+
description: "Defines whether the element can be dragged."
|
|
1532
|
+
},
|
|
1533
|
+
hidden: {
|
|
1534
|
+
required: false,
|
|
1535
|
+
control: "boolean",
|
|
1536
|
+
type: "boolean",
|
|
1537
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
1538
|
+
},
|
|
1243
1539
|
hideWhenDetached: { required: false, control: "boolean", type: "boolean" },
|
|
1244
|
-
id: {
|
|
1540
|
+
id: {
|
|
1541
|
+
required: false,
|
|
1542
|
+
control: "text",
|
|
1543
|
+
type: "string",
|
|
1544
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
1545
|
+
},
|
|
1245
1546
|
inputMode: {
|
|
1246
1547
|
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",
|
|
1247
1548
|
required: false,
|
|
@@ -1269,21 +1570,51 @@ const propsSelectContent = {
|
|
|
1269
1570
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1270
1571
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1271
1572
|
itemType: { required: false, control: "text", type: "string" },
|
|
1272
|
-
lang: {
|
|
1573
|
+
lang: {
|
|
1574
|
+
required: false,
|
|
1575
|
+
control: "text",
|
|
1576
|
+
type: "string",
|
|
1577
|
+
description: "Defines the language used in the element."
|
|
1578
|
+
},
|
|
1273
1579
|
nonce: { required: false, control: "text", type: "string" },
|
|
1274
|
-
placeholder: {
|
|
1580
|
+
placeholder: {
|
|
1581
|
+
required: false,
|
|
1582
|
+
control: "text",
|
|
1583
|
+
type: "string",
|
|
1584
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
1585
|
+
},
|
|
1275
1586
|
prefix: { required: false, control: "text", type: "string" },
|
|
1276
1587
|
property: { required: false, control: "text", type: "string" },
|
|
1277
1588
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1278
|
-
rel: {
|
|
1589
|
+
rel: {
|
|
1590
|
+
required: false,
|
|
1591
|
+
control: "text",
|
|
1592
|
+
type: "string",
|
|
1593
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
1594
|
+
},
|
|
1279
1595
|
resource: { required: false, control: "text", type: "string" },
|
|
1280
1596
|
results: { required: false, control: "number", type: "number" },
|
|
1281
1597
|
rev: { required: false, control: "text", type: "string" },
|
|
1282
|
-
role: {
|
|
1598
|
+
role: {
|
|
1599
|
+
required: false,
|
|
1600
|
+
control: "text",
|
|
1601
|
+
type: "string",
|
|
1602
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
1603
|
+
},
|
|
1283
1604
|
security: { required: false, control: "text", type: "string" },
|
|
1284
1605
|
sideOffset: { required: false, control: "number", type: "number" },
|
|
1285
|
-
slot: {
|
|
1286
|
-
|
|
1606
|
+
slot: {
|
|
1607
|
+
required: false,
|
|
1608
|
+
control: "text",
|
|
1609
|
+
type: "string",
|
|
1610
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
1611
|
+
},
|
|
1612
|
+
spellCheck: {
|
|
1613
|
+
required: false,
|
|
1614
|
+
control: "boolean",
|
|
1615
|
+
type: "boolean",
|
|
1616
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
1617
|
+
},
|
|
1287
1618
|
sticky: {
|
|
1288
1619
|
required: false,
|
|
1289
1620
|
control: "radio",
|
|
@@ -1300,13 +1631,24 @@ const propsSelectContent = {
|
|
|
1300
1631
|
control: "boolean",
|
|
1301
1632
|
type: "boolean"
|
|
1302
1633
|
},
|
|
1303
|
-
tabIndex: {
|
|
1304
|
-
|
|
1634
|
+
tabIndex: {
|
|
1635
|
+
required: false,
|
|
1636
|
+
control: "number",
|
|
1637
|
+
type: "number",
|
|
1638
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
1639
|
+
},
|
|
1640
|
+
title: {
|
|
1641
|
+
required: false,
|
|
1642
|
+
control: "text",
|
|
1643
|
+
type: "string",
|
|
1644
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
1645
|
+
},
|
|
1305
1646
|
translate: {
|
|
1306
1647
|
required: false,
|
|
1307
1648
|
control: "radio",
|
|
1308
1649
|
type: "string",
|
|
1309
|
-
options: ["yes", "no"]
|
|
1650
|
+
options: ["yes", "no"],
|
|
1651
|
+
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."
|
|
1310
1652
|
},
|
|
1311
1653
|
typeof: { required: false, control: "text", type: "string" },
|
|
1312
1654
|
unselectable: {
|
|
@@ -1319,7 +1661,12 @@ const propsSelectContent = {
|
|
|
1319
1661
|
};
|
|
1320
1662
|
const propsSelectViewport = {
|
|
1321
1663
|
about: { required: false, control: "text", type: "string" },
|
|
1322
|
-
accessKey: {
|
|
1664
|
+
accessKey: {
|
|
1665
|
+
required: false,
|
|
1666
|
+
control: "text",
|
|
1667
|
+
type: "string",
|
|
1668
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
1669
|
+
},
|
|
1323
1670
|
"aria-activedescendant": {
|
|
1324
1671
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1325
1672
|
required: false,
|
|
@@ -1475,7 +1822,7 @@ const propsSelectViewport = {
|
|
|
1475
1822
|
type: "string"
|
|
1476
1823
|
},
|
|
1477
1824
|
"aria-label": {
|
|
1478
|
-
description: "
|
|
1825
|
+
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.",
|
|
1479
1826
|
required: false,
|
|
1480
1827
|
control: "text",
|
|
1481
1828
|
type: "string"
|
|
@@ -1651,19 +1998,64 @@ const propsSelectViewport = {
|
|
|
1651
1998
|
control: "text",
|
|
1652
1999
|
type: "string"
|
|
1653
2000
|
},
|
|
1654
|
-
autoCapitalize: {
|
|
1655
|
-
|
|
1656
|
-
|
|
2001
|
+
autoCapitalize: {
|
|
2002
|
+
required: false,
|
|
2003
|
+
control: "text",
|
|
2004
|
+
type: "string",
|
|
2005
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
2006
|
+
},
|
|
2007
|
+
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2008
|
+
autoFocus: {
|
|
2009
|
+
required: false,
|
|
2010
|
+
control: "boolean",
|
|
2011
|
+
type: "boolean",
|
|
2012
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
2013
|
+
},
|
|
1657
2014
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1658
2015
|
className: { required: false, control: "text", type: "string" },
|
|
1659
|
-
color: {
|
|
1660
|
-
|
|
1661
|
-
|
|
2016
|
+
color: {
|
|
2017
|
+
required: false,
|
|
2018
|
+
control: "color",
|
|
2019
|
+
type: "string",
|
|
2020
|
+
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."
|
|
2021
|
+
},
|
|
2022
|
+
content: {
|
|
2023
|
+
required: false,
|
|
2024
|
+
control: "text",
|
|
2025
|
+
type: "string",
|
|
2026
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
2027
|
+
},
|
|
2028
|
+
contextMenu: {
|
|
2029
|
+
required: false,
|
|
2030
|
+
control: "text",
|
|
2031
|
+
type: "string",
|
|
2032
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
2033
|
+
},
|
|
1662
2034
|
datatype: { required: false, control: "text", type: "string" },
|
|
1663
|
-
dir: {
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
2035
|
+
dir: {
|
|
2036
|
+
required: false,
|
|
2037
|
+
control: "text",
|
|
2038
|
+
type: "string",
|
|
2039
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
2040
|
+
},
|
|
2041
|
+
draggable: {
|
|
2042
|
+
required: false,
|
|
2043
|
+
control: "boolean",
|
|
2044
|
+
type: "boolean",
|
|
2045
|
+
description: "Defines whether the element can be dragged."
|
|
2046
|
+
},
|
|
2047
|
+
hidden: {
|
|
2048
|
+
required: false,
|
|
2049
|
+
control: "boolean",
|
|
2050
|
+
type: "boolean",
|
|
2051
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2052
|
+
},
|
|
2053
|
+
id: {
|
|
2054
|
+
required: false,
|
|
2055
|
+
control: "text",
|
|
2056
|
+
type: "string",
|
|
2057
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2058
|
+
},
|
|
1667
2059
|
inputMode: {
|
|
1668
2060
|
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",
|
|
1669
2061
|
required: false,
|
|
@@ -1691,20 +2083,50 @@ const propsSelectViewport = {
|
|
|
1691
2083
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1692
2084
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1693
2085
|
itemType: { required: false, control: "text", type: "string" },
|
|
1694
|
-
lang: {
|
|
2086
|
+
lang: {
|
|
2087
|
+
required: false,
|
|
2088
|
+
control: "text",
|
|
2089
|
+
type: "string",
|
|
2090
|
+
description: "Defines the language used in the element."
|
|
2091
|
+
},
|
|
1695
2092
|
nonce: { required: false, control: "text", type: "string" },
|
|
1696
|
-
placeholder: {
|
|
2093
|
+
placeholder: {
|
|
2094
|
+
required: false,
|
|
2095
|
+
control: "text",
|
|
2096
|
+
type: "string",
|
|
2097
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2098
|
+
},
|
|
1697
2099
|
prefix: { required: false, control: "text", type: "string" },
|
|
1698
2100
|
property: { required: false, control: "text", type: "string" },
|
|
1699
2101
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1700
|
-
rel: {
|
|
2102
|
+
rel: {
|
|
2103
|
+
required: false,
|
|
2104
|
+
control: "text",
|
|
2105
|
+
type: "string",
|
|
2106
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2107
|
+
},
|
|
1701
2108
|
resource: { required: false, control: "text", type: "string" },
|
|
1702
2109
|
results: { required: false, control: "number", type: "number" },
|
|
1703
2110
|
rev: { required: false, control: "text", type: "string" },
|
|
1704
|
-
role: {
|
|
2111
|
+
role: {
|
|
2112
|
+
required: false,
|
|
2113
|
+
control: "text",
|
|
2114
|
+
type: "string",
|
|
2115
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2116
|
+
},
|
|
1705
2117
|
security: { required: false, control: "text", type: "string" },
|
|
1706
|
-
slot: {
|
|
1707
|
-
|
|
2118
|
+
slot: {
|
|
2119
|
+
required: false,
|
|
2120
|
+
control: "text",
|
|
2121
|
+
type: "string",
|
|
2122
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2123
|
+
},
|
|
2124
|
+
spellCheck: {
|
|
2125
|
+
required: false,
|
|
2126
|
+
control: "boolean",
|
|
2127
|
+
type: "boolean",
|
|
2128
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2129
|
+
},
|
|
1708
2130
|
suppressContentEditableWarning: {
|
|
1709
2131
|
required: false,
|
|
1710
2132
|
control: "boolean",
|
|
@@ -1715,13 +2137,24 @@ const propsSelectViewport = {
|
|
|
1715
2137
|
control: "boolean",
|
|
1716
2138
|
type: "boolean"
|
|
1717
2139
|
},
|
|
1718
|
-
tabIndex: {
|
|
1719
|
-
|
|
2140
|
+
tabIndex: {
|
|
2141
|
+
required: false,
|
|
2142
|
+
control: "number",
|
|
2143
|
+
type: "number",
|
|
2144
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2145
|
+
},
|
|
2146
|
+
title: {
|
|
2147
|
+
required: false,
|
|
2148
|
+
control: "text",
|
|
2149
|
+
type: "string",
|
|
2150
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2151
|
+
},
|
|
1720
2152
|
translate: {
|
|
1721
2153
|
required: false,
|
|
1722
2154
|
control: "radio",
|
|
1723
2155
|
type: "string",
|
|
1724
|
-
options: ["yes", "no"]
|
|
2156
|
+
options: ["yes", "no"],
|
|
2157
|
+
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."
|
|
1725
2158
|
},
|
|
1726
2159
|
typeof: { required: false, control: "text", type: "string" },
|
|
1727
2160
|
unselectable: {
|
|
@@ -1734,7 +2167,12 @@ const propsSelectViewport = {
|
|
|
1734
2167
|
};
|
|
1735
2168
|
const propsSelectItem = {
|
|
1736
2169
|
about: { required: false, control: "text", type: "string" },
|
|
1737
|
-
accessKey: {
|
|
2170
|
+
accessKey: {
|
|
2171
|
+
required: false,
|
|
2172
|
+
control: "text",
|
|
2173
|
+
type: "string",
|
|
2174
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2175
|
+
},
|
|
1738
2176
|
"aria-activedescendant": {
|
|
1739
2177
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
1740
2178
|
required: false,
|
|
@@ -1890,7 +2328,7 @@ const propsSelectItem = {
|
|
|
1890
2328
|
type: "string"
|
|
1891
2329
|
},
|
|
1892
2330
|
"aria-label": {
|
|
1893
|
-
description: "
|
|
2331
|
+
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
2332
|
required: false,
|
|
1895
2333
|
control: "text",
|
|
1896
2334
|
type: "string"
|
|
@@ -2066,20 +2504,70 @@ const propsSelectItem = {
|
|
|
2066
2504
|
control: "text",
|
|
2067
2505
|
type: "string"
|
|
2068
2506
|
},
|
|
2069
|
-
autoCapitalize: {
|
|
2507
|
+
autoCapitalize: {
|
|
2508
|
+
required: false,
|
|
2509
|
+
control: "text",
|
|
2510
|
+
type: "string",
|
|
2511
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
2512
|
+
},
|
|
2070
2513
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2071
|
-
autoFocus: {
|
|
2514
|
+
autoFocus: {
|
|
2515
|
+
required: false,
|
|
2516
|
+
control: "boolean",
|
|
2517
|
+
type: "boolean",
|
|
2518
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
2519
|
+
},
|
|
2072
2520
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2073
2521
|
className: { required: false, control: "text", type: "string" },
|
|
2074
|
-
color: {
|
|
2075
|
-
|
|
2076
|
-
|
|
2522
|
+
color: {
|
|
2523
|
+
required: false,
|
|
2524
|
+
control: "color",
|
|
2525
|
+
type: "string",
|
|
2526
|
+
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."
|
|
2527
|
+
},
|
|
2528
|
+
content: {
|
|
2529
|
+
required: false,
|
|
2530
|
+
control: "text",
|
|
2531
|
+
type: "string",
|
|
2532
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
2533
|
+
},
|
|
2534
|
+
contextMenu: {
|
|
2535
|
+
required: false,
|
|
2536
|
+
control: "text",
|
|
2537
|
+
type: "string",
|
|
2538
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
2539
|
+
},
|
|
2077
2540
|
datatype: { required: false, control: "text", type: "string" },
|
|
2078
|
-
dir: {
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2541
|
+
dir: {
|
|
2542
|
+
required: false,
|
|
2543
|
+
control: "text",
|
|
2544
|
+
type: "string",
|
|
2545
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
2546
|
+
},
|
|
2547
|
+
disabled: {
|
|
2548
|
+
required: false,
|
|
2549
|
+
control: "boolean",
|
|
2550
|
+
type: "boolean",
|
|
2551
|
+
description: "Indicates whether the user can interact with the element."
|
|
2552
|
+
},
|
|
2553
|
+
draggable: {
|
|
2554
|
+
required: false,
|
|
2555
|
+
control: "boolean",
|
|
2556
|
+
type: "boolean",
|
|
2557
|
+
description: "Defines whether the element can be dragged."
|
|
2558
|
+
},
|
|
2559
|
+
hidden: {
|
|
2560
|
+
required: false,
|
|
2561
|
+
control: "boolean",
|
|
2562
|
+
type: "boolean",
|
|
2563
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
2564
|
+
},
|
|
2565
|
+
id: {
|
|
2566
|
+
required: false,
|
|
2567
|
+
control: "text",
|
|
2568
|
+
type: "string",
|
|
2569
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
2570
|
+
},
|
|
2083
2571
|
inputMode: {
|
|
2084
2572
|
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",
|
|
2085
2573
|
required: false,
|
|
@@ -2107,20 +2595,50 @@ const propsSelectItem = {
|
|
|
2107
2595
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2108
2596
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2109
2597
|
itemType: { required: false, control: "text", type: "string" },
|
|
2110
|
-
lang: {
|
|
2598
|
+
lang: {
|
|
2599
|
+
required: false,
|
|
2600
|
+
control: "text",
|
|
2601
|
+
type: "string",
|
|
2602
|
+
description: "Defines the language used in the element."
|
|
2603
|
+
},
|
|
2111
2604
|
nonce: { required: false, control: "text", type: "string" },
|
|
2112
|
-
placeholder: {
|
|
2605
|
+
placeholder: {
|
|
2606
|
+
required: false,
|
|
2607
|
+
control: "text",
|
|
2608
|
+
type: "string",
|
|
2609
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
2610
|
+
},
|
|
2113
2611
|
prefix: { required: false, control: "text", type: "string" },
|
|
2114
2612
|
property: { required: false, control: "text", type: "string" },
|
|
2115
2613
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2116
|
-
rel: {
|
|
2614
|
+
rel: {
|
|
2615
|
+
required: false,
|
|
2616
|
+
control: "text",
|
|
2617
|
+
type: "string",
|
|
2618
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
2619
|
+
},
|
|
2117
2620
|
resource: { required: false, control: "text", type: "string" },
|
|
2118
2621
|
results: { required: false, control: "number", type: "number" },
|
|
2119
2622
|
rev: { required: false, control: "text", type: "string" },
|
|
2120
|
-
role: {
|
|
2623
|
+
role: {
|
|
2624
|
+
required: false,
|
|
2625
|
+
control: "text",
|
|
2626
|
+
type: "string",
|
|
2627
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
2628
|
+
},
|
|
2121
2629
|
security: { required: false, control: "text", type: "string" },
|
|
2122
|
-
slot: {
|
|
2123
|
-
|
|
2630
|
+
slot: {
|
|
2631
|
+
required: false,
|
|
2632
|
+
control: "text",
|
|
2633
|
+
type: "string",
|
|
2634
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
2635
|
+
},
|
|
2636
|
+
spellCheck: {
|
|
2637
|
+
required: false,
|
|
2638
|
+
control: "boolean",
|
|
2639
|
+
type: "boolean",
|
|
2640
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
2641
|
+
},
|
|
2124
2642
|
suppressContentEditableWarning: {
|
|
2125
2643
|
required: false,
|
|
2126
2644
|
control: "boolean",
|
|
@@ -2131,14 +2649,25 @@ const propsSelectItem = {
|
|
|
2131
2649
|
control: "boolean",
|
|
2132
2650
|
type: "boolean"
|
|
2133
2651
|
},
|
|
2134
|
-
tabIndex: {
|
|
2652
|
+
tabIndex: {
|
|
2653
|
+
required: false,
|
|
2654
|
+
control: "number",
|
|
2655
|
+
type: "number",
|
|
2656
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
2657
|
+
},
|
|
2135
2658
|
textValue: { required: false, control: "text", type: "string" },
|
|
2136
|
-
title: {
|
|
2659
|
+
title: {
|
|
2660
|
+
required: false,
|
|
2661
|
+
control: "text",
|
|
2662
|
+
type: "string",
|
|
2663
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
2664
|
+
},
|
|
2137
2665
|
translate: {
|
|
2138
2666
|
required: false,
|
|
2139
2667
|
control: "radio",
|
|
2140
2668
|
type: "string",
|
|
2141
|
-
options: ["yes", "no"]
|
|
2669
|
+
options: ["yes", "no"],
|
|
2670
|
+
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."
|
|
2142
2671
|
},
|
|
2143
2672
|
typeof: { required: false, control: "text", type: "string" },
|
|
2144
2673
|
unselectable: {
|
|
@@ -2147,12 +2676,22 @@ const propsSelectItem = {
|
|
|
2147
2676
|
type: "string",
|
|
2148
2677
|
options: ["on", "off"]
|
|
2149
2678
|
},
|
|
2150
|
-
value: {
|
|
2679
|
+
value: {
|
|
2680
|
+
required: true,
|
|
2681
|
+
control: "text",
|
|
2682
|
+
type: "string",
|
|
2683
|
+
description: "Defines a default value which will be displayed in the element on pageload."
|
|
2684
|
+
},
|
|
2151
2685
|
vocab: { required: false, control: "text", type: "string" }
|
|
2152
2686
|
};
|
|
2153
2687
|
const propsSelectItemIndicator = {
|
|
2154
2688
|
about: { required: false, control: "text", type: "string" },
|
|
2155
|
-
accessKey: {
|
|
2689
|
+
accessKey: {
|
|
2690
|
+
required: false,
|
|
2691
|
+
control: "text",
|
|
2692
|
+
type: "string",
|
|
2693
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
2694
|
+
},
|
|
2156
2695
|
"aria-activedescendant": {
|
|
2157
2696
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
2158
2697
|
required: false,
|
|
@@ -2308,7 +2847,7 @@ const propsSelectItemIndicator = {
|
|
|
2308
2847
|
type: "string"
|
|
2309
2848
|
},
|
|
2310
2849
|
"aria-label": {
|
|
2311
|
-
description: "
|
|
2850
|
+
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.",
|
|
2312
2851
|
required: false,
|
|
2313
2852
|
control: "text",
|
|
2314
2853
|
type: "string"
|
|
@@ -2484,19 +3023,64 @@ const propsSelectItemIndicator = {
|
|
|
2484
3023
|
control: "text",
|
|
2485
3024
|
type: "string"
|
|
2486
3025
|
},
|
|
2487
|
-
autoCapitalize: {
|
|
3026
|
+
autoCapitalize: {
|
|
3027
|
+
required: false,
|
|
3028
|
+
control: "text",
|
|
3029
|
+
type: "string",
|
|
3030
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
3031
|
+
},
|
|
2488
3032
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2489
|
-
autoFocus: {
|
|
3033
|
+
autoFocus: {
|
|
3034
|
+
required: false,
|
|
3035
|
+
control: "boolean",
|
|
3036
|
+
type: "boolean",
|
|
3037
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
3038
|
+
},
|
|
2490
3039
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2491
3040
|
className: { required: false, control: "text", type: "string" },
|
|
2492
|
-
color: {
|
|
2493
|
-
|
|
2494
|
-
|
|
3041
|
+
color: {
|
|
3042
|
+
required: false,
|
|
3043
|
+
control: "color",
|
|
3044
|
+
type: "string",
|
|
3045
|
+
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."
|
|
3046
|
+
},
|
|
3047
|
+
content: {
|
|
3048
|
+
required: false,
|
|
3049
|
+
control: "text",
|
|
3050
|
+
type: "string",
|
|
3051
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
3052
|
+
},
|
|
3053
|
+
contextMenu: {
|
|
3054
|
+
required: false,
|
|
3055
|
+
control: "text",
|
|
3056
|
+
type: "string",
|
|
3057
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
3058
|
+
},
|
|
2495
3059
|
datatype: { required: false, control: "text", type: "string" },
|
|
2496
|
-
dir: {
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
3060
|
+
dir: {
|
|
3061
|
+
required: false,
|
|
3062
|
+
control: "text",
|
|
3063
|
+
type: "string",
|
|
3064
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
3065
|
+
},
|
|
3066
|
+
draggable: {
|
|
3067
|
+
required: false,
|
|
3068
|
+
control: "boolean",
|
|
3069
|
+
type: "boolean",
|
|
3070
|
+
description: "Defines whether the element can be dragged."
|
|
3071
|
+
},
|
|
3072
|
+
hidden: {
|
|
3073
|
+
required: false,
|
|
3074
|
+
control: "boolean",
|
|
3075
|
+
type: "boolean",
|
|
3076
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
3077
|
+
},
|
|
3078
|
+
id: {
|
|
3079
|
+
required: false,
|
|
3080
|
+
control: "text",
|
|
3081
|
+
type: "string",
|
|
3082
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
3083
|
+
},
|
|
2500
3084
|
inputMode: {
|
|
2501
3085
|
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",
|
|
2502
3086
|
required: false,
|
|
@@ -2524,20 +3108,50 @@ const propsSelectItemIndicator = {
|
|
|
2524
3108
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2525
3109
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2526
3110
|
itemType: { required: false, control: "text", type: "string" },
|
|
2527
|
-
lang: {
|
|
3111
|
+
lang: {
|
|
3112
|
+
required: false,
|
|
3113
|
+
control: "text",
|
|
3114
|
+
type: "string",
|
|
3115
|
+
description: "Defines the language used in the element."
|
|
3116
|
+
},
|
|
2528
3117
|
nonce: { required: false, control: "text", type: "string" },
|
|
2529
|
-
placeholder: {
|
|
3118
|
+
placeholder: {
|
|
3119
|
+
required: false,
|
|
3120
|
+
control: "text",
|
|
3121
|
+
type: "string",
|
|
3122
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
3123
|
+
},
|
|
2530
3124
|
prefix: { required: false, control: "text", type: "string" },
|
|
2531
3125
|
property: { required: false, control: "text", type: "string" },
|
|
2532
3126
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2533
|
-
rel: {
|
|
3127
|
+
rel: {
|
|
3128
|
+
required: false,
|
|
3129
|
+
control: "text",
|
|
3130
|
+
type: "string",
|
|
3131
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
3132
|
+
},
|
|
2534
3133
|
resource: { required: false, control: "text", type: "string" },
|
|
2535
3134
|
results: { required: false, control: "number", type: "number" },
|
|
2536
3135
|
rev: { required: false, control: "text", type: "string" },
|
|
2537
|
-
role: {
|
|
3136
|
+
role: {
|
|
3137
|
+
required: false,
|
|
3138
|
+
control: "text",
|
|
3139
|
+
type: "string",
|
|
3140
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
3141
|
+
},
|
|
2538
3142
|
security: { required: false, control: "text", type: "string" },
|
|
2539
|
-
slot: {
|
|
2540
|
-
|
|
3143
|
+
slot: {
|
|
3144
|
+
required: false,
|
|
3145
|
+
control: "text",
|
|
3146
|
+
type: "string",
|
|
3147
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
3148
|
+
},
|
|
3149
|
+
spellCheck: {
|
|
3150
|
+
required: false,
|
|
3151
|
+
control: "boolean",
|
|
3152
|
+
type: "boolean",
|
|
3153
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
3154
|
+
},
|
|
2541
3155
|
suppressContentEditableWarning: {
|
|
2542
3156
|
required: false,
|
|
2543
3157
|
control: "boolean",
|
|
@@ -2548,13 +3162,24 @@ const propsSelectItemIndicator = {
|
|
|
2548
3162
|
control: "boolean",
|
|
2549
3163
|
type: "boolean"
|
|
2550
3164
|
},
|
|
2551
|
-
tabIndex: {
|
|
2552
|
-
|
|
3165
|
+
tabIndex: {
|
|
3166
|
+
required: false,
|
|
3167
|
+
control: "number",
|
|
3168
|
+
type: "number",
|
|
3169
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
3170
|
+
},
|
|
3171
|
+
title: {
|
|
3172
|
+
required: false,
|
|
3173
|
+
control: "text",
|
|
3174
|
+
type: "string",
|
|
3175
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
3176
|
+
},
|
|
2553
3177
|
translate: {
|
|
2554
3178
|
required: false,
|
|
2555
3179
|
control: "radio",
|
|
2556
3180
|
type: "string",
|
|
2557
|
-
options: ["yes", "no"]
|
|
3181
|
+
options: ["yes", "no"],
|
|
3182
|
+
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."
|
|
2558
3183
|
},
|
|
2559
3184
|
typeof: { required: false, control: "text", type: "string" },
|
|
2560
3185
|
unselectable: {
|
|
@@ -2567,7 +3192,12 @@ const propsSelectItemIndicator = {
|
|
|
2567
3192
|
};
|
|
2568
3193
|
const propsSelectItemText = {
|
|
2569
3194
|
about: { required: false, control: "text", type: "string" },
|
|
2570
|
-
accessKey: {
|
|
3195
|
+
accessKey: {
|
|
3196
|
+
required: false,
|
|
3197
|
+
control: "text",
|
|
3198
|
+
type: "string",
|
|
3199
|
+
description: "Keyboard shortcut to activate or add focus to the element."
|
|
3200
|
+
},
|
|
2571
3201
|
"aria-activedescendant": {
|
|
2572
3202
|
description: "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
2573
3203
|
required: false,
|
|
@@ -2723,7 +3353,7 @@ const propsSelectItemText = {
|
|
|
2723
3353
|
type: "string"
|
|
2724
3354
|
},
|
|
2725
3355
|
"aria-label": {
|
|
2726
|
-
description: "
|
|
3356
|
+
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.",
|
|
2727
3357
|
required: false,
|
|
2728
3358
|
control: "text",
|
|
2729
3359
|
type: "string"
|
|
@@ -2899,19 +3529,64 @@ const propsSelectItemText = {
|
|
|
2899
3529
|
control: "text",
|
|
2900
3530
|
type: "string"
|
|
2901
3531
|
},
|
|
2902
|
-
autoCapitalize: {
|
|
3532
|
+
autoCapitalize: {
|
|
3533
|
+
required: false,
|
|
3534
|
+
control: "text",
|
|
3535
|
+
type: "string",
|
|
3536
|
+
description: "Sets whether input is automatically capitalized when entered by user."
|
|
3537
|
+
},
|
|
2903
3538
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2904
|
-
autoFocus: {
|
|
3539
|
+
autoFocus: {
|
|
3540
|
+
required: false,
|
|
3541
|
+
control: "boolean",
|
|
3542
|
+
type: "boolean",
|
|
3543
|
+
description: "Indicates that an element should be focused on page load, or when its parent dialog is displayed."
|
|
3544
|
+
},
|
|
2905
3545
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2906
3546
|
className: { required: false, control: "text", type: "string" },
|
|
2907
|
-
color: {
|
|
2908
|
-
|
|
2909
|
-
|
|
3547
|
+
color: {
|
|
3548
|
+
required: false,
|
|
3549
|
+
control: "color",
|
|
3550
|
+
type: "string",
|
|
3551
|
+
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."
|
|
3552
|
+
},
|
|
3553
|
+
content: {
|
|
3554
|
+
required: false,
|
|
3555
|
+
control: "text",
|
|
3556
|
+
type: "string",
|
|
3557
|
+
description: "A value associated with http-equiv orname depending on the context."
|
|
3558
|
+
},
|
|
3559
|
+
contextMenu: {
|
|
3560
|
+
required: false,
|
|
3561
|
+
control: "text",
|
|
3562
|
+
type: "string",
|
|
3563
|
+
description: "Defines the ID of a menu element which willserve as the element's context menu."
|
|
3564
|
+
},
|
|
2910
3565
|
datatype: { required: false, control: "text", type: "string" },
|
|
2911
|
-
dir: {
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
3566
|
+
dir: {
|
|
3567
|
+
required: false,
|
|
3568
|
+
control: "text",
|
|
3569
|
+
type: "string",
|
|
3570
|
+
description: "Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)"
|
|
3571
|
+
},
|
|
3572
|
+
draggable: {
|
|
3573
|
+
required: false,
|
|
3574
|
+
control: "boolean",
|
|
3575
|
+
type: "boolean",
|
|
3576
|
+
description: "Defines whether the element can be dragged."
|
|
3577
|
+
},
|
|
3578
|
+
hidden: {
|
|
3579
|
+
required: false,
|
|
3580
|
+
control: "boolean",
|
|
3581
|
+
type: "boolean",
|
|
3582
|
+
description: "Prevents rendering of given element, while keeping child elements, e.g. script elements, active."
|
|
3583
|
+
},
|
|
3584
|
+
id: {
|
|
3585
|
+
required: false,
|
|
3586
|
+
control: "text",
|
|
3587
|
+
type: "string",
|
|
3588
|
+
description: "Often used with CSS to style a specific element. The value of this attribute must be unique."
|
|
3589
|
+
},
|
|
2915
3590
|
inputMode: {
|
|
2916
3591
|
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",
|
|
2917
3592
|
required: false,
|
|
@@ -2939,20 +3614,50 @@ const propsSelectItemText = {
|
|
|
2939
3614
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2940
3615
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2941
3616
|
itemType: { required: false, control: "text", type: "string" },
|
|
2942
|
-
lang: {
|
|
3617
|
+
lang: {
|
|
3618
|
+
required: false,
|
|
3619
|
+
control: "text",
|
|
3620
|
+
type: "string",
|
|
3621
|
+
description: "Defines the language used in the element."
|
|
3622
|
+
},
|
|
2943
3623
|
nonce: { required: false, control: "text", type: "string" },
|
|
2944
|
-
placeholder: {
|
|
3624
|
+
placeholder: {
|
|
3625
|
+
required: false,
|
|
3626
|
+
control: "text",
|
|
3627
|
+
type: "string",
|
|
3628
|
+
description: "Provides a hint to the user of what can be entered in the field."
|
|
3629
|
+
},
|
|
2945
3630
|
prefix: { required: false, control: "text", type: "string" },
|
|
2946
3631
|
property: { required: false, control: "text", type: "string" },
|
|
2947
3632
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2948
|
-
rel: {
|
|
3633
|
+
rel: {
|
|
3634
|
+
required: false,
|
|
3635
|
+
control: "text",
|
|
3636
|
+
type: "string",
|
|
3637
|
+
description: "Specifies the relationship of the target object to the link object."
|
|
3638
|
+
},
|
|
2949
3639
|
resource: { required: false, control: "text", type: "string" },
|
|
2950
3640
|
results: { required: false, control: "number", type: "number" },
|
|
2951
3641
|
rev: { required: false, control: "text", type: "string" },
|
|
2952
|
-
role: {
|
|
3642
|
+
role: {
|
|
3643
|
+
required: false,
|
|
3644
|
+
control: "text",
|
|
3645
|
+
type: "string",
|
|
3646
|
+
description: "Defines an explicit role for an element for use by assistive technologies."
|
|
3647
|
+
},
|
|
2953
3648
|
security: { required: false, control: "text", type: "string" },
|
|
2954
|
-
slot: {
|
|
2955
|
-
|
|
3649
|
+
slot: {
|
|
3650
|
+
required: false,
|
|
3651
|
+
control: "text",
|
|
3652
|
+
type: "string",
|
|
3653
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element."
|
|
3654
|
+
},
|
|
3655
|
+
spellCheck: {
|
|
3656
|
+
required: false,
|
|
3657
|
+
control: "boolean",
|
|
3658
|
+
type: "boolean",
|
|
3659
|
+
description: "Indicates whether spell checking is allowed for the element."
|
|
3660
|
+
},
|
|
2956
3661
|
suppressContentEditableWarning: {
|
|
2957
3662
|
required: false,
|
|
2958
3663
|
control: "boolean",
|
|
@@ -2963,13 +3668,24 @@ const propsSelectItemText = {
|
|
|
2963
3668
|
control: "boolean",
|
|
2964
3669
|
type: "boolean"
|
|
2965
3670
|
},
|
|
2966
|
-
tabIndex: {
|
|
2967
|
-
|
|
3671
|
+
tabIndex: {
|
|
3672
|
+
required: false,
|
|
3673
|
+
control: "number",
|
|
3674
|
+
type: "number",
|
|
3675
|
+
description: "Overrides the browser's default tab order and follows the one specified instead."
|
|
3676
|
+
},
|
|
3677
|
+
title: {
|
|
3678
|
+
required: false,
|
|
3679
|
+
control: "text",
|
|
3680
|
+
type: "string",
|
|
3681
|
+
description: "Text to be displayed in a tooltip when hovering over the element."
|
|
3682
|
+
},
|
|
2968
3683
|
translate: {
|
|
2969
3684
|
required: false,
|
|
2970
3685
|
control: "radio",
|
|
2971
3686
|
type: "string",
|
|
2972
|
-
options: ["yes", "no"]
|
|
3687
|
+
options: ["yes", "no"],
|
|
3688
|
+
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."
|
|
2973
3689
|
},
|
|
2974
3690
|
typeof: { required: false, control: "text", type: "string" },
|
|
2975
3691
|
unselectable: {
|