@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
|
@@ -1,22 +1,64 @@
|
|
|
1
1
|
import type { PropMeta } from "@webstudio-is/generate-arg-types";
|
|
2
2
|
|
|
3
3
|
export const propsSelect: Record<string, PropMeta> = {
|
|
4
|
-
autoComplete: {
|
|
4
|
+
autoComplete: {
|
|
5
|
+
required: false,
|
|
6
|
+
control: "text",
|
|
7
|
+
type: "string",
|
|
8
|
+
description:
|
|
9
|
+
"Indicates whether controls in this form can by default have their valuesautomatically completed by the browser.",
|
|
10
|
+
},
|
|
5
11
|
dir: {
|
|
6
12
|
required: false,
|
|
7
13
|
control: "radio",
|
|
8
14
|
type: "string",
|
|
9
15
|
options: ["ltr", "rtl"],
|
|
16
|
+
description:
|
|
17
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
18
|
+
},
|
|
19
|
+
disabled: {
|
|
20
|
+
required: false,
|
|
21
|
+
control: "boolean",
|
|
22
|
+
type: "boolean",
|
|
23
|
+
description: "Indicates whether the user can interact with the element.",
|
|
24
|
+
},
|
|
25
|
+
name: {
|
|
26
|
+
required: false,
|
|
27
|
+
control: "text",
|
|
28
|
+
type: "string",
|
|
29
|
+
description:
|
|
30
|
+
"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).",
|
|
31
|
+
},
|
|
32
|
+
open: {
|
|
33
|
+
required: false,
|
|
34
|
+
control: "boolean",
|
|
35
|
+
type: "boolean",
|
|
36
|
+
description:
|
|
37
|
+
"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).",
|
|
38
|
+
},
|
|
39
|
+
required: {
|
|
40
|
+
required: false,
|
|
41
|
+
control: "boolean",
|
|
42
|
+
type: "boolean",
|
|
43
|
+
description:
|
|
44
|
+
"Indicates whether this form element must be filled before the form can be submitted.",
|
|
45
|
+
},
|
|
46
|
+
value: {
|
|
47
|
+
required: false,
|
|
48
|
+
control: "text",
|
|
49
|
+
type: "string",
|
|
50
|
+
description:
|
|
51
|
+
"Defines a default value which will be displayed in the element on pageload.",
|
|
10
52
|
},
|
|
11
|
-
disabled: { required: false, control: "boolean", type: "boolean" },
|
|
12
|
-
name: { required: false, control: "text", type: "string" },
|
|
13
|
-
open: { required: false, control: "boolean", type: "boolean" },
|
|
14
|
-
required: { required: false, control: "boolean", type: "boolean" },
|
|
15
|
-
value: { required: false, control: "text", type: "string" },
|
|
16
53
|
};
|
|
17
54
|
export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
18
55
|
about: { required: false, control: "text", type: "string" },
|
|
19
|
-
accessKey: {
|
|
56
|
+
accessKey: {
|
|
57
|
+
required: false,
|
|
58
|
+
control: "text",
|
|
59
|
+
type: "string",
|
|
60
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
61
|
+
},
|
|
20
62
|
"aria-activedescendant": {
|
|
21
63
|
description:
|
|
22
64
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -197,7 +239,7 @@ export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
|
197
239
|
},
|
|
198
240
|
"aria-label": {
|
|
199
241
|
description:
|
|
200
|
-
"
|
|
242
|
+
"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.",
|
|
201
243
|
required: false,
|
|
202
244
|
control: "text",
|
|
203
245
|
type: "string",
|
|
@@ -396,26 +438,119 @@ export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
|
396
438
|
control: "text",
|
|
397
439
|
type: "string",
|
|
398
440
|
},
|
|
399
|
-
autoCapitalize: {
|
|
441
|
+
autoCapitalize: {
|
|
442
|
+
required: false,
|
|
443
|
+
control: "text",
|
|
444
|
+
type: "string",
|
|
445
|
+
description:
|
|
446
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
447
|
+
},
|
|
400
448
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
401
|
-
autoFocus: {
|
|
449
|
+
autoFocus: {
|
|
450
|
+
required: false,
|
|
451
|
+
control: "boolean",
|
|
452
|
+
type: "boolean",
|
|
453
|
+
description:
|
|
454
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
455
|
+
},
|
|
402
456
|
autoSave: { required: false, control: "text", type: "string" },
|
|
403
457
|
className: { required: false, control: "text", type: "string" },
|
|
404
|
-
color: {
|
|
405
|
-
|
|
406
|
-
|
|
458
|
+
color: {
|
|
459
|
+
required: false,
|
|
460
|
+
control: "color",
|
|
461
|
+
type: "string",
|
|
462
|
+
description:
|
|
463
|
+
"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.",
|
|
464
|
+
},
|
|
465
|
+
content: {
|
|
466
|
+
required: false,
|
|
467
|
+
control: "text",
|
|
468
|
+
type: "string",
|
|
469
|
+
description:
|
|
470
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
471
|
+
},
|
|
472
|
+
contextMenu: {
|
|
473
|
+
required: false,
|
|
474
|
+
control: "text",
|
|
475
|
+
type: "string",
|
|
476
|
+
description:
|
|
477
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
478
|
+
},
|
|
407
479
|
datatype: { required: false, control: "text", type: "string" },
|
|
408
|
-
dir: {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
480
|
+
dir: {
|
|
481
|
+
required: false,
|
|
482
|
+
control: "text",
|
|
483
|
+
type: "string",
|
|
484
|
+
description:
|
|
485
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
486
|
+
},
|
|
487
|
+
disabled: {
|
|
488
|
+
required: false,
|
|
489
|
+
control: "boolean",
|
|
490
|
+
type: "boolean",
|
|
491
|
+
description: "Indicates whether the user can interact with the element.",
|
|
492
|
+
},
|
|
493
|
+
draggable: {
|
|
494
|
+
required: false,
|
|
495
|
+
control: "boolean",
|
|
496
|
+
type: "boolean",
|
|
497
|
+
description: "Defines whether the element can be dragged.",
|
|
498
|
+
},
|
|
499
|
+
form: {
|
|
500
|
+
required: false,
|
|
501
|
+
control: "text",
|
|
502
|
+
type: "string",
|
|
503
|
+
description: "Indicates the form that is the owner of the element.",
|
|
504
|
+
},
|
|
505
|
+
formAction: {
|
|
506
|
+
required: false,
|
|
507
|
+
control: "text",
|
|
508
|
+
type: "string",
|
|
509
|
+
description:
|
|
510
|
+
"Indicates the action of the element, overriding the action defined inthe form.",
|
|
511
|
+
},
|
|
512
|
+
formEncType: {
|
|
513
|
+
required: false,
|
|
514
|
+
control: "text",
|
|
515
|
+
type: "string",
|
|
516
|
+
description:
|
|
517
|
+
'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.',
|
|
518
|
+
},
|
|
519
|
+
formMethod: {
|
|
520
|
+
required: false,
|
|
521
|
+
control: "text",
|
|
522
|
+
type: "string",
|
|
523
|
+
description:
|
|
524
|
+
'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.',
|
|
525
|
+
},
|
|
526
|
+
formNoValidate: {
|
|
527
|
+
required: false,
|
|
528
|
+
control: "boolean",
|
|
529
|
+
type: "boolean",
|
|
530
|
+
description:
|
|
531
|
+
'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.',
|
|
532
|
+
},
|
|
533
|
+
formTarget: {
|
|
534
|
+
required: false,
|
|
535
|
+
control: "text",
|
|
536
|
+
type: "string",
|
|
537
|
+
description:
|
|
538
|
+
'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.',
|
|
539
|
+
},
|
|
540
|
+
hidden: {
|
|
541
|
+
required: false,
|
|
542
|
+
control: "boolean",
|
|
543
|
+
type: "boolean",
|
|
544
|
+
description:
|
|
545
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
546
|
+
},
|
|
547
|
+
id: {
|
|
548
|
+
required: false,
|
|
549
|
+
control: "text",
|
|
550
|
+
type: "string",
|
|
551
|
+
description:
|
|
552
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
553
|
+
},
|
|
419
554
|
inputMode: {
|
|
420
555
|
description:
|
|
421
556
|
"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",
|
|
@@ -445,21 +580,60 @@ export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
|
445
580
|
itemRef: { required: false, control: "text", type: "string" },
|
|
446
581
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
447
582
|
itemType: { required: false, control: "text", type: "string" },
|
|
448
|
-
lang: {
|
|
449
|
-
|
|
583
|
+
lang: {
|
|
584
|
+
required: false,
|
|
585
|
+
control: "text",
|
|
586
|
+
type: "string",
|
|
587
|
+
description: "Defines the language used in the element.",
|
|
588
|
+
},
|
|
589
|
+
name: {
|
|
590
|
+
required: false,
|
|
591
|
+
control: "text",
|
|
592
|
+
type: "string",
|
|
593
|
+
description:
|
|
594
|
+
"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).",
|
|
595
|
+
},
|
|
450
596
|
nonce: { required: false, control: "text", type: "string" },
|
|
451
|
-
placeholder: {
|
|
597
|
+
placeholder: {
|
|
598
|
+
required: false,
|
|
599
|
+
control: "text",
|
|
600
|
+
type: "string",
|
|
601
|
+
description:
|
|
602
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
603
|
+
},
|
|
452
604
|
prefix: { required: false, control: "text", type: "string" },
|
|
453
605
|
property: { required: false, control: "text", type: "string" },
|
|
454
606
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
455
|
-
rel: {
|
|
607
|
+
rel: {
|
|
608
|
+
required: false,
|
|
609
|
+
control: "text",
|
|
610
|
+
type: "string",
|
|
611
|
+
description:
|
|
612
|
+
"Specifies the relationship of the target object to the link object.",
|
|
613
|
+
},
|
|
456
614
|
resource: { required: false, control: "text", type: "string" },
|
|
457
615
|
results: { required: false, control: "number", type: "number" },
|
|
458
616
|
rev: { required: false, control: "text", type: "string" },
|
|
459
|
-
role: {
|
|
617
|
+
role: {
|
|
618
|
+
required: false,
|
|
619
|
+
control: "text",
|
|
620
|
+
type: "string",
|
|
621
|
+
description:
|
|
622
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
623
|
+
},
|
|
460
624
|
security: { required: false, control: "text", type: "string" },
|
|
461
|
-
slot: {
|
|
462
|
-
|
|
625
|
+
slot: {
|
|
626
|
+
required: false,
|
|
627
|
+
control: "text",
|
|
628
|
+
type: "string",
|
|
629
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
630
|
+
},
|
|
631
|
+
spellCheck: {
|
|
632
|
+
required: false,
|
|
633
|
+
control: "boolean",
|
|
634
|
+
type: "boolean",
|
|
635
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
636
|
+
},
|
|
463
637
|
suppressContentEditableWarning: {
|
|
464
638
|
required: false,
|
|
465
639
|
control: "boolean",
|
|
@@ -470,19 +644,34 @@ export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
|
470
644
|
control: "boolean",
|
|
471
645
|
type: "boolean",
|
|
472
646
|
},
|
|
473
|
-
tabIndex: {
|
|
474
|
-
|
|
647
|
+
tabIndex: {
|
|
648
|
+
required: false,
|
|
649
|
+
control: "number",
|
|
650
|
+
type: "number",
|
|
651
|
+
description:
|
|
652
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
653
|
+
},
|
|
654
|
+
title: {
|
|
655
|
+
required: false,
|
|
656
|
+
control: "text",
|
|
657
|
+
type: "string",
|
|
658
|
+
description:
|
|
659
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
660
|
+
},
|
|
475
661
|
translate: {
|
|
476
662
|
required: false,
|
|
477
663
|
control: "radio",
|
|
478
664
|
type: "string",
|
|
479
665
|
options: ["yes", "no"],
|
|
666
|
+
description:
|
|
667
|
+
"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.",
|
|
480
668
|
},
|
|
481
669
|
type: {
|
|
482
670
|
required: false,
|
|
483
671
|
control: "radio",
|
|
484
672
|
type: "string",
|
|
485
673
|
options: ["button", "submit", "reset"],
|
|
674
|
+
description: "Defines the type of the element.",
|
|
486
675
|
},
|
|
487
676
|
typeof: { required: false, control: "text", type: "string" },
|
|
488
677
|
unselectable: {
|
|
@@ -495,7 +684,12 @@ export const propsSelectTrigger: Record<string, PropMeta> = {
|
|
|
495
684
|
};
|
|
496
685
|
export const propsSelectValue: Record<string, PropMeta> = {
|
|
497
686
|
about: { required: false, control: "text", type: "string" },
|
|
498
|
-
accessKey: {
|
|
687
|
+
accessKey: {
|
|
688
|
+
required: false,
|
|
689
|
+
control: "text",
|
|
690
|
+
type: "string",
|
|
691
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
692
|
+
},
|
|
499
693
|
"aria-activedescendant": {
|
|
500
694
|
description:
|
|
501
695
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -676,7 +870,7 @@ export const propsSelectValue: Record<string, PropMeta> = {
|
|
|
676
870
|
},
|
|
677
871
|
"aria-label": {
|
|
678
872
|
description:
|
|
679
|
-
"
|
|
873
|
+
"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.",
|
|
680
874
|
required: false,
|
|
681
875
|
control: "text",
|
|
682
876
|
type: "string",
|
|
@@ -875,19 +1069,72 @@ export const propsSelectValue: Record<string, PropMeta> = {
|
|
|
875
1069
|
control: "text",
|
|
876
1070
|
type: "string",
|
|
877
1071
|
},
|
|
878
|
-
autoCapitalize: {
|
|
1072
|
+
autoCapitalize: {
|
|
1073
|
+
required: false,
|
|
1074
|
+
control: "text",
|
|
1075
|
+
type: "string",
|
|
1076
|
+
description:
|
|
1077
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
1078
|
+
},
|
|
879
1079
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
880
|
-
autoFocus: {
|
|
1080
|
+
autoFocus: {
|
|
1081
|
+
required: false,
|
|
1082
|
+
control: "boolean",
|
|
1083
|
+
type: "boolean",
|
|
1084
|
+
description:
|
|
1085
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
1086
|
+
},
|
|
881
1087
|
autoSave: { required: false, control: "text", type: "string" },
|
|
882
1088
|
className: { required: false, control: "text", type: "string" },
|
|
883
|
-
color: {
|
|
884
|
-
|
|
885
|
-
|
|
1089
|
+
color: {
|
|
1090
|
+
required: false,
|
|
1091
|
+
control: "color",
|
|
1092
|
+
type: "string",
|
|
1093
|
+
description:
|
|
1094
|
+
"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.",
|
|
1095
|
+
},
|
|
1096
|
+
content: {
|
|
1097
|
+
required: false,
|
|
1098
|
+
control: "text",
|
|
1099
|
+
type: "string",
|
|
1100
|
+
description:
|
|
1101
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
1102
|
+
},
|
|
1103
|
+
contextMenu: {
|
|
1104
|
+
required: false,
|
|
1105
|
+
control: "text",
|
|
1106
|
+
type: "string",
|
|
1107
|
+
description:
|
|
1108
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
1109
|
+
},
|
|
886
1110
|
datatype: { required: false, control: "text", type: "string" },
|
|
887
|
-
dir: {
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
1111
|
+
dir: {
|
|
1112
|
+
required: false,
|
|
1113
|
+
control: "text",
|
|
1114
|
+
type: "string",
|
|
1115
|
+
description:
|
|
1116
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
1117
|
+
},
|
|
1118
|
+
draggable: {
|
|
1119
|
+
required: false,
|
|
1120
|
+
control: "boolean",
|
|
1121
|
+
type: "boolean",
|
|
1122
|
+
description: "Defines whether the element can be dragged.",
|
|
1123
|
+
},
|
|
1124
|
+
hidden: {
|
|
1125
|
+
required: false,
|
|
1126
|
+
control: "boolean",
|
|
1127
|
+
type: "boolean",
|
|
1128
|
+
description:
|
|
1129
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
1130
|
+
},
|
|
1131
|
+
id: {
|
|
1132
|
+
required: false,
|
|
1133
|
+
control: "text",
|
|
1134
|
+
type: "string",
|
|
1135
|
+
description:
|
|
1136
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
1137
|
+
},
|
|
891
1138
|
inputMode: {
|
|
892
1139
|
description:
|
|
893
1140
|
"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",
|
|
@@ -917,19 +1164,47 @@ export const propsSelectValue: Record<string, PropMeta> = {
|
|
|
917
1164
|
itemRef: { required: false, control: "text", type: "string" },
|
|
918
1165
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
919
1166
|
itemType: { required: false, control: "text", type: "string" },
|
|
920
|
-
lang: {
|
|
1167
|
+
lang: {
|
|
1168
|
+
required: false,
|
|
1169
|
+
control: "text",
|
|
1170
|
+
type: "string",
|
|
1171
|
+
description: "Defines the language used in the element.",
|
|
1172
|
+
},
|
|
921
1173
|
nonce: { required: false, control: "text", type: "string" },
|
|
1174
|
+
placeholder: { required: false, control: "text", type: "string" },
|
|
922
1175
|
prefix: { required: false, control: "text", type: "string" },
|
|
923
1176
|
property: { required: false, control: "text", type: "string" },
|
|
924
1177
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
925
|
-
rel: {
|
|
1178
|
+
rel: {
|
|
1179
|
+
required: false,
|
|
1180
|
+
control: "text",
|
|
1181
|
+
type: "string",
|
|
1182
|
+
description:
|
|
1183
|
+
"Specifies the relationship of the target object to the link object.",
|
|
1184
|
+
},
|
|
926
1185
|
resource: { required: false, control: "text", type: "string" },
|
|
927
1186
|
results: { required: false, control: "number", type: "number" },
|
|
928
1187
|
rev: { required: false, control: "text", type: "string" },
|
|
929
|
-
role: {
|
|
1188
|
+
role: {
|
|
1189
|
+
required: false,
|
|
1190
|
+
control: "text",
|
|
1191
|
+
type: "string",
|
|
1192
|
+
description:
|
|
1193
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
1194
|
+
},
|
|
930
1195
|
security: { required: false, control: "text", type: "string" },
|
|
931
|
-
slot: {
|
|
932
|
-
|
|
1196
|
+
slot: {
|
|
1197
|
+
required: false,
|
|
1198
|
+
control: "text",
|
|
1199
|
+
type: "string",
|
|
1200
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
1201
|
+
},
|
|
1202
|
+
spellCheck: {
|
|
1203
|
+
required: false,
|
|
1204
|
+
control: "boolean",
|
|
1205
|
+
type: "boolean",
|
|
1206
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
1207
|
+
},
|
|
933
1208
|
suppressContentEditableWarning: {
|
|
934
1209
|
required: false,
|
|
935
1210
|
control: "boolean",
|
|
@@ -940,13 +1215,27 @@ export const propsSelectValue: Record<string, PropMeta> = {
|
|
|
940
1215
|
control: "boolean",
|
|
941
1216
|
type: "boolean",
|
|
942
1217
|
},
|
|
943
|
-
tabIndex: {
|
|
944
|
-
|
|
1218
|
+
tabIndex: {
|
|
1219
|
+
required: false,
|
|
1220
|
+
control: "number",
|
|
1221
|
+
type: "number",
|
|
1222
|
+
description:
|
|
1223
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
1224
|
+
},
|
|
1225
|
+
title: {
|
|
1226
|
+
required: false,
|
|
1227
|
+
control: "text",
|
|
1228
|
+
type: "string",
|
|
1229
|
+
description:
|
|
1230
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
1231
|
+
},
|
|
945
1232
|
translate: {
|
|
946
1233
|
required: false,
|
|
947
1234
|
control: "radio",
|
|
948
1235
|
type: "string",
|
|
949
1236
|
options: ["yes", "no"],
|
|
1237
|
+
description:
|
|
1238
|
+
"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.",
|
|
950
1239
|
},
|
|
951
1240
|
typeof: { required: false, control: "text", type: "string" },
|
|
952
1241
|
unselectable: {
|
|
@@ -959,12 +1248,18 @@ export const propsSelectValue: Record<string, PropMeta> = {
|
|
|
959
1248
|
};
|
|
960
1249
|
export const propsSelectContent: Record<string, PropMeta> = {
|
|
961
1250
|
about: { required: false, control: "text", type: "string" },
|
|
962
|
-
accessKey: {
|
|
1251
|
+
accessKey: {
|
|
1252
|
+
required: false,
|
|
1253
|
+
control: "text",
|
|
1254
|
+
type: "string",
|
|
1255
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
1256
|
+
},
|
|
963
1257
|
align: {
|
|
964
1258
|
required: false,
|
|
965
1259
|
control: "radio",
|
|
966
1260
|
type: "string",
|
|
967
1261
|
options: ["center", "start", "end"],
|
|
1262
|
+
description: "Specifies the horizontal alignment of the element.",
|
|
968
1263
|
},
|
|
969
1264
|
alignOffset: { required: false, control: "number", type: "number" },
|
|
970
1265
|
"aria-activedescendant": {
|
|
@@ -1147,7 +1442,7 @@ export const propsSelectContent: Record<string, PropMeta> = {
|
|
|
1147
1442
|
},
|
|
1148
1443
|
"aria-label": {
|
|
1149
1444
|
description:
|
|
1150
|
-
"
|
|
1445
|
+
"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.",
|
|
1151
1446
|
required: false,
|
|
1152
1447
|
control: "text",
|
|
1153
1448
|
type: "string",
|
|
@@ -1347,24 +1642,77 @@ export const propsSelectContent: Record<string, PropMeta> = {
|
|
|
1347
1642
|
type: "string",
|
|
1348
1643
|
},
|
|
1349
1644
|
arrowPadding: { required: false, control: "number", type: "number" },
|
|
1350
|
-
autoCapitalize: {
|
|
1645
|
+
autoCapitalize: {
|
|
1646
|
+
required: false,
|
|
1647
|
+
control: "text",
|
|
1648
|
+
type: "string",
|
|
1649
|
+
description:
|
|
1650
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
1651
|
+
},
|
|
1351
1652
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1352
|
-
autoFocus: {
|
|
1653
|
+
autoFocus: {
|
|
1654
|
+
required: false,
|
|
1655
|
+
control: "boolean",
|
|
1656
|
+
type: "boolean",
|
|
1657
|
+
description:
|
|
1658
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
1659
|
+
},
|
|
1353
1660
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1354
1661
|
avoidCollisions: { required: false, control: "boolean", type: "boolean" },
|
|
1355
1662
|
className: { required: false, control: "text", type: "string" },
|
|
1356
|
-
color: {
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1663
|
+
color: {
|
|
1664
|
+
required: false,
|
|
1665
|
+
control: "color",
|
|
1666
|
+
type: "string",
|
|
1667
|
+
description:
|
|
1668
|
+
"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.",
|
|
1669
|
+
},
|
|
1670
|
+
content: {
|
|
1671
|
+
required: false,
|
|
1672
|
+
control: "text",
|
|
1673
|
+
type: "string",
|
|
1674
|
+
description:
|
|
1675
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
1676
|
+
},
|
|
1677
|
+
contextMenu: {
|
|
1678
|
+
required: false,
|
|
1679
|
+
control: "text",
|
|
1680
|
+
type: "string",
|
|
1681
|
+
description:
|
|
1682
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
1683
|
+
},
|
|
1684
|
+
datatype: { required: false, control: "text", type: "string" },
|
|
1685
|
+
dir: {
|
|
1686
|
+
required: false,
|
|
1687
|
+
control: "text",
|
|
1688
|
+
type: "string",
|
|
1689
|
+
description:
|
|
1690
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
1691
|
+
},
|
|
1692
|
+
draggable: {
|
|
1693
|
+
required: false,
|
|
1694
|
+
control: "boolean",
|
|
1695
|
+
type: "boolean",
|
|
1696
|
+
description: "Defines whether the element can be dragged.",
|
|
1697
|
+
},
|
|
1698
|
+
hidden: {
|
|
1699
|
+
required: false,
|
|
1700
|
+
control: "boolean",
|
|
1701
|
+
type: "boolean",
|
|
1702
|
+
description:
|
|
1703
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
1704
|
+
},
|
|
1705
|
+
hideWhenDetached: { required: false, control: "boolean", type: "boolean" },
|
|
1706
|
+
id: {
|
|
1707
|
+
required: false,
|
|
1708
|
+
control: "text",
|
|
1709
|
+
type: "string",
|
|
1710
|
+
description:
|
|
1711
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
1712
|
+
},
|
|
1713
|
+
inputMode: {
|
|
1714
|
+
description:
|
|
1715
|
+
"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",
|
|
1368
1716
|
required: false,
|
|
1369
1717
|
control: "select",
|
|
1370
1718
|
type: "string",
|
|
@@ -1391,21 +1739,54 @@ export const propsSelectContent: Record<string, PropMeta> = {
|
|
|
1391
1739
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1392
1740
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1393
1741
|
itemType: { required: false, control: "text", type: "string" },
|
|
1394
|
-
lang: {
|
|
1742
|
+
lang: {
|
|
1743
|
+
required: false,
|
|
1744
|
+
control: "text",
|
|
1745
|
+
type: "string",
|
|
1746
|
+
description: "Defines the language used in the element.",
|
|
1747
|
+
},
|
|
1395
1748
|
nonce: { required: false, control: "text", type: "string" },
|
|
1396
|
-
placeholder: {
|
|
1749
|
+
placeholder: {
|
|
1750
|
+
required: false,
|
|
1751
|
+
control: "text",
|
|
1752
|
+
type: "string",
|
|
1753
|
+
description:
|
|
1754
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
1755
|
+
},
|
|
1397
1756
|
prefix: { required: false, control: "text", type: "string" },
|
|
1398
1757
|
property: { required: false, control: "text", type: "string" },
|
|
1399
1758
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1400
|
-
rel: {
|
|
1759
|
+
rel: {
|
|
1760
|
+
required: false,
|
|
1761
|
+
control: "text",
|
|
1762
|
+
type: "string",
|
|
1763
|
+
description:
|
|
1764
|
+
"Specifies the relationship of the target object to the link object.",
|
|
1765
|
+
},
|
|
1401
1766
|
resource: { required: false, control: "text", type: "string" },
|
|
1402
1767
|
results: { required: false, control: "number", type: "number" },
|
|
1403
1768
|
rev: { required: false, control: "text", type: "string" },
|
|
1404
|
-
role: {
|
|
1769
|
+
role: {
|
|
1770
|
+
required: false,
|
|
1771
|
+
control: "text",
|
|
1772
|
+
type: "string",
|
|
1773
|
+
description:
|
|
1774
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
1775
|
+
},
|
|
1405
1776
|
security: { required: false, control: "text", type: "string" },
|
|
1406
1777
|
sideOffset: { required: false, control: "number", type: "number" },
|
|
1407
|
-
slot: {
|
|
1408
|
-
|
|
1778
|
+
slot: {
|
|
1779
|
+
required: false,
|
|
1780
|
+
control: "text",
|
|
1781
|
+
type: "string",
|
|
1782
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
1783
|
+
},
|
|
1784
|
+
spellCheck: {
|
|
1785
|
+
required: false,
|
|
1786
|
+
control: "boolean",
|
|
1787
|
+
type: "boolean",
|
|
1788
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
1789
|
+
},
|
|
1409
1790
|
sticky: {
|
|
1410
1791
|
required: false,
|
|
1411
1792
|
control: "radio",
|
|
@@ -1422,13 +1803,27 @@ export const propsSelectContent: Record<string, PropMeta> = {
|
|
|
1422
1803
|
control: "boolean",
|
|
1423
1804
|
type: "boolean",
|
|
1424
1805
|
},
|
|
1425
|
-
tabIndex: {
|
|
1426
|
-
|
|
1806
|
+
tabIndex: {
|
|
1807
|
+
required: false,
|
|
1808
|
+
control: "number",
|
|
1809
|
+
type: "number",
|
|
1810
|
+
description:
|
|
1811
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
1812
|
+
},
|
|
1813
|
+
title: {
|
|
1814
|
+
required: false,
|
|
1815
|
+
control: "text",
|
|
1816
|
+
type: "string",
|
|
1817
|
+
description:
|
|
1818
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
1819
|
+
},
|
|
1427
1820
|
translate: {
|
|
1428
1821
|
required: false,
|
|
1429
1822
|
control: "radio",
|
|
1430
1823
|
type: "string",
|
|
1431
1824
|
options: ["yes", "no"],
|
|
1825
|
+
description:
|
|
1826
|
+
"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.",
|
|
1432
1827
|
},
|
|
1433
1828
|
typeof: { required: false, control: "text", type: "string" },
|
|
1434
1829
|
unselectable: {
|
|
@@ -1441,7 +1836,12 @@ export const propsSelectContent: Record<string, PropMeta> = {
|
|
|
1441
1836
|
};
|
|
1442
1837
|
export const propsSelectViewport: Record<string, PropMeta> = {
|
|
1443
1838
|
about: { required: false, control: "text", type: "string" },
|
|
1444
|
-
accessKey: {
|
|
1839
|
+
accessKey: {
|
|
1840
|
+
required: false,
|
|
1841
|
+
control: "text",
|
|
1842
|
+
type: "string",
|
|
1843
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
1844
|
+
},
|
|
1445
1845
|
"aria-activedescendant": {
|
|
1446
1846
|
description:
|
|
1447
1847
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -1622,7 +2022,7 @@ export const propsSelectViewport: Record<string, PropMeta> = {
|
|
|
1622
2022
|
},
|
|
1623
2023
|
"aria-label": {
|
|
1624
2024
|
description:
|
|
1625
|
-
"
|
|
2025
|
+
"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.",
|
|
1626
2026
|
required: false,
|
|
1627
2027
|
control: "text",
|
|
1628
2028
|
type: "string",
|
|
@@ -1821,19 +2221,72 @@ export const propsSelectViewport: Record<string, PropMeta> = {
|
|
|
1821
2221
|
control: "text",
|
|
1822
2222
|
type: "string",
|
|
1823
2223
|
},
|
|
1824
|
-
autoCapitalize: {
|
|
2224
|
+
autoCapitalize: {
|
|
2225
|
+
required: false,
|
|
2226
|
+
control: "text",
|
|
2227
|
+
type: "string",
|
|
2228
|
+
description:
|
|
2229
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
2230
|
+
},
|
|
1825
2231
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
1826
|
-
autoFocus: {
|
|
2232
|
+
autoFocus: {
|
|
2233
|
+
required: false,
|
|
2234
|
+
control: "boolean",
|
|
2235
|
+
type: "boolean",
|
|
2236
|
+
description:
|
|
2237
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
2238
|
+
},
|
|
1827
2239
|
autoSave: { required: false, control: "text", type: "string" },
|
|
1828
2240
|
className: { required: false, control: "text", type: "string" },
|
|
1829
|
-
color: {
|
|
1830
|
-
|
|
1831
|
-
|
|
2241
|
+
color: {
|
|
2242
|
+
required: false,
|
|
2243
|
+
control: "color",
|
|
2244
|
+
type: "string",
|
|
2245
|
+
description:
|
|
2246
|
+
"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.",
|
|
2247
|
+
},
|
|
2248
|
+
content: {
|
|
2249
|
+
required: false,
|
|
2250
|
+
control: "text",
|
|
2251
|
+
type: "string",
|
|
2252
|
+
description:
|
|
2253
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
2254
|
+
},
|
|
2255
|
+
contextMenu: {
|
|
2256
|
+
required: false,
|
|
2257
|
+
control: "text",
|
|
2258
|
+
type: "string",
|
|
2259
|
+
description:
|
|
2260
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
2261
|
+
},
|
|
1832
2262
|
datatype: { required: false, control: "text", type: "string" },
|
|
1833
|
-
dir: {
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
2263
|
+
dir: {
|
|
2264
|
+
required: false,
|
|
2265
|
+
control: "text",
|
|
2266
|
+
type: "string",
|
|
2267
|
+
description:
|
|
2268
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
2269
|
+
},
|
|
2270
|
+
draggable: {
|
|
2271
|
+
required: false,
|
|
2272
|
+
control: "boolean",
|
|
2273
|
+
type: "boolean",
|
|
2274
|
+
description: "Defines whether the element can be dragged.",
|
|
2275
|
+
},
|
|
2276
|
+
hidden: {
|
|
2277
|
+
required: false,
|
|
2278
|
+
control: "boolean",
|
|
2279
|
+
type: "boolean",
|
|
2280
|
+
description:
|
|
2281
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
2282
|
+
},
|
|
2283
|
+
id: {
|
|
2284
|
+
required: false,
|
|
2285
|
+
control: "text",
|
|
2286
|
+
type: "string",
|
|
2287
|
+
description:
|
|
2288
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
2289
|
+
},
|
|
1837
2290
|
inputMode: {
|
|
1838
2291
|
description:
|
|
1839
2292
|
"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",
|
|
@@ -1863,20 +2316,53 @@ export const propsSelectViewport: Record<string, PropMeta> = {
|
|
|
1863
2316
|
itemRef: { required: false, control: "text", type: "string" },
|
|
1864
2317
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
1865
2318
|
itemType: { required: false, control: "text", type: "string" },
|
|
1866
|
-
lang: {
|
|
2319
|
+
lang: {
|
|
2320
|
+
required: false,
|
|
2321
|
+
control: "text",
|
|
2322
|
+
type: "string",
|
|
2323
|
+
description: "Defines the language used in the element.",
|
|
2324
|
+
},
|
|
1867
2325
|
nonce: { required: false, control: "text", type: "string" },
|
|
1868
|
-
placeholder: {
|
|
2326
|
+
placeholder: {
|
|
2327
|
+
required: false,
|
|
2328
|
+
control: "text",
|
|
2329
|
+
type: "string",
|
|
2330
|
+
description:
|
|
2331
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
2332
|
+
},
|
|
1869
2333
|
prefix: { required: false, control: "text", type: "string" },
|
|
1870
2334
|
property: { required: false, control: "text", type: "string" },
|
|
1871
2335
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
1872
|
-
rel: {
|
|
2336
|
+
rel: {
|
|
2337
|
+
required: false,
|
|
2338
|
+
control: "text",
|
|
2339
|
+
type: "string",
|
|
2340
|
+
description:
|
|
2341
|
+
"Specifies the relationship of the target object to the link object.",
|
|
2342
|
+
},
|
|
1873
2343
|
resource: { required: false, control: "text", type: "string" },
|
|
1874
2344
|
results: { required: false, control: "number", type: "number" },
|
|
1875
2345
|
rev: { required: false, control: "text", type: "string" },
|
|
1876
|
-
role: {
|
|
2346
|
+
role: {
|
|
2347
|
+
required: false,
|
|
2348
|
+
control: "text",
|
|
2349
|
+
type: "string",
|
|
2350
|
+
description:
|
|
2351
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
2352
|
+
},
|
|
1877
2353
|
security: { required: false, control: "text", type: "string" },
|
|
1878
|
-
slot: {
|
|
1879
|
-
|
|
2354
|
+
slot: {
|
|
2355
|
+
required: false,
|
|
2356
|
+
control: "text",
|
|
2357
|
+
type: "string",
|
|
2358
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
2359
|
+
},
|
|
2360
|
+
spellCheck: {
|
|
2361
|
+
required: false,
|
|
2362
|
+
control: "boolean",
|
|
2363
|
+
type: "boolean",
|
|
2364
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
2365
|
+
},
|
|
1880
2366
|
suppressContentEditableWarning: {
|
|
1881
2367
|
required: false,
|
|
1882
2368
|
control: "boolean",
|
|
@@ -1887,13 +2373,27 @@ export const propsSelectViewport: Record<string, PropMeta> = {
|
|
|
1887
2373
|
control: "boolean",
|
|
1888
2374
|
type: "boolean",
|
|
1889
2375
|
},
|
|
1890
|
-
tabIndex: {
|
|
1891
|
-
|
|
2376
|
+
tabIndex: {
|
|
2377
|
+
required: false,
|
|
2378
|
+
control: "number",
|
|
2379
|
+
type: "number",
|
|
2380
|
+
description:
|
|
2381
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
2382
|
+
},
|
|
2383
|
+
title: {
|
|
2384
|
+
required: false,
|
|
2385
|
+
control: "text",
|
|
2386
|
+
type: "string",
|
|
2387
|
+
description:
|
|
2388
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
2389
|
+
},
|
|
1892
2390
|
translate: {
|
|
1893
2391
|
required: false,
|
|
1894
2392
|
control: "radio",
|
|
1895
2393
|
type: "string",
|
|
1896
2394
|
options: ["yes", "no"],
|
|
2395
|
+
description:
|
|
2396
|
+
"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.",
|
|
1897
2397
|
},
|
|
1898
2398
|
typeof: { required: false, control: "text", type: "string" },
|
|
1899
2399
|
unselectable: {
|
|
@@ -1906,7 +2406,12 @@ export const propsSelectViewport: Record<string, PropMeta> = {
|
|
|
1906
2406
|
};
|
|
1907
2407
|
export const propsSelectItem: Record<string, PropMeta> = {
|
|
1908
2408
|
about: { required: false, control: "text", type: "string" },
|
|
1909
|
-
accessKey: {
|
|
2409
|
+
accessKey: {
|
|
2410
|
+
required: false,
|
|
2411
|
+
control: "text",
|
|
2412
|
+
type: "string",
|
|
2413
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
2414
|
+
},
|
|
1910
2415
|
"aria-activedescendant": {
|
|
1911
2416
|
description:
|
|
1912
2417
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -2087,7 +2592,7 @@ export const propsSelectItem: Record<string, PropMeta> = {
|
|
|
2087
2592
|
},
|
|
2088
2593
|
"aria-label": {
|
|
2089
2594
|
description:
|
|
2090
|
-
"
|
|
2595
|
+
"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.",
|
|
2091
2596
|
required: false,
|
|
2092
2597
|
control: "text",
|
|
2093
2598
|
type: "string",
|
|
@@ -2286,20 +2791,78 @@ export const propsSelectItem: Record<string, PropMeta> = {
|
|
|
2286
2791
|
control: "text",
|
|
2287
2792
|
type: "string",
|
|
2288
2793
|
},
|
|
2289
|
-
autoCapitalize: {
|
|
2794
|
+
autoCapitalize: {
|
|
2795
|
+
required: false,
|
|
2796
|
+
control: "text",
|
|
2797
|
+
type: "string",
|
|
2798
|
+
description:
|
|
2799
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
2800
|
+
},
|
|
2290
2801
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2291
|
-
autoFocus: {
|
|
2802
|
+
autoFocus: {
|
|
2803
|
+
required: false,
|
|
2804
|
+
control: "boolean",
|
|
2805
|
+
type: "boolean",
|
|
2806
|
+
description:
|
|
2807
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
2808
|
+
},
|
|
2292
2809
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2293
2810
|
className: { required: false, control: "text", type: "string" },
|
|
2294
|
-
color: {
|
|
2295
|
-
|
|
2296
|
-
|
|
2811
|
+
color: {
|
|
2812
|
+
required: false,
|
|
2813
|
+
control: "color",
|
|
2814
|
+
type: "string",
|
|
2815
|
+
description:
|
|
2816
|
+
"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.",
|
|
2817
|
+
},
|
|
2818
|
+
content: {
|
|
2819
|
+
required: false,
|
|
2820
|
+
control: "text",
|
|
2821
|
+
type: "string",
|
|
2822
|
+
description:
|
|
2823
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
2824
|
+
},
|
|
2825
|
+
contextMenu: {
|
|
2826
|
+
required: false,
|
|
2827
|
+
control: "text",
|
|
2828
|
+
type: "string",
|
|
2829
|
+
description:
|
|
2830
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
2831
|
+
},
|
|
2297
2832
|
datatype: { required: false, control: "text", type: "string" },
|
|
2298
|
-
dir: {
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2833
|
+
dir: {
|
|
2834
|
+
required: false,
|
|
2835
|
+
control: "text",
|
|
2836
|
+
type: "string",
|
|
2837
|
+
description:
|
|
2838
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
2839
|
+
},
|
|
2840
|
+
disabled: {
|
|
2841
|
+
required: false,
|
|
2842
|
+
control: "boolean",
|
|
2843
|
+
type: "boolean",
|
|
2844
|
+
description: "Indicates whether the user can interact with the element.",
|
|
2845
|
+
},
|
|
2846
|
+
draggable: {
|
|
2847
|
+
required: false,
|
|
2848
|
+
control: "boolean",
|
|
2849
|
+
type: "boolean",
|
|
2850
|
+
description: "Defines whether the element can be dragged.",
|
|
2851
|
+
},
|
|
2852
|
+
hidden: {
|
|
2853
|
+
required: false,
|
|
2854
|
+
control: "boolean",
|
|
2855
|
+
type: "boolean",
|
|
2856
|
+
description:
|
|
2857
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
2858
|
+
},
|
|
2859
|
+
id: {
|
|
2860
|
+
required: false,
|
|
2861
|
+
control: "text",
|
|
2862
|
+
type: "string",
|
|
2863
|
+
description:
|
|
2864
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
2865
|
+
},
|
|
2303
2866
|
inputMode: {
|
|
2304
2867
|
description:
|
|
2305
2868
|
"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",
|
|
@@ -2329,20 +2892,53 @@ export const propsSelectItem: Record<string, PropMeta> = {
|
|
|
2329
2892
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2330
2893
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2331
2894
|
itemType: { required: false, control: "text", type: "string" },
|
|
2332
|
-
lang: {
|
|
2895
|
+
lang: {
|
|
2896
|
+
required: false,
|
|
2897
|
+
control: "text",
|
|
2898
|
+
type: "string",
|
|
2899
|
+
description: "Defines the language used in the element.",
|
|
2900
|
+
},
|
|
2333
2901
|
nonce: { required: false, control: "text", type: "string" },
|
|
2334
|
-
placeholder: {
|
|
2902
|
+
placeholder: {
|
|
2903
|
+
required: false,
|
|
2904
|
+
control: "text",
|
|
2905
|
+
type: "string",
|
|
2906
|
+
description:
|
|
2907
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
2908
|
+
},
|
|
2335
2909
|
prefix: { required: false, control: "text", type: "string" },
|
|
2336
2910
|
property: { required: false, control: "text", type: "string" },
|
|
2337
2911
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2338
|
-
rel: {
|
|
2912
|
+
rel: {
|
|
2913
|
+
required: false,
|
|
2914
|
+
control: "text",
|
|
2915
|
+
type: "string",
|
|
2916
|
+
description:
|
|
2917
|
+
"Specifies the relationship of the target object to the link object.",
|
|
2918
|
+
},
|
|
2339
2919
|
resource: { required: false, control: "text", type: "string" },
|
|
2340
2920
|
results: { required: false, control: "number", type: "number" },
|
|
2341
2921
|
rev: { required: false, control: "text", type: "string" },
|
|
2342
|
-
role: {
|
|
2922
|
+
role: {
|
|
2923
|
+
required: false,
|
|
2924
|
+
control: "text",
|
|
2925
|
+
type: "string",
|
|
2926
|
+
description:
|
|
2927
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
2928
|
+
},
|
|
2343
2929
|
security: { required: false, control: "text", type: "string" },
|
|
2344
|
-
slot: {
|
|
2345
|
-
|
|
2930
|
+
slot: {
|
|
2931
|
+
required: false,
|
|
2932
|
+
control: "text",
|
|
2933
|
+
type: "string",
|
|
2934
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
2935
|
+
},
|
|
2936
|
+
spellCheck: {
|
|
2937
|
+
required: false,
|
|
2938
|
+
control: "boolean",
|
|
2939
|
+
type: "boolean",
|
|
2940
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
2941
|
+
},
|
|
2346
2942
|
suppressContentEditableWarning: {
|
|
2347
2943
|
required: false,
|
|
2348
2944
|
control: "boolean",
|
|
@@ -2353,14 +2949,28 @@ export const propsSelectItem: Record<string, PropMeta> = {
|
|
|
2353
2949
|
control: "boolean",
|
|
2354
2950
|
type: "boolean",
|
|
2355
2951
|
},
|
|
2356
|
-
tabIndex: {
|
|
2952
|
+
tabIndex: {
|
|
2953
|
+
required: false,
|
|
2954
|
+
control: "number",
|
|
2955
|
+
type: "number",
|
|
2956
|
+
description:
|
|
2957
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
2958
|
+
},
|
|
2357
2959
|
textValue: { required: false, control: "text", type: "string" },
|
|
2358
|
-
title: {
|
|
2960
|
+
title: {
|
|
2961
|
+
required: false,
|
|
2962
|
+
control: "text",
|
|
2963
|
+
type: "string",
|
|
2964
|
+
description:
|
|
2965
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
2966
|
+
},
|
|
2359
2967
|
translate: {
|
|
2360
2968
|
required: false,
|
|
2361
2969
|
control: "radio",
|
|
2362
2970
|
type: "string",
|
|
2363
2971
|
options: ["yes", "no"],
|
|
2972
|
+
description:
|
|
2973
|
+
"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.",
|
|
2364
2974
|
},
|
|
2365
2975
|
typeof: { required: false, control: "text", type: "string" },
|
|
2366
2976
|
unselectable: {
|
|
@@ -2369,12 +2979,23 @@ export const propsSelectItem: Record<string, PropMeta> = {
|
|
|
2369
2979
|
type: "string",
|
|
2370
2980
|
options: ["on", "off"],
|
|
2371
2981
|
},
|
|
2372
|
-
value: {
|
|
2982
|
+
value: {
|
|
2983
|
+
required: true,
|
|
2984
|
+
control: "text",
|
|
2985
|
+
type: "string",
|
|
2986
|
+
description:
|
|
2987
|
+
"Defines a default value which will be displayed in the element on pageload.",
|
|
2988
|
+
},
|
|
2373
2989
|
vocab: { required: false, control: "text", type: "string" },
|
|
2374
2990
|
};
|
|
2375
2991
|
export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
2376
2992
|
about: { required: false, control: "text", type: "string" },
|
|
2377
|
-
accessKey: {
|
|
2993
|
+
accessKey: {
|
|
2994
|
+
required: false,
|
|
2995
|
+
control: "text",
|
|
2996
|
+
type: "string",
|
|
2997
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
2998
|
+
},
|
|
2378
2999
|
"aria-activedescendant": {
|
|
2379
3000
|
description:
|
|
2380
3001
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -2555,7 +3176,7 @@ export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
|
2555
3176
|
},
|
|
2556
3177
|
"aria-label": {
|
|
2557
3178
|
description:
|
|
2558
|
-
"
|
|
3179
|
+
"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.",
|
|
2559
3180
|
required: false,
|
|
2560
3181
|
control: "text",
|
|
2561
3182
|
type: "string",
|
|
@@ -2754,19 +3375,72 @@ export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
|
2754
3375
|
control: "text",
|
|
2755
3376
|
type: "string",
|
|
2756
3377
|
},
|
|
2757
|
-
autoCapitalize: {
|
|
3378
|
+
autoCapitalize: {
|
|
3379
|
+
required: false,
|
|
3380
|
+
control: "text",
|
|
3381
|
+
type: "string",
|
|
3382
|
+
description:
|
|
3383
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
3384
|
+
},
|
|
2758
3385
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
2759
|
-
autoFocus: {
|
|
3386
|
+
autoFocus: {
|
|
3387
|
+
required: false,
|
|
3388
|
+
control: "boolean",
|
|
3389
|
+
type: "boolean",
|
|
3390
|
+
description:
|
|
3391
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
3392
|
+
},
|
|
2760
3393
|
autoSave: { required: false, control: "text", type: "string" },
|
|
2761
3394
|
className: { required: false, control: "text", type: "string" },
|
|
2762
|
-
color: {
|
|
2763
|
-
|
|
2764
|
-
|
|
3395
|
+
color: {
|
|
3396
|
+
required: false,
|
|
3397
|
+
control: "color",
|
|
3398
|
+
type: "string",
|
|
3399
|
+
description:
|
|
3400
|
+
"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.",
|
|
3401
|
+
},
|
|
3402
|
+
content: {
|
|
3403
|
+
required: false,
|
|
3404
|
+
control: "text",
|
|
3405
|
+
type: "string",
|
|
3406
|
+
description:
|
|
3407
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
3408
|
+
},
|
|
3409
|
+
contextMenu: {
|
|
3410
|
+
required: false,
|
|
3411
|
+
control: "text",
|
|
3412
|
+
type: "string",
|
|
3413
|
+
description:
|
|
3414
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
3415
|
+
},
|
|
2765
3416
|
datatype: { required: false, control: "text", type: "string" },
|
|
2766
|
-
dir: {
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
3417
|
+
dir: {
|
|
3418
|
+
required: false,
|
|
3419
|
+
control: "text",
|
|
3420
|
+
type: "string",
|
|
3421
|
+
description:
|
|
3422
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
3423
|
+
},
|
|
3424
|
+
draggable: {
|
|
3425
|
+
required: false,
|
|
3426
|
+
control: "boolean",
|
|
3427
|
+
type: "boolean",
|
|
3428
|
+
description: "Defines whether the element can be dragged.",
|
|
3429
|
+
},
|
|
3430
|
+
hidden: {
|
|
3431
|
+
required: false,
|
|
3432
|
+
control: "boolean",
|
|
3433
|
+
type: "boolean",
|
|
3434
|
+
description:
|
|
3435
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
3436
|
+
},
|
|
3437
|
+
id: {
|
|
3438
|
+
required: false,
|
|
3439
|
+
control: "text",
|
|
3440
|
+
type: "string",
|
|
3441
|
+
description:
|
|
3442
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
3443
|
+
},
|
|
2770
3444
|
inputMode: {
|
|
2771
3445
|
description:
|
|
2772
3446
|
"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",
|
|
@@ -2796,20 +3470,53 @@ export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
|
2796
3470
|
itemRef: { required: false, control: "text", type: "string" },
|
|
2797
3471
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
2798
3472
|
itemType: { required: false, control: "text", type: "string" },
|
|
2799
|
-
lang: {
|
|
3473
|
+
lang: {
|
|
3474
|
+
required: false,
|
|
3475
|
+
control: "text",
|
|
3476
|
+
type: "string",
|
|
3477
|
+
description: "Defines the language used in the element.",
|
|
3478
|
+
},
|
|
2800
3479
|
nonce: { required: false, control: "text", type: "string" },
|
|
2801
|
-
placeholder: {
|
|
3480
|
+
placeholder: {
|
|
3481
|
+
required: false,
|
|
3482
|
+
control: "text",
|
|
3483
|
+
type: "string",
|
|
3484
|
+
description:
|
|
3485
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
3486
|
+
},
|
|
2802
3487
|
prefix: { required: false, control: "text", type: "string" },
|
|
2803
3488
|
property: { required: false, control: "text", type: "string" },
|
|
2804
3489
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
2805
|
-
rel: {
|
|
3490
|
+
rel: {
|
|
3491
|
+
required: false,
|
|
3492
|
+
control: "text",
|
|
3493
|
+
type: "string",
|
|
3494
|
+
description:
|
|
3495
|
+
"Specifies the relationship of the target object to the link object.",
|
|
3496
|
+
},
|
|
2806
3497
|
resource: { required: false, control: "text", type: "string" },
|
|
2807
3498
|
results: { required: false, control: "number", type: "number" },
|
|
2808
3499
|
rev: { required: false, control: "text", type: "string" },
|
|
2809
|
-
role: {
|
|
3500
|
+
role: {
|
|
3501
|
+
required: false,
|
|
3502
|
+
control: "text",
|
|
3503
|
+
type: "string",
|
|
3504
|
+
description:
|
|
3505
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
3506
|
+
},
|
|
2810
3507
|
security: { required: false, control: "text", type: "string" },
|
|
2811
|
-
slot: {
|
|
2812
|
-
|
|
3508
|
+
slot: {
|
|
3509
|
+
required: false,
|
|
3510
|
+
control: "text",
|
|
3511
|
+
type: "string",
|
|
3512
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
3513
|
+
},
|
|
3514
|
+
spellCheck: {
|
|
3515
|
+
required: false,
|
|
3516
|
+
control: "boolean",
|
|
3517
|
+
type: "boolean",
|
|
3518
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
3519
|
+
},
|
|
2813
3520
|
suppressContentEditableWarning: {
|
|
2814
3521
|
required: false,
|
|
2815
3522
|
control: "boolean",
|
|
@@ -2820,13 +3527,27 @@ export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
|
2820
3527
|
control: "boolean",
|
|
2821
3528
|
type: "boolean",
|
|
2822
3529
|
},
|
|
2823
|
-
tabIndex: {
|
|
2824
|
-
|
|
3530
|
+
tabIndex: {
|
|
3531
|
+
required: false,
|
|
3532
|
+
control: "number",
|
|
3533
|
+
type: "number",
|
|
3534
|
+
description:
|
|
3535
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
3536
|
+
},
|
|
3537
|
+
title: {
|
|
3538
|
+
required: false,
|
|
3539
|
+
control: "text",
|
|
3540
|
+
type: "string",
|
|
3541
|
+
description:
|
|
3542
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
3543
|
+
},
|
|
2825
3544
|
translate: {
|
|
2826
3545
|
required: false,
|
|
2827
3546
|
control: "radio",
|
|
2828
3547
|
type: "string",
|
|
2829
3548
|
options: ["yes", "no"],
|
|
3549
|
+
description:
|
|
3550
|
+
"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.",
|
|
2830
3551
|
},
|
|
2831
3552
|
typeof: { required: false, control: "text", type: "string" },
|
|
2832
3553
|
unselectable: {
|
|
@@ -2839,7 +3560,12 @@ export const propsSelectItemIndicator: Record<string, PropMeta> = {
|
|
|
2839
3560
|
};
|
|
2840
3561
|
export const propsSelectItemText: Record<string, PropMeta> = {
|
|
2841
3562
|
about: { required: false, control: "text", type: "string" },
|
|
2842
|
-
accessKey: {
|
|
3563
|
+
accessKey: {
|
|
3564
|
+
required: false,
|
|
3565
|
+
control: "text",
|
|
3566
|
+
type: "string",
|
|
3567
|
+
description: "Keyboard shortcut to activate or add focus to the element.",
|
|
3568
|
+
},
|
|
2843
3569
|
"aria-activedescendant": {
|
|
2844
3570
|
description:
|
|
2845
3571
|
"Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.",
|
|
@@ -3020,7 +3746,7 @@ export const propsSelectItemText: Record<string, PropMeta> = {
|
|
|
3020
3746
|
},
|
|
3021
3747
|
"aria-label": {
|
|
3022
3748
|
description:
|
|
3023
|
-
"
|
|
3749
|
+
"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.",
|
|
3024
3750
|
required: false,
|
|
3025
3751
|
control: "text",
|
|
3026
3752
|
type: "string",
|
|
@@ -3219,19 +3945,72 @@ export const propsSelectItemText: Record<string, PropMeta> = {
|
|
|
3219
3945
|
control: "text",
|
|
3220
3946
|
type: "string",
|
|
3221
3947
|
},
|
|
3222
|
-
autoCapitalize: {
|
|
3948
|
+
autoCapitalize: {
|
|
3949
|
+
required: false,
|
|
3950
|
+
control: "text",
|
|
3951
|
+
type: "string",
|
|
3952
|
+
description:
|
|
3953
|
+
"Sets whether input is automatically capitalized when entered by user.",
|
|
3954
|
+
},
|
|
3223
3955
|
autoCorrect: { required: false, control: "text", type: "string" },
|
|
3224
|
-
autoFocus: {
|
|
3956
|
+
autoFocus: {
|
|
3957
|
+
required: false,
|
|
3958
|
+
control: "boolean",
|
|
3959
|
+
type: "boolean",
|
|
3960
|
+
description:
|
|
3961
|
+
"Indicates that an element should be focused on page load, or when its parent dialog is displayed.",
|
|
3962
|
+
},
|
|
3225
3963
|
autoSave: { required: false, control: "text", type: "string" },
|
|
3226
3964
|
className: { required: false, control: "text", type: "string" },
|
|
3227
|
-
color: {
|
|
3228
|
-
|
|
3229
|
-
|
|
3965
|
+
color: {
|
|
3966
|
+
required: false,
|
|
3967
|
+
control: "color",
|
|
3968
|
+
type: "string",
|
|
3969
|
+
description:
|
|
3970
|
+
"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.",
|
|
3971
|
+
},
|
|
3972
|
+
content: {
|
|
3973
|
+
required: false,
|
|
3974
|
+
control: "text",
|
|
3975
|
+
type: "string",
|
|
3976
|
+
description:
|
|
3977
|
+
"A value associated with http-equiv orname depending on the context.",
|
|
3978
|
+
},
|
|
3979
|
+
contextMenu: {
|
|
3980
|
+
required: false,
|
|
3981
|
+
control: "text",
|
|
3982
|
+
type: "string",
|
|
3983
|
+
description:
|
|
3984
|
+
"Defines the ID of a menu element which willserve as the element's context menu.",
|
|
3985
|
+
},
|
|
3230
3986
|
datatype: { required: false, control: "text", type: "string" },
|
|
3231
|
-
dir: {
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3987
|
+
dir: {
|
|
3988
|
+
required: false,
|
|
3989
|
+
control: "text",
|
|
3990
|
+
type: "string",
|
|
3991
|
+
description:
|
|
3992
|
+
"Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)",
|
|
3993
|
+
},
|
|
3994
|
+
draggable: {
|
|
3995
|
+
required: false,
|
|
3996
|
+
control: "boolean",
|
|
3997
|
+
type: "boolean",
|
|
3998
|
+
description: "Defines whether the element can be dragged.",
|
|
3999
|
+
},
|
|
4000
|
+
hidden: {
|
|
4001
|
+
required: false,
|
|
4002
|
+
control: "boolean",
|
|
4003
|
+
type: "boolean",
|
|
4004
|
+
description:
|
|
4005
|
+
"Prevents rendering of given element, while keeping child elements, e.g. script elements, active.",
|
|
4006
|
+
},
|
|
4007
|
+
id: {
|
|
4008
|
+
required: false,
|
|
4009
|
+
control: "text",
|
|
4010
|
+
type: "string",
|
|
4011
|
+
description:
|
|
4012
|
+
"Often used with CSS to style a specific element. The value of this attribute must be unique.",
|
|
4013
|
+
},
|
|
3235
4014
|
inputMode: {
|
|
3236
4015
|
description:
|
|
3237
4016
|
"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",
|
|
@@ -3261,20 +4040,53 @@ export const propsSelectItemText: Record<string, PropMeta> = {
|
|
|
3261
4040
|
itemRef: { required: false, control: "text", type: "string" },
|
|
3262
4041
|
itemScope: { required: false, control: "boolean", type: "boolean" },
|
|
3263
4042
|
itemType: { required: false, control: "text", type: "string" },
|
|
3264
|
-
lang: {
|
|
4043
|
+
lang: {
|
|
4044
|
+
required: false,
|
|
4045
|
+
control: "text",
|
|
4046
|
+
type: "string",
|
|
4047
|
+
description: "Defines the language used in the element.",
|
|
4048
|
+
},
|
|
3265
4049
|
nonce: { required: false, control: "text", type: "string" },
|
|
3266
|
-
placeholder: {
|
|
4050
|
+
placeholder: {
|
|
4051
|
+
required: false,
|
|
4052
|
+
control: "text",
|
|
4053
|
+
type: "string",
|
|
4054
|
+
description:
|
|
4055
|
+
"Provides a hint to the user of what can be entered in the field.",
|
|
4056
|
+
},
|
|
3267
4057
|
prefix: { required: false, control: "text", type: "string" },
|
|
3268
4058
|
property: { required: false, control: "text", type: "string" },
|
|
3269
4059
|
radioGroup: { required: false, control: "text", type: "string" },
|
|
3270
|
-
rel: {
|
|
4060
|
+
rel: {
|
|
4061
|
+
required: false,
|
|
4062
|
+
control: "text",
|
|
4063
|
+
type: "string",
|
|
4064
|
+
description:
|
|
4065
|
+
"Specifies the relationship of the target object to the link object.",
|
|
4066
|
+
},
|
|
3271
4067
|
resource: { required: false, control: "text", type: "string" },
|
|
3272
4068
|
results: { required: false, control: "number", type: "number" },
|
|
3273
4069
|
rev: { required: false, control: "text", type: "string" },
|
|
3274
|
-
role: {
|
|
4070
|
+
role: {
|
|
4071
|
+
required: false,
|
|
4072
|
+
control: "text",
|
|
4073
|
+
type: "string",
|
|
4074
|
+
description:
|
|
4075
|
+
"Defines an explicit role for an element for use by assistive technologies.",
|
|
4076
|
+
},
|
|
3275
4077
|
security: { required: false, control: "text", type: "string" },
|
|
3276
|
-
slot: {
|
|
3277
|
-
|
|
4078
|
+
slot: {
|
|
4079
|
+
required: false,
|
|
4080
|
+
control: "text",
|
|
4081
|
+
type: "string",
|
|
4082
|
+
description: "Assigns a slot in a shadow DOM shadow tree to an element.",
|
|
4083
|
+
},
|
|
4084
|
+
spellCheck: {
|
|
4085
|
+
required: false,
|
|
4086
|
+
control: "boolean",
|
|
4087
|
+
type: "boolean",
|
|
4088
|
+
description: "Indicates whether spell checking is allowed for the element.",
|
|
4089
|
+
},
|
|
3278
4090
|
suppressContentEditableWarning: {
|
|
3279
4091
|
required: false,
|
|
3280
4092
|
control: "boolean",
|
|
@@ -3285,13 +4097,27 @@ export const propsSelectItemText: Record<string, PropMeta> = {
|
|
|
3285
4097
|
control: "boolean",
|
|
3286
4098
|
type: "boolean",
|
|
3287
4099
|
},
|
|
3288
|
-
tabIndex: {
|
|
3289
|
-
|
|
4100
|
+
tabIndex: {
|
|
4101
|
+
required: false,
|
|
4102
|
+
control: "number",
|
|
4103
|
+
type: "number",
|
|
4104
|
+
description:
|
|
4105
|
+
"Overrides the browser's default tab order and follows the one specified instead.",
|
|
4106
|
+
},
|
|
4107
|
+
title: {
|
|
4108
|
+
required: false,
|
|
4109
|
+
control: "text",
|
|
4110
|
+
type: "string",
|
|
4111
|
+
description:
|
|
4112
|
+
"Text to be displayed in a tooltip when hovering over the element.",
|
|
4113
|
+
},
|
|
3290
4114
|
translate: {
|
|
3291
4115
|
required: false,
|
|
3292
4116
|
control: "radio",
|
|
3293
4117
|
type: "string",
|
|
3294
4118
|
options: ["yes", "no"],
|
|
4119
|
+
description:
|
|
4120
|
+
"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.",
|
|
3295
4121
|
},
|
|
3296
4122
|
typeof: { required: false, control: "text", type: "string" },
|
|
3297
4123
|
unselectable: {
|