@nysds/components 1.15.0 → 1.16.0-alpha-1
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/custom-elements.json +626 -313
- package/dist/custom-elements.json +626 -313
- package/dist/nysds.es.js +10 -6
- package/dist/nysds.es.js.map +1 -1
- package/dist/nysds.js +3 -3
- package/dist/nysds.js.map +1 -1
- package/dist/packages/nys-dropdownmenu/src/nys-dropdownmenu.d.ts +1 -1
- package/package.json +9 -3
- package/packages/react/NysAccordion.d.ts +65 -0
- package/packages/react/NysAccordion.js +23 -0
- package/packages/react/NysAccordionItem.d.ts +72 -0
- package/packages/react/NysAccordionItem.js +41 -0
- package/packages/react/NysAlert.d.ts +104 -0
- package/packages/react/NysAlert.js +63 -0
- package/packages/react/NysAvatar.d.ts +78 -0
- package/packages/react/NysAvatar.js +40 -0
- package/packages/react/NysBacktotop.d.ts +54 -0
- package/packages/react/NysBacktotop.js +22 -0
- package/packages/react/NysBadge.d.ts +75 -0
- package/packages/react/NysBadge.js +40 -0
- package/packages/react/NysButton.d.ts +141 -0
- package/packages/react/NysButton.js +81 -0
- package/packages/react/NysCheckbox.d.ts +139 -0
- package/packages/react/NysCheckbox.js +76 -0
- package/packages/react/NysCheckboxgroup.d.ts +91 -0
- package/packages/react/NysCheckboxgroup.js +48 -0
- package/packages/react/NysCombobox.d.ts +126 -0
- package/packages/react/NysCombobox.js +66 -0
- package/packages/react/NysDatepicker.d.ts +122 -0
- package/packages/react/NysDatepicker.js +72 -0
- package/packages/react/NysDivider.d.ts +51 -0
- package/packages/react/NysDivider.js +21 -0
- package/packages/react/NysDropdownMenu.d.ts +54 -0
- package/packages/react/NysDropdownMenu.js +22 -0
- package/packages/react/NysDropdownMenuItem.d.ts +75 -0
- package/packages/react/NysDropdownMenuItem.js +47 -0
- package/packages/react/NysErrorMessage.d.ts +57 -0
- package/packages/react/NysErrorMessage.js +23 -0
- package/packages/react/NysFileItem.d.ts +69 -0
- package/packages/react/NysFileItem.js +37 -0
- package/packages/react/NysFileinput.d.ts +108 -0
- package/packages/react/NysFileinput.js +67 -0
- package/packages/react/NysGlobalFooter.d.ts +57 -0
- package/packages/react/NysGlobalFooter.js +22 -0
- package/packages/react/NysGlobalHeader.d.ts +60 -0
- package/packages/react/NysGlobalHeader.js +23 -0
- package/packages/react/NysIcon.d.ts +66 -0
- package/packages/react/NysIcon.js +27 -0
- package/packages/react/NysLabel.d.ts +66 -0
- package/packages/react/NysLabel.js +26 -0
- package/packages/react/NysModal.d.ts +83 -0
- package/packages/react/NysModal.js +41 -0
- package/packages/react/NysOption.d.ts +66 -0
- package/packages/react/NysOption.js +25 -0
- package/packages/react/NysPagination.d.ts +72 -0
- package/packages/react/NysPagination.js +45 -0
- package/packages/react/NysRadiobutton.d.ts +127 -0
- package/packages/react/NysRadiobutton.js +68 -0
- package/packages/react/NysRadiogroup.d.ts +91 -0
- package/packages/react/NysRadiogroup.js +48 -0
- package/packages/react/NysSelect.d.ts +116 -0
- package/packages/react/NysSelect.js +65 -0
- package/packages/react/NysSkipnav.d.ts +54 -0
- package/packages/react/NysSkipnav.js +22 -0
- package/packages/react/NysStep.d.ts +75 -0
- package/packages/react/NysStep.js +51 -0
- package/packages/react/NysStepper.d.ts +67 -0
- package/packages/react/NysStepper.js +26 -0
- package/packages/react/NysTable.d.ts +76 -0
- package/packages/react/NysTable.js +40 -0
- package/packages/react/NysTextarea.d.ts +138 -0
- package/packages/react/NysTextarea.js +77 -0
- package/packages/react/NysTextinput.d.ts +144 -0
- package/packages/react/NysTextinput.js +83 -0
- package/packages/react/NysToggle.d.ts +102 -0
- package/packages/react/NysToggle.js +59 -0
- package/packages/react/NysTooltip.d.ts +60 -0
- package/packages/react/NysTooltip.js +24 -0
- package/packages/react/NysUnavFooter.d.ts +48 -0
- package/packages/react/NysUnavFooter.js +18 -0
- package/packages/react/NysUnavHeader.d.ts +72 -0
- package/packages/react/NysUnavHeader.js +38 -0
- package/packages/react/README.md +92 -0
- package/packages/react/index.d.ts +37 -0
- package/packages/react/index.js +37 -0
- package/packages/react/react-utils.js +34 -0
package/custom-elements.json
CHANGED
|
@@ -125,7 +125,8 @@
|
|
|
125
125
|
},
|
|
126
126
|
"default": "\"\"",
|
|
127
127
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
128
|
-
"fieldName": "id"
|
|
128
|
+
"fieldName": "id",
|
|
129
|
+
"propName": "id"
|
|
129
130
|
},
|
|
130
131
|
{
|
|
131
132
|
"name": "singleSelect",
|
|
@@ -134,7 +135,8 @@
|
|
|
134
135
|
},
|
|
135
136
|
"default": "false",
|
|
136
137
|
"description": "Only one item can be expanded at a time. Expanding one collapses others.",
|
|
137
|
-
"fieldName": "singleSelect"
|
|
138
|
+
"fieldName": "singleSelect",
|
|
139
|
+
"propName": "singleselect"
|
|
138
140
|
},
|
|
139
141
|
{
|
|
140
142
|
"name": "bordered",
|
|
@@ -143,7 +145,8 @@
|
|
|
143
145
|
},
|
|
144
146
|
"default": "false",
|
|
145
147
|
"description": "Adds borders around each accordion item. Propagates to all children.",
|
|
146
|
-
"fieldName": "bordered"
|
|
148
|
+
"fieldName": "bordered",
|
|
149
|
+
"propName": "bordered"
|
|
147
150
|
}
|
|
148
151
|
],
|
|
149
152
|
"superclass": {
|
|
@@ -292,7 +295,8 @@
|
|
|
292
295
|
},
|
|
293
296
|
"default": "\"\"",
|
|
294
297
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
295
|
-
"fieldName": "id"
|
|
298
|
+
"fieldName": "id",
|
|
299
|
+
"propName": "id"
|
|
296
300
|
},
|
|
297
301
|
{
|
|
298
302
|
"name": "heading",
|
|
@@ -301,7 +305,8 @@
|
|
|
301
305
|
},
|
|
302
306
|
"default": "\"\"",
|
|
303
307
|
"description": "Heading text displayed in the clickable toggle button.",
|
|
304
|
-
"fieldName": "heading"
|
|
308
|
+
"fieldName": "heading",
|
|
309
|
+
"propName": "heading"
|
|
305
310
|
},
|
|
306
311
|
{
|
|
307
312
|
"name": "expanded",
|
|
@@ -310,7 +315,8 @@
|
|
|
310
315
|
},
|
|
311
316
|
"default": "false",
|
|
312
317
|
"description": "Whether the content panel is visible. Toggle via click or keyboard.",
|
|
313
|
-
"fieldName": "expanded"
|
|
318
|
+
"fieldName": "expanded",
|
|
319
|
+
"propName": "expanded"
|
|
314
320
|
},
|
|
315
321
|
{
|
|
316
322
|
"name": "bordered",
|
|
@@ -319,7 +325,8 @@
|
|
|
319
325
|
},
|
|
320
326
|
"default": "false",
|
|
321
327
|
"description": "Adds border styling. Set by parent `nys-accordion`, not directly.",
|
|
322
|
-
"fieldName": "bordered"
|
|
328
|
+
"fieldName": "bordered",
|
|
329
|
+
"propName": "bordered"
|
|
323
330
|
}
|
|
324
331
|
],
|
|
325
332
|
"superclass": {
|
|
@@ -585,7 +592,8 @@
|
|
|
585
592
|
},
|
|
586
593
|
"default": "\"\"",
|
|
587
594
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
588
|
-
"fieldName": "id"
|
|
595
|
+
"fieldName": "id",
|
|
596
|
+
"propName": "id"
|
|
589
597
|
},
|
|
590
598
|
{
|
|
591
599
|
"name": "heading",
|
|
@@ -594,7 +602,8 @@
|
|
|
594
602
|
},
|
|
595
603
|
"default": "\"\"",
|
|
596
604
|
"description": "Bold heading text displayed at the top of the alert.",
|
|
597
|
-
"fieldName": "heading"
|
|
605
|
+
"fieldName": "heading",
|
|
606
|
+
"propName": "heading"
|
|
598
607
|
},
|
|
599
608
|
{
|
|
600
609
|
"name": "icon",
|
|
@@ -603,7 +612,8 @@
|
|
|
603
612
|
},
|
|
604
613
|
"default": "\"\"",
|
|
605
614
|
"description": "Custom icon name. Defaults to type-appropriate icon if not set.",
|
|
606
|
-
"fieldName": "icon"
|
|
615
|
+
"fieldName": "icon",
|
|
616
|
+
"propName": "icon"
|
|
607
617
|
},
|
|
608
618
|
{
|
|
609
619
|
"name": "dismissible",
|
|
@@ -612,7 +622,8 @@
|
|
|
612
622
|
},
|
|
613
623
|
"default": "false",
|
|
614
624
|
"description": "Shows close button allowing users to dismiss the alert.",
|
|
615
|
-
"fieldName": "dismissible"
|
|
625
|
+
"fieldName": "dismissible",
|
|
626
|
+
"propName": "dismissible"
|
|
616
627
|
},
|
|
617
628
|
{
|
|
618
629
|
"name": "duration",
|
|
@@ -621,7 +632,8 @@
|
|
|
621
632
|
},
|
|
622
633
|
"default": "0",
|
|
623
634
|
"description": "Auto-dismiss after specified milliseconds. Set to 0 to disable.",
|
|
624
|
-
"fieldName": "duration"
|
|
635
|
+
"fieldName": "duration",
|
|
636
|
+
"propName": "duration"
|
|
625
637
|
},
|
|
626
638
|
{
|
|
627
639
|
"name": "text",
|
|
@@ -630,7 +642,8 @@
|
|
|
630
642
|
},
|
|
631
643
|
"default": "\"\"",
|
|
632
644
|
"description": "Body text content. Ignored if slot content is provided.",
|
|
633
|
-
"fieldName": "text"
|
|
645
|
+
"fieldName": "text",
|
|
646
|
+
"propName": "text"
|
|
634
647
|
},
|
|
635
648
|
{
|
|
636
649
|
"name": "primaryAction",
|
|
@@ -639,7 +652,8 @@
|
|
|
639
652
|
},
|
|
640
653
|
"default": "\"\"",
|
|
641
654
|
"description": "URL for the primary action link.",
|
|
642
|
-
"fieldName": "primaryAction"
|
|
655
|
+
"fieldName": "primaryAction",
|
|
656
|
+
"propName": "primaryaction"
|
|
643
657
|
},
|
|
644
658
|
{
|
|
645
659
|
"name": "secondaryAction",
|
|
@@ -648,7 +662,8 @@
|
|
|
648
662
|
},
|
|
649
663
|
"default": "\"\"",
|
|
650
664
|
"description": "URL for the secondary action link.",
|
|
651
|
-
"fieldName": "secondaryAction"
|
|
665
|
+
"fieldName": "secondaryAction",
|
|
666
|
+
"propName": "secondaryaction"
|
|
652
667
|
},
|
|
653
668
|
{
|
|
654
669
|
"name": "primaryLabel",
|
|
@@ -657,7 +672,8 @@
|
|
|
657
672
|
},
|
|
658
673
|
"default": "\"Learn more\"",
|
|
659
674
|
"description": "Label text for primary action link.",
|
|
660
|
-
"fieldName": "primaryLabel"
|
|
675
|
+
"fieldName": "primaryLabel",
|
|
676
|
+
"propName": "primarylabel"
|
|
661
677
|
},
|
|
662
678
|
{
|
|
663
679
|
"name": "secondaryLabel",
|
|
@@ -666,7 +682,8 @@
|
|
|
666
682
|
},
|
|
667
683
|
"default": "\"Dismiss\"",
|
|
668
684
|
"description": "Label text for secondary action link.",
|
|
669
|
-
"fieldName": "secondaryLabel"
|
|
685
|
+
"fieldName": "secondaryLabel",
|
|
686
|
+
"propName": "secondarylabel"
|
|
670
687
|
},
|
|
671
688
|
{
|
|
672
689
|
"name": "type",
|
|
@@ -675,7 +692,8 @@
|
|
|
675
692
|
},
|
|
676
693
|
"default": "\"base\"",
|
|
677
694
|
"description": "Semantic alert type affecting color and ARIA role. `danger`/`emergency` use assertive live region.",
|
|
678
|
-
"fieldName": "type"
|
|
695
|
+
"fieldName": "type",
|
|
696
|
+
"propName": "type"
|
|
679
697
|
}
|
|
680
698
|
],
|
|
681
699
|
"superclass": {
|
|
@@ -864,7 +882,8 @@
|
|
|
864
882
|
},
|
|
865
883
|
"default": "\"\"",
|
|
866
884
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
867
|
-
"fieldName": "id"
|
|
885
|
+
"fieldName": "id",
|
|
886
|
+
"propName": "id"
|
|
868
887
|
},
|
|
869
888
|
{
|
|
870
889
|
"name": "ariaLabel",
|
|
@@ -873,7 +892,8 @@
|
|
|
873
892
|
},
|
|
874
893
|
"default": "\"\"",
|
|
875
894
|
"description": "Accessible label for screen readers. Required when no image `alt` is available.",
|
|
876
|
-
"fieldName": "ariaLabel"
|
|
895
|
+
"fieldName": "ariaLabel",
|
|
896
|
+
"propName": "arialabel"
|
|
877
897
|
},
|
|
878
898
|
{
|
|
879
899
|
"name": "image",
|
|
@@ -882,7 +902,8 @@
|
|
|
882
902
|
},
|
|
883
903
|
"default": "\"\"",
|
|
884
904
|
"description": "Image URL. Takes priority over initials and icon.",
|
|
885
|
-
"fieldName": "image"
|
|
905
|
+
"fieldName": "image",
|
|
906
|
+
"propName": "image"
|
|
886
907
|
},
|
|
887
908
|
{
|
|
888
909
|
"name": "initials",
|
|
@@ -891,7 +912,8 @@
|
|
|
891
912
|
},
|
|
892
913
|
"default": "\"\"",
|
|
893
914
|
"description": "1-2 character initials. Used when no image is provided.",
|
|
894
|
-
"fieldName": "initials"
|
|
915
|
+
"fieldName": "initials",
|
|
916
|
+
"propName": "initials"
|
|
895
917
|
},
|
|
896
918
|
{
|
|
897
919
|
"name": "icon",
|
|
@@ -900,7 +922,8 @@
|
|
|
900
922
|
},
|
|
901
923
|
"default": "\"\"",
|
|
902
924
|
"description": "Custom icon name. Falls back to `account_circle` if not set.",
|
|
903
|
-
"fieldName": "icon"
|
|
925
|
+
"fieldName": "icon",
|
|
926
|
+
"propName": "icon"
|
|
904
927
|
},
|
|
905
928
|
{
|
|
906
929
|
"name": "color",
|
|
@@ -909,7 +932,8 @@
|
|
|
909
932
|
},
|
|
910
933
|
"default": "\"\"",
|
|
911
934
|
"description": "Background color. Foreground auto-adjusts for contrast. Accepts CSS values or variables.",
|
|
912
|
-
"fieldName": "color"
|
|
935
|
+
"fieldName": "color",
|
|
936
|
+
"propName": "color"
|
|
913
937
|
},
|
|
914
938
|
{
|
|
915
939
|
"name": "interactive",
|
|
@@ -918,7 +942,8 @@
|
|
|
918
942
|
},
|
|
919
943
|
"default": "false",
|
|
920
944
|
"description": "Makes avatar clickable with button role and focus ring.",
|
|
921
|
-
"fieldName": "interactive"
|
|
945
|
+
"fieldName": "interactive",
|
|
946
|
+
"propName": "interactive"
|
|
922
947
|
},
|
|
923
948
|
{
|
|
924
949
|
"name": "disabled",
|
|
@@ -927,7 +952,8 @@
|
|
|
927
952
|
},
|
|
928
953
|
"default": "false",
|
|
929
954
|
"description": "Prevents interaction when `interactive` is true.",
|
|
930
|
-
"fieldName": "disabled"
|
|
955
|
+
"fieldName": "disabled",
|
|
956
|
+
"propName": "disabled"
|
|
931
957
|
},
|
|
932
958
|
{
|
|
933
959
|
"name": "lazy",
|
|
@@ -936,7 +962,8 @@
|
|
|
936
962
|
},
|
|
937
963
|
"default": "false",
|
|
938
964
|
"description": "Enables lazy loading for the image.",
|
|
939
|
-
"fieldName": "lazy"
|
|
965
|
+
"fieldName": "lazy",
|
|
966
|
+
"propName": "lazy"
|
|
940
967
|
}
|
|
941
968
|
],
|
|
942
969
|
"superclass": {
|
|
@@ -1063,7 +1090,8 @@
|
|
|
1063
1090
|
},
|
|
1064
1091
|
"default": "\"right\"",
|
|
1065
1092
|
"description": "Horizontal position: `left` or `right`.",
|
|
1066
|
-
"fieldName": "position"
|
|
1093
|
+
"fieldName": "position",
|
|
1094
|
+
"propName": "position"
|
|
1067
1095
|
},
|
|
1068
1096
|
{
|
|
1069
1097
|
"name": "visible",
|
|
@@ -1072,7 +1100,8 @@
|
|
|
1072
1100
|
},
|
|
1073
1101
|
"default": "false",
|
|
1074
1102
|
"description": "Force button visibility. Overrides auto-show scroll behavior.",
|
|
1075
|
-
"fieldName": "visible"
|
|
1103
|
+
"fieldName": "visible",
|
|
1104
|
+
"propName": "visible"
|
|
1076
1105
|
}
|
|
1077
1106
|
],
|
|
1078
1107
|
"superclass": {
|
|
@@ -1276,7 +1305,8 @@
|
|
|
1276
1305
|
},
|
|
1277
1306
|
"default": "\"\"",
|
|
1278
1307
|
"description": "Unique identifier.",
|
|
1279
|
-
"fieldName": "id"
|
|
1308
|
+
"fieldName": "id",
|
|
1309
|
+
"propName": "id"
|
|
1280
1310
|
},
|
|
1281
1311
|
{
|
|
1282
1312
|
"name": "name",
|
|
@@ -1285,7 +1315,8 @@
|
|
|
1285
1315
|
},
|
|
1286
1316
|
"default": "\"\"",
|
|
1287
1317
|
"description": "Name attribute for form association.",
|
|
1288
|
-
"fieldName": "name"
|
|
1318
|
+
"fieldName": "name",
|
|
1319
|
+
"propName": "name"
|
|
1289
1320
|
},
|
|
1290
1321
|
{
|
|
1291
1322
|
"name": "size",
|
|
@@ -1294,7 +1325,8 @@
|
|
|
1294
1325
|
},
|
|
1295
1326
|
"default": "\"md\"",
|
|
1296
1327
|
"description": "Badge size: `sm` (smaller text) or `md` (default).",
|
|
1297
|
-
"fieldName": "size"
|
|
1328
|
+
"fieldName": "size",
|
|
1329
|
+
"propName": "size"
|
|
1298
1330
|
},
|
|
1299
1331
|
{
|
|
1300
1332
|
"name": "intent",
|
|
@@ -1303,7 +1335,8 @@
|
|
|
1303
1335
|
},
|
|
1304
1336
|
"default": "\"neutral\"",
|
|
1305
1337
|
"description": "Semantic intent affecting color: `neutral`, `error`, `success`, or `warning`.",
|
|
1306
|
-
"fieldName": "intent"
|
|
1338
|
+
"fieldName": "intent",
|
|
1339
|
+
"propName": "intent"
|
|
1307
1340
|
},
|
|
1308
1341
|
{
|
|
1309
1342
|
"name": "prefixLabel",
|
|
@@ -1312,7 +1345,8 @@
|
|
|
1312
1345
|
},
|
|
1313
1346
|
"default": "\"\"",
|
|
1314
1347
|
"description": "Secondary label displayed before the main label.",
|
|
1315
|
-
"fieldName": "prefixLabel"
|
|
1348
|
+
"fieldName": "prefixLabel",
|
|
1349
|
+
"propName": "prefixlabel"
|
|
1316
1350
|
},
|
|
1317
1351
|
{
|
|
1318
1352
|
"name": "label",
|
|
@@ -1321,7 +1355,8 @@
|
|
|
1321
1355
|
},
|
|
1322
1356
|
"default": "\"\"",
|
|
1323
1357
|
"description": "Primary label text displayed in the badge.",
|
|
1324
|
-
"fieldName": "label"
|
|
1358
|
+
"fieldName": "label",
|
|
1359
|
+
"propName": "label"
|
|
1325
1360
|
},
|
|
1326
1361
|
{
|
|
1327
1362
|
"name": "variant",
|
|
@@ -1329,21 +1364,24 @@
|
|
|
1329
1364
|
"text": "\"strong\" | \"\""
|
|
1330
1365
|
},
|
|
1331
1366
|
"default": "\"\"",
|
|
1332
|
-
"fieldName": "variant"
|
|
1367
|
+
"fieldName": "variant",
|
|
1368
|
+
"propName": "variant"
|
|
1333
1369
|
},
|
|
1334
1370
|
{
|
|
1335
1371
|
"name": "prefixicon",
|
|
1336
1372
|
"type": {
|
|
1337
1373
|
"text": "string | boolean"
|
|
1338
1374
|
},
|
|
1339
|
-
"fieldName": "prefixIcon"
|
|
1375
|
+
"fieldName": "prefixIcon",
|
|
1376
|
+
"propName": "prefixicon"
|
|
1340
1377
|
},
|
|
1341
1378
|
{
|
|
1342
1379
|
"name": "suffixicon",
|
|
1343
1380
|
"type": {
|
|
1344
1381
|
"text": "string | boolean"
|
|
1345
1382
|
},
|
|
1346
|
-
"fieldName": "suffixIcon"
|
|
1383
|
+
"fieldName": "suffixIcon",
|
|
1384
|
+
"propName": "suffixicon"
|
|
1347
1385
|
}
|
|
1348
1386
|
],
|
|
1349
1387
|
"superclass": {
|
|
@@ -1807,7 +1845,8 @@
|
|
|
1807
1845
|
},
|
|
1808
1846
|
"default": "\"\"",
|
|
1809
1847
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
1810
|
-
"fieldName": "id"
|
|
1848
|
+
"fieldName": "id",
|
|
1849
|
+
"propName": "id"
|
|
1811
1850
|
},
|
|
1812
1851
|
{
|
|
1813
1852
|
"name": "name",
|
|
@@ -1816,7 +1855,8 @@
|
|
|
1816
1855
|
},
|
|
1817
1856
|
"default": "\"\"",
|
|
1818
1857
|
"description": "Name for form submission.",
|
|
1819
|
-
"fieldName": "name"
|
|
1858
|
+
"fieldName": "name",
|
|
1859
|
+
"propName": "name"
|
|
1820
1860
|
},
|
|
1821
1861
|
{
|
|
1822
1862
|
"name": "size",
|
|
@@ -1825,7 +1865,8 @@
|
|
|
1825
1865
|
},
|
|
1826
1866
|
"default": "\"md\"",
|
|
1827
1867
|
"description": "Button height: `sm` (40px) for dense UIs, `md` (48px, default) for standard use, `lg` (56px) for prominent CTAs.",
|
|
1828
|
-
"fieldName": "size"
|
|
1868
|
+
"fieldName": "size",
|
|
1869
|
+
"propName": "size"
|
|
1829
1870
|
},
|
|
1830
1871
|
{
|
|
1831
1872
|
"name": "fullWidth",
|
|
@@ -1834,7 +1875,8 @@
|
|
|
1834
1875
|
},
|
|
1835
1876
|
"default": "false",
|
|
1836
1877
|
"description": "Expands button to fill container width. Use for mobile layouts or stacked button groups.",
|
|
1837
|
-
"fieldName": "fullWidth"
|
|
1878
|
+
"fieldName": "fullWidth",
|
|
1879
|
+
"propName": "fullwidth"
|
|
1838
1880
|
},
|
|
1839
1881
|
{
|
|
1840
1882
|
"name": "variant",
|
|
@@ -1843,7 +1885,8 @@
|
|
|
1843
1885
|
},
|
|
1844
1886
|
"default": "\"filled\"",
|
|
1845
1887
|
"description": "Visual style: `filled` for primary (one per section), `outline` for secondary, `ghost` for tertiary, `text` for inline actions. Avoid `text` for navigation.",
|
|
1846
|
-
"fieldName": "variant"
|
|
1888
|
+
"fieldName": "variant",
|
|
1889
|
+
"propName": "variant"
|
|
1847
1890
|
},
|
|
1848
1891
|
{
|
|
1849
1892
|
"name": "inverted",
|
|
@@ -1852,7 +1895,8 @@
|
|
|
1852
1895
|
},
|
|
1853
1896
|
"default": "false",
|
|
1854
1897
|
"description": "Adjusts colors for dark backgrounds.",
|
|
1855
|
-
"fieldName": "inverted"
|
|
1898
|
+
"fieldName": "inverted",
|
|
1899
|
+
"propName": "inverted"
|
|
1856
1900
|
},
|
|
1857
1901
|
{
|
|
1858
1902
|
"name": "label",
|
|
@@ -1861,7 +1905,8 @@
|
|
|
1861
1905
|
},
|
|
1862
1906
|
"default": "\"\"",
|
|
1863
1907
|
"description": "Visible button text. Use sentence case, action-oriented text (e.g., \"Save Draft\"). Becomes aria-label in `circle` mode.",
|
|
1864
|
-
"fieldName": "label"
|
|
1908
|
+
"fieldName": "label",
|
|
1909
|
+
"propName": "label"
|
|
1865
1910
|
},
|
|
1866
1911
|
{
|
|
1867
1912
|
"name": "ariaLabel",
|
|
@@ -1870,7 +1915,8 @@
|
|
|
1870
1915
|
},
|
|
1871
1916
|
"default": "\"\"",
|
|
1872
1917
|
"description": "Screen reader label. Required for icon-only buttons if `label` is not set.",
|
|
1873
|
-
"fieldName": "ariaLabel"
|
|
1918
|
+
"fieldName": "ariaLabel",
|
|
1919
|
+
"propName": "arialabel"
|
|
1874
1920
|
},
|
|
1875
1921
|
{
|
|
1876
1922
|
"name": "ariaControls",
|
|
@@ -1879,7 +1925,8 @@
|
|
|
1879
1925
|
},
|
|
1880
1926
|
"default": "\"\"",
|
|
1881
1927
|
"description": "ID of controlled element (e.g., dropdown or modal). Sets `aria-controls`.",
|
|
1882
|
-
"fieldName": "ariaControls"
|
|
1928
|
+
"fieldName": "ariaControls",
|
|
1929
|
+
"propName": "ariacontrols"
|
|
1883
1930
|
},
|
|
1884
1931
|
{
|
|
1885
1932
|
"name": "prefixIcon",
|
|
@@ -1888,7 +1935,8 @@
|
|
|
1888
1935
|
},
|
|
1889
1936
|
"default": "\"\"",
|
|
1890
1937
|
"description": "Material Symbol icon before label. Not shown for `text` variant or `circle` mode.",
|
|
1891
|
-
"fieldName": "prefixIcon"
|
|
1938
|
+
"fieldName": "prefixIcon",
|
|
1939
|
+
"propName": "prefixicon"
|
|
1892
1940
|
},
|
|
1893
1941
|
{
|
|
1894
1942
|
"name": "suffixIcon",
|
|
@@ -1897,7 +1945,8 @@
|
|
|
1897
1945
|
},
|
|
1898
1946
|
"default": "\"\"",
|
|
1899
1947
|
"description": "Material Symbol icon after label. Use `chevron_down` for dropdowns, `open_in_new` for external links. Not shown for `text` variant or `circle` mode.",
|
|
1900
|
-
"fieldName": "suffixIcon"
|
|
1948
|
+
"fieldName": "suffixIcon",
|
|
1949
|
+
"propName": "suffixicon"
|
|
1901
1950
|
},
|
|
1902
1951
|
{
|
|
1903
1952
|
"name": "circle",
|
|
@@ -1906,7 +1955,8 @@
|
|
|
1906
1955
|
},
|
|
1907
1956
|
"default": "false",
|
|
1908
1957
|
"description": "Renders circular icon-only button. Requires `icon` prop. `label` becomes aria-label.",
|
|
1909
|
-
"fieldName": "circle"
|
|
1958
|
+
"fieldName": "circle",
|
|
1959
|
+
"propName": "circle"
|
|
1910
1960
|
},
|
|
1911
1961
|
{
|
|
1912
1962
|
"name": "icon",
|
|
@@ -1915,7 +1965,8 @@
|
|
|
1915
1965
|
},
|
|
1916
1966
|
"default": "\"\"",
|
|
1917
1967
|
"description": "Icon for circle mode. Required when `circle` is true. Scales with size (sm=24px, md=32px, lg=40px).",
|
|
1918
|
-
"fieldName": "icon"
|
|
1968
|
+
"fieldName": "icon",
|
|
1969
|
+
"propName": "icon"
|
|
1919
1970
|
},
|
|
1920
1971
|
{
|
|
1921
1972
|
"name": "disabled",
|
|
@@ -1924,7 +1975,8 @@
|
|
|
1924
1975
|
},
|
|
1925
1976
|
"default": "false",
|
|
1926
1977
|
"description": "Prevents interaction. Avoid disabling without explanation—show validation errors instead.",
|
|
1927
|
-
"fieldName": "disabled"
|
|
1978
|
+
"fieldName": "disabled",
|
|
1979
|
+
"propName": "disabled"
|
|
1928
1980
|
},
|
|
1929
1981
|
{
|
|
1930
1982
|
"name": "form",
|
|
@@ -1933,7 +1985,8 @@
|
|
|
1933
1985
|
},
|
|
1934
1986
|
"default": "null",
|
|
1935
1987
|
"description": "Form `id` to associate with. Use when button is outside the form element.",
|
|
1936
|
-
"fieldName": "form"
|
|
1988
|
+
"fieldName": "form",
|
|
1989
|
+
"propName": "form"
|
|
1937
1990
|
},
|
|
1938
1991
|
{
|
|
1939
1992
|
"name": "value",
|
|
@@ -1942,7 +1995,8 @@
|
|
|
1942
1995
|
},
|
|
1943
1996
|
"default": "\"\"",
|
|
1944
1997
|
"description": "Value submitted with form data. Only used when `type=\"submit\"`.",
|
|
1945
|
-
"fieldName": "value"
|
|
1998
|
+
"fieldName": "value",
|
|
1999
|
+
"propName": "value"
|
|
1946
2000
|
},
|
|
1947
2001
|
{
|
|
1948
2002
|
"name": "ariaDescription",
|
|
@@ -1951,7 +2005,8 @@
|
|
|
1951
2005
|
},
|
|
1952
2006
|
"default": "\"\"",
|
|
1953
2007
|
"description": "Additional screen reader description. Sets `aria-description`.",
|
|
1954
|
-
"fieldName": "ariaDescription"
|
|
2008
|
+
"fieldName": "ariaDescription",
|
|
2009
|
+
"propName": "ariadescription"
|
|
1955
2010
|
},
|
|
1956
2011
|
{
|
|
1957
2012
|
"name": "type",
|
|
@@ -1960,7 +2015,8 @@
|
|
|
1960
2015
|
},
|
|
1961
2016
|
"default": "\"button\"",
|
|
1962
2017
|
"description": "Form behavior: `button` (default, no form action), `submit` (submits form), `reset` (resets form). Always set explicitly to avoid unintended submissions.",
|
|
1963
|
-
"fieldName": "type"
|
|
2018
|
+
"fieldName": "type",
|
|
2019
|
+
"propName": "type"
|
|
1964
2020
|
},
|
|
1965
2021
|
{
|
|
1966
2022
|
"name": "href",
|
|
@@ -1969,7 +2025,8 @@
|
|
|
1969
2025
|
},
|
|
1970
2026
|
"default": "\"\"",
|
|
1971
2027
|
"description": "URL to navigate to. Renders as `<a>` tag. Omit for action buttons.",
|
|
1972
|
-
"fieldName": "href"
|
|
2028
|
+
"fieldName": "href",
|
|
2029
|
+
"propName": "href"
|
|
1973
2030
|
},
|
|
1974
2031
|
{
|
|
1975
2032
|
"name": "target",
|
|
@@ -1978,7 +2035,8 @@
|
|
|
1978
2035
|
},
|
|
1979
2036
|
"default": "\"_self\"",
|
|
1980
2037
|
"description": "Link target: `_self` (same tab), `_blank` (new tab—add `suffixIcon=\"open_in_new\"`), `_parent`, `_top`, or frame name.",
|
|
1981
|
-
"fieldName": "target"
|
|
2038
|
+
"fieldName": "target",
|
|
2039
|
+
"propName": "target"
|
|
1982
2040
|
}
|
|
1983
2041
|
],
|
|
1984
2042
|
"superclass": {
|
|
@@ -2486,7 +2544,8 @@
|
|
|
2486
2544
|
},
|
|
2487
2545
|
"default": "false",
|
|
2488
2546
|
"description": "Whether checkbox is checked.",
|
|
2489
|
-
"fieldName": "checked"
|
|
2547
|
+
"fieldName": "checked",
|
|
2548
|
+
"propName": "checked"
|
|
2490
2549
|
},
|
|
2491
2550
|
{
|
|
2492
2551
|
"name": "disabled",
|
|
@@ -2495,7 +2554,8 @@
|
|
|
2495
2554
|
},
|
|
2496
2555
|
"default": "false",
|
|
2497
2556
|
"description": "Prevents interaction.",
|
|
2498
|
-
"fieldName": "disabled"
|
|
2557
|
+
"fieldName": "disabled",
|
|
2558
|
+
"propName": "disabled"
|
|
2499
2559
|
},
|
|
2500
2560
|
{
|
|
2501
2561
|
"name": "required",
|
|
@@ -2504,7 +2564,8 @@
|
|
|
2504
2564
|
},
|
|
2505
2565
|
"default": "false",
|
|
2506
2566
|
"description": "Marks as required. Validates that checkbox is checked.",
|
|
2507
|
-
"fieldName": "required"
|
|
2567
|
+
"fieldName": "required",
|
|
2568
|
+
"propName": "required"
|
|
2508
2569
|
},
|
|
2509
2570
|
{
|
|
2510
2571
|
"name": "label",
|
|
@@ -2513,7 +2574,8 @@
|
|
|
2513
2574
|
},
|
|
2514
2575
|
"default": "\"\"",
|
|
2515
2576
|
"description": "Visible label text. Required for accessibility.",
|
|
2516
|
-
"fieldName": "label"
|
|
2577
|
+
"fieldName": "label",
|
|
2578
|
+
"propName": "label"
|
|
2517
2579
|
},
|
|
2518
2580
|
{
|
|
2519
2581
|
"name": "description",
|
|
@@ -2522,7 +2584,8 @@
|
|
|
2522
2584
|
},
|
|
2523
2585
|
"default": "\"\"",
|
|
2524
2586
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
2525
|
-
"fieldName": "description"
|
|
2587
|
+
"fieldName": "description",
|
|
2588
|
+
"propName": "description"
|
|
2526
2589
|
},
|
|
2527
2590
|
{
|
|
2528
2591
|
"name": "id",
|
|
@@ -2531,7 +2594,8 @@
|
|
|
2531
2594
|
},
|
|
2532
2595
|
"default": "\"\"",
|
|
2533
2596
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
2534
|
-
"fieldName": "id"
|
|
2597
|
+
"fieldName": "id",
|
|
2598
|
+
"propName": "id"
|
|
2535
2599
|
},
|
|
2536
2600
|
{
|
|
2537
2601
|
"name": "name",
|
|
@@ -2540,7 +2604,8 @@
|
|
|
2540
2604
|
},
|
|
2541
2605
|
"default": "\"\"",
|
|
2542
2606
|
"description": "Name for form submission. Use same name for grouped checkboxes.",
|
|
2543
|
-
"fieldName": "name"
|
|
2607
|
+
"fieldName": "name",
|
|
2608
|
+
"propName": "name"
|
|
2544
2609
|
},
|
|
2545
2610
|
{
|
|
2546
2611
|
"name": "value",
|
|
@@ -2549,7 +2614,8 @@
|
|
|
2549
2614
|
},
|
|
2550
2615
|
"default": "\"\"",
|
|
2551
2616
|
"description": "Value submitted when checked.",
|
|
2552
|
-
"fieldName": "value"
|
|
2617
|
+
"fieldName": "value",
|
|
2618
|
+
"propName": "value"
|
|
2553
2619
|
},
|
|
2554
2620
|
{
|
|
2555
2621
|
"name": "form",
|
|
@@ -2558,7 +2624,8 @@
|
|
|
2558
2624
|
},
|
|
2559
2625
|
"default": "null",
|
|
2560
2626
|
"description": "Form `id` to associate with when checkbox is outside form element.",
|
|
2561
|
-
"fieldName": "form"
|
|
2627
|
+
"fieldName": "form",
|
|
2628
|
+
"propName": "form"
|
|
2562
2629
|
},
|
|
2563
2630
|
{
|
|
2564
2631
|
"name": "showError",
|
|
@@ -2567,7 +2634,8 @@
|
|
|
2567
2634
|
},
|
|
2568
2635
|
"default": "false",
|
|
2569
2636
|
"description": "Shows error message when true.",
|
|
2570
|
-
"fieldName": "showError"
|
|
2637
|
+
"fieldName": "showError",
|
|
2638
|
+
"propName": "showerror"
|
|
2571
2639
|
},
|
|
2572
2640
|
{
|
|
2573
2641
|
"name": "errorMessage",
|
|
@@ -2576,7 +2644,8 @@
|
|
|
2576
2644
|
},
|
|
2577
2645
|
"default": "\"\"",
|
|
2578
2646
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
2579
|
-
"fieldName": "errorMessage"
|
|
2647
|
+
"fieldName": "errorMessage",
|
|
2648
|
+
"propName": "errormessage"
|
|
2580
2649
|
},
|
|
2581
2650
|
{
|
|
2582
2651
|
"name": "groupExist",
|
|
@@ -2585,7 +2654,8 @@
|
|
|
2585
2654
|
},
|
|
2586
2655
|
"default": "false",
|
|
2587
2656
|
"description": "Internal: Set by parent checkboxgroup. Do not set manually.",
|
|
2588
|
-
"fieldName": "groupExist"
|
|
2657
|
+
"fieldName": "groupExist",
|
|
2658
|
+
"propName": "groupexist"
|
|
2589
2659
|
},
|
|
2590
2660
|
{
|
|
2591
2661
|
"name": "tile",
|
|
@@ -2594,7 +2664,8 @@
|
|
|
2594
2664
|
},
|
|
2595
2665
|
"default": "false",
|
|
2596
2666
|
"description": "Renders as tile with larger clickable area. Apply to group for consistency.",
|
|
2597
|
-
"fieldName": "tile"
|
|
2667
|
+
"fieldName": "tile",
|
|
2668
|
+
"propName": "tile"
|
|
2598
2669
|
},
|
|
2599
2670
|
{
|
|
2600
2671
|
"name": "inverted",
|
|
@@ -2603,7 +2674,8 @@
|
|
|
2603
2674
|
},
|
|
2604
2675
|
"default": "false",
|
|
2605
2676
|
"description": "Adjusts colors for dark backgrounds.",
|
|
2606
|
-
"fieldName": "inverted"
|
|
2677
|
+
"fieldName": "inverted",
|
|
2678
|
+
"propName": "inverted"
|
|
2607
2679
|
},
|
|
2608
2680
|
{
|
|
2609
2681
|
"name": "tooltip",
|
|
@@ -2612,7 +2684,8 @@
|
|
|
2612
2684
|
},
|
|
2613
2685
|
"default": "\"\"",
|
|
2614
2686
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
2615
|
-
"fieldName": "tooltip"
|
|
2687
|
+
"fieldName": "tooltip",
|
|
2688
|
+
"propName": "tooltip"
|
|
2616
2689
|
},
|
|
2617
2690
|
{
|
|
2618
2691
|
"name": "size",
|
|
@@ -2621,7 +2694,8 @@
|
|
|
2621
2694
|
},
|
|
2622
2695
|
"default": "\"md\"",
|
|
2623
2696
|
"description": "Checkbox size: `sm` (24px) or `md` (32px, default).",
|
|
2624
|
-
"fieldName": "size"
|
|
2697
|
+
"fieldName": "size",
|
|
2698
|
+
"propName": "size"
|
|
2625
2699
|
},
|
|
2626
2700
|
{
|
|
2627
2701
|
"name": "other",
|
|
@@ -2629,7 +2703,8 @@
|
|
|
2629
2703
|
"text": "boolean"
|
|
2630
2704
|
},
|
|
2631
2705
|
"default": "false",
|
|
2632
|
-
"fieldName": "other"
|
|
2706
|
+
"fieldName": "other",
|
|
2707
|
+
"propName": "other"
|
|
2633
2708
|
},
|
|
2634
2709
|
{
|
|
2635
2710
|
"name": "showOtherError",
|
|
@@ -2637,7 +2712,8 @@
|
|
|
2637
2712
|
"text": "boolean"
|
|
2638
2713
|
},
|
|
2639
2714
|
"default": "false",
|
|
2640
|
-
"fieldName": "showOtherError"
|
|
2715
|
+
"fieldName": "showOtherError",
|
|
2716
|
+
"propName": "showothererror"
|
|
2641
2717
|
}
|
|
2642
2718
|
],
|
|
2643
2719
|
"superclass": {
|
|
@@ -3016,7 +3092,8 @@
|
|
|
3016
3092
|
},
|
|
3017
3093
|
"default": "\"\"",
|
|
3018
3094
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
3019
|
-
"fieldName": "id"
|
|
3095
|
+
"fieldName": "id",
|
|
3096
|
+
"propName": "id"
|
|
3020
3097
|
},
|
|
3021
3098
|
{
|
|
3022
3099
|
"name": "name",
|
|
@@ -3025,7 +3102,8 @@
|
|
|
3025
3102
|
},
|
|
3026
3103
|
"default": "\"\"",
|
|
3027
3104
|
"description": "Name for form submission. Set on group, not individual checkboxes.",
|
|
3028
|
-
"fieldName": "name"
|
|
3105
|
+
"fieldName": "name",
|
|
3106
|
+
"propName": "name"
|
|
3029
3107
|
},
|
|
3030
3108
|
{
|
|
3031
3109
|
"name": "required",
|
|
@@ -3034,7 +3112,8 @@
|
|
|
3034
3112
|
},
|
|
3035
3113
|
"default": "false",
|
|
3036
3114
|
"description": "Requires at least one checkbox to be checked.",
|
|
3037
|
-
"fieldName": "required"
|
|
3115
|
+
"fieldName": "required",
|
|
3116
|
+
"propName": "required"
|
|
3038
3117
|
},
|
|
3039
3118
|
{
|
|
3040
3119
|
"name": "optional",
|
|
@@ -3043,7 +3122,8 @@
|
|
|
3043
3122
|
},
|
|
3044
3123
|
"default": "false",
|
|
3045
3124
|
"description": "Shows \"Optional\" flag.",
|
|
3046
|
-
"fieldName": "optional"
|
|
3125
|
+
"fieldName": "optional",
|
|
3126
|
+
"propName": "optional"
|
|
3047
3127
|
},
|
|
3048
3128
|
{
|
|
3049
3129
|
"name": "showError",
|
|
@@ -3052,7 +3132,8 @@
|
|
|
3052
3132
|
},
|
|
3053
3133
|
"default": "false",
|
|
3054
3134
|
"description": "Shows error message when true.",
|
|
3055
|
-
"fieldName": "showError"
|
|
3135
|
+
"fieldName": "showError",
|
|
3136
|
+
"propName": "showerror"
|
|
3056
3137
|
},
|
|
3057
3138
|
{
|
|
3058
3139
|
"name": "errorMessage",
|
|
@@ -3061,7 +3142,8 @@
|
|
|
3061
3142
|
},
|
|
3062
3143
|
"default": "\"\"",
|
|
3063
3144
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
3064
|
-
"fieldName": "errorMessage"
|
|
3145
|
+
"fieldName": "errorMessage",
|
|
3146
|
+
"propName": "errormessage"
|
|
3065
3147
|
},
|
|
3066
3148
|
{
|
|
3067
3149
|
"name": "label",
|
|
@@ -3070,7 +3152,8 @@
|
|
|
3070
3152
|
},
|
|
3071
3153
|
"default": "\"\"",
|
|
3072
3154
|
"description": "Visible label text for the group.",
|
|
3073
|
-
"fieldName": "label"
|
|
3155
|
+
"fieldName": "label",
|
|
3156
|
+
"propName": "label"
|
|
3074
3157
|
},
|
|
3075
3158
|
{
|
|
3076
3159
|
"name": "description",
|
|
@@ -3079,7 +3162,8 @@
|
|
|
3079
3162
|
},
|
|
3080
3163
|
"default": "\"\"",
|
|
3081
3164
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
3082
|
-
"fieldName": "description"
|
|
3165
|
+
"fieldName": "description",
|
|
3166
|
+
"propName": "description"
|
|
3083
3167
|
},
|
|
3084
3168
|
{
|
|
3085
3169
|
"name": "tile",
|
|
@@ -3088,7 +3172,8 @@
|
|
|
3088
3172
|
},
|
|
3089
3173
|
"default": "false",
|
|
3090
3174
|
"description": "Renders all checkboxes as tiles with larger clickable area.",
|
|
3091
|
-
"fieldName": "tile"
|
|
3175
|
+
"fieldName": "tile",
|
|
3176
|
+
"propName": "tile"
|
|
3092
3177
|
},
|
|
3093
3178
|
{
|
|
3094
3179
|
"name": "tooltip",
|
|
@@ -3097,7 +3182,8 @@
|
|
|
3097
3182
|
},
|
|
3098
3183
|
"default": "\"\"",
|
|
3099
3184
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
3100
|
-
"fieldName": "tooltip"
|
|
3185
|
+
"fieldName": "tooltip",
|
|
3186
|
+
"propName": "tooltip"
|
|
3101
3187
|
},
|
|
3102
3188
|
{
|
|
3103
3189
|
"name": "inverted",
|
|
@@ -3106,7 +3192,8 @@
|
|
|
3106
3192
|
},
|
|
3107
3193
|
"default": "false",
|
|
3108
3194
|
"description": "Adjusts colors for dark backgrounds. Applied to all children.",
|
|
3109
|
-
"fieldName": "inverted"
|
|
3195
|
+
"fieldName": "inverted",
|
|
3196
|
+
"propName": "inverted"
|
|
3110
3197
|
},
|
|
3111
3198
|
{
|
|
3112
3199
|
"name": "form",
|
|
@@ -3115,7 +3202,8 @@
|
|
|
3115
3202
|
},
|
|
3116
3203
|
"default": "null",
|
|
3117
3204
|
"description": "Form `id` to associate with. Applied to all children.",
|
|
3118
|
-
"fieldName": "form"
|
|
3205
|
+
"fieldName": "form",
|
|
3206
|
+
"propName": "form"
|
|
3119
3207
|
},
|
|
3120
3208
|
{
|
|
3121
3209
|
"name": "size",
|
|
@@ -3124,7 +3212,8 @@
|
|
|
3124
3212
|
},
|
|
3125
3213
|
"default": "\"md\"",
|
|
3126
3214
|
"description": "Checkbox size for all children: `sm` (24px) or `md` (32px, default).",
|
|
3127
|
-
"fieldName": "size"
|
|
3215
|
+
"fieldName": "size",
|
|
3216
|
+
"propName": "size"
|
|
3128
3217
|
}
|
|
3129
3218
|
],
|
|
3130
3219
|
"superclass": {
|
|
@@ -3724,7 +3813,8 @@
|
|
|
3724
3813
|
"text": "string"
|
|
3725
3814
|
},
|
|
3726
3815
|
"default": "\"\"",
|
|
3727
|
-
"fieldName": "id"
|
|
3816
|
+
"fieldName": "id",
|
|
3817
|
+
"propName": "id"
|
|
3728
3818
|
},
|
|
3729
3819
|
{
|
|
3730
3820
|
"name": "name",
|
|
@@ -3732,7 +3822,8 @@
|
|
|
3732
3822
|
"text": "string"
|
|
3733
3823
|
},
|
|
3734
3824
|
"default": "\"\"",
|
|
3735
|
-
"fieldName": "name"
|
|
3825
|
+
"fieldName": "name",
|
|
3826
|
+
"propName": "name"
|
|
3736
3827
|
},
|
|
3737
3828
|
{
|
|
3738
3829
|
"name": "label",
|
|
@@ -3740,7 +3831,8 @@
|
|
|
3740
3831
|
"text": "string"
|
|
3741
3832
|
},
|
|
3742
3833
|
"default": "\"\"",
|
|
3743
|
-
"fieldName": "label"
|
|
3834
|
+
"fieldName": "label",
|
|
3835
|
+
"propName": "label"
|
|
3744
3836
|
},
|
|
3745
3837
|
{
|
|
3746
3838
|
"name": "description",
|
|
@@ -3748,7 +3840,8 @@
|
|
|
3748
3840
|
"text": "string"
|
|
3749
3841
|
},
|
|
3750
3842
|
"default": "\"\"",
|
|
3751
|
-
"fieldName": "description"
|
|
3843
|
+
"fieldName": "description",
|
|
3844
|
+
"propName": "description"
|
|
3752
3845
|
},
|
|
3753
3846
|
{
|
|
3754
3847
|
"name": "value",
|
|
@@ -3756,7 +3849,8 @@
|
|
|
3756
3849
|
"text": "string"
|
|
3757
3850
|
},
|
|
3758
3851
|
"default": "\"\"",
|
|
3759
|
-
"fieldName": "value"
|
|
3852
|
+
"fieldName": "value",
|
|
3853
|
+
"propName": "value"
|
|
3760
3854
|
},
|
|
3761
3855
|
{
|
|
3762
3856
|
"name": "disabled",
|
|
@@ -3764,7 +3858,8 @@
|
|
|
3764
3858
|
"text": "boolean"
|
|
3765
3859
|
},
|
|
3766
3860
|
"default": "false",
|
|
3767
|
-
"fieldName": "disabled"
|
|
3861
|
+
"fieldName": "disabled",
|
|
3862
|
+
"propName": "disabled"
|
|
3768
3863
|
},
|
|
3769
3864
|
{
|
|
3770
3865
|
"name": "required",
|
|
@@ -3772,7 +3867,8 @@
|
|
|
3772
3867
|
"text": "boolean"
|
|
3773
3868
|
},
|
|
3774
3869
|
"default": "false",
|
|
3775
|
-
"fieldName": "required"
|
|
3870
|
+
"fieldName": "required",
|
|
3871
|
+
"propName": "required"
|
|
3776
3872
|
},
|
|
3777
3873
|
{
|
|
3778
3874
|
"name": "optional",
|
|
@@ -3780,7 +3876,8 @@
|
|
|
3780
3876
|
"text": "boolean"
|
|
3781
3877
|
},
|
|
3782
3878
|
"default": "false",
|
|
3783
|
-
"fieldName": "optional"
|
|
3879
|
+
"fieldName": "optional",
|
|
3880
|
+
"propName": "optional"
|
|
3784
3881
|
},
|
|
3785
3882
|
{
|
|
3786
3883
|
"name": "tooltip",
|
|
@@ -3788,7 +3885,8 @@
|
|
|
3788
3885
|
"text": "string"
|
|
3789
3886
|
},
|
|
3790
3887
|
"default": "\"\"",
|
|
3791
|
-
"fieldName": "tooltip"
|
|
3888
|
+
"fieldName": "tooltip",
|
|
3889
|
+
"propName": "tooltip"
|
|
3792
3890
|
},
|
|
3793
3891
|
{
|
|
3794
3892
|
"name": "form",
|
|
@@ -3796,7 +3894,8 @@
|
|
|
3796
3894
|
"text": "string | null"
|
|
3797
3895
|
},
|
|
3798
3896
|
"default": "null",
|
|
3799
|
-
"fieldName": "form"
|
|
3897
|
+
"fieldName": "form",
|
|
3898
|
+
"propName": "form"
|
|
3800
3899
|
},
|
|
3801
3900
|
{
|
|
3802
3901
|
"name": "width",
|
|
@@ -3804,7 +3903,8 @@
|
|
|
3804
3903
|
"text": "\"md\" | \"lg\" | \"full\""
|
|
3805
3904
|
},
|
|
3806
3905
|
"default": "\"full\"",
|
|
3807
|
-
"fieldName": "width"
|
|
3906
|
+
"fieldName": "width",
|
|
3907
|
+
"propName": "width"
|
|
3808
3908
|
},
|
|
3809
3909
|
{
|
|
3810
3910
|
"name": "inverted",
|
|
@@ -3812,7 +3912,8 @@
|
|
|
3812
3912
|
"text": "boolean"
|
|
3813
3913
|
},
|
|
3814
3914
|
"default": "false",
|
|
3815
|
-
"fieldName": "inverted"
|
|
3915
|
+
"fieldName": "inverted",
|
|
3916
|
+
"propName": "inverted"
|
|
3816
3917
|
},
|
|
3817
3918
|
{
|
|
3818
3919
|
"name": "showError",
|
|
@@ -3820,7 +3921,8 @@
|
|
|
3820
3921
|
"text": "boolean"
|
|
3821
3922
|
},
|
|
3822
3923
|
"default": "false",
|
|
3823
|
-
"fieldName": "showError"
|
|
3924
|
+
"fieldName": "showError",
|
|
3925
|
+
"propName": "showerror"
|
|
3824
3926
|
},
|
|
3825
3927
|
{
|
|
3826
3928
|
"name": "errorMessage",
|
|
@@ -3828,7 +3930,8 @@
|
|
|
3828
3930
|
"text": "string"
|
|
3829
3931
|
},
|
|
3830
3932
|
"default": "\"\"",
|
|
3831
|
-
"fieldName": "errorMessage"
|
|
3933
|
+
"fieldName": "errorMessage",
|
|
3934
|
+
"propName": "errormessage"
|
|
3832
3935
|
}
|
|
3833
3936
|
],
|
|
3834
3937
|
"superclass": {
|
|
@@ -4395,7 +4498,8 @@
|
|
|
4395
4498
|
},
|
|
4396
4499
|
"default": "\"\"",
|
|
4397
4500
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
4398
|
-
"fieldName": "id"
|
|
4501
|
+
"fieldName": "id",
|
|
4502
|
+
"propName": "id"
|
|
4399
4503
|
},
|
|
4400
4504
|
{
|
|
4401
4505
|
"name": "name",
|
|
@@ -4404,7 +4508,8 @@
|
|
|
4404
4508
|
},
|
|
4405
4509
|
"default": "\"\"",
|
|
4406
4510
|
"description": "Name for form submission.",
|
|
4407
|
-
"fieldName": "name"
|
|
4511
|
+
"fieldName": "name",
|
|
4512
|
+
"propName": "name"
|
|
4408
4513
|
},
|
|
4409
4514
|
{
|
|
4410
4515
|
"name": "width",
|
|
@@ -4413,7 +4518,8 @@
|
|
|
4413
4518
|
},
|
|
4414
4519
|
"default": "\"md\"",
|
|
4415
4520
|
"description": "Input width: `md` (200px), `lg` (384px), `full` (100%).",
|
|
4416
|
-
"fieldName": "width"
|
|
4521
|
+
"fieldName": "width",
|
|
4522
|
+
"propName": "width"
|
|
4417
4523
|
},
|
|
4418
4524
|
{
|
|
4419
4525
|
"name": "hideTodayButton",
|
|
@@ -4422,7 +4528,8 @@
|
|
|
4422
4528
|
},
|
|
4423
4529
|
"default": "false",
|
|
4424
4530
|
"description": "Hide the \"Today\" button in calendar popup.",
|
|
4425
|
-
"fieldName": "hideTodayButton"
|
|
4531
|
+
"fieldName": "hideTodayButton",
|
|
4532
|
+
"propName": "hidetodaybutton"
|
|
4426
4533
|
},
|
|
4427
4534
|
{
|
|
4428
4535
|
"name": "hideClearButton",
|
|
@@ -4431,7 +4538,8 @@
|
|
|
4431
4538
|
},
|
|
4432
4539
|
"default": "false",
|
|
4433
4540
|
"description": "Hide the \"Clear\" button in calendar popup.",
|
|
4434
|
-
"fieldName": "hideClearButton"
|
|
4541
|
+
"fieldName": "hideClearButton",
|
|
4542
|
+
"propName": "hideclearbutton"
|
|
4435
4543
|
},
|
|
4436
4544
|
{
|
|
4437
4545
|
"name": "disabled",
|
|
@@ -4440,7 +4548,8 @@
|
|
|
4440
4548
|
},
|
|
4441
4549
|
"default": "false",
|
|
4442
4550
|
"description": "Disable interaction.",
|
|
4443
|
-
"fieldName": "disabled"
|
|
4551
|
+
"fieldName": "disabled",
|
|
4552
|
+
"propName": "disabled"
|
|
4444
4553
|
},
|
|
4445
4554
|
{
|
|
4446
4555
|
"name": "required",
|
|
@@ -4449,7 +4558,8 @@
|
|
|
4449
4558
|
},
|
|
4450
4559
|
"default": "false",
|
|
4451
4560
|
"description": "Mark as required. Shows \"Required\" flag and validates on blur.",
|
|
4452
|
-
"fieldName": "required"
|
|
4561
|
+
"fieldName": "required",
|
|
4562
|
+
"propName": "required"
|
|
4453
4563
|
},
|
|
4454
4564
|
{
|
|
4455
4565
|
"name": "optional",
|
|
@@ -4458,7 +4568,8 @@
|
|
|
4458
4568
|
},
|
|
4459
4569
|
"default": "false",
|
|
4460
4570
|
"description": "Show \"Optional\" flag. Use when most fields are required.",
|
|
4461
|
-
"fieldName": "optional"
|
|
4571
|
+
"fieldName": "optional",
|
|
4572
|
+
"propName": "optional"
|
|
4462
4573
|
},
|
|
4463
4574
|
{
|
|
4464
4575
|
"name": "showError",
|
|
@@ -4467,7 +4578,8 @@
|
|
|
4467
4578
|
},
|
|
4468
4579
|
"default": "false",
|
|
4469
4580
|
"description": "Show error state.",
|
|
4470
|
-
"fieldName": "showError"
|
|
4581
|
+
"fieldName": "showError",
|
|
4582
|
+
"propName": "showerror"
|
|
4471
4583
|
},
|
|
4472
4584
|
{
|
|
4473
4585
|
"name": "errorMessage",
|
|
@@ -4476,7 +4588,8 @@
|
|
|
4476
4588
|
},
|
|
4477
4589
|
"default": "\"\"",
|
|
4478
4590
|
"description": "Error message text.",
|
|
4479
|
-
"fieldName": "errorMessage"
|
|
4591
|
+
"fieldName": "errorMessage",
|
|
4592
|
+
"propName": "errormessage"
|
|
4480
4593
|
},
|
|
4481
4594
|
{
|
|
4482
4595
|
"name": "form",
|
|
@@ -4485,7 +4598,8 @@
|
|
|
4485
4598
|
},
|
|
4486
4599
|
"default": "null",
|
|
4487
4600
|
"description": "Form `id` to associate with when input is outside form.",
|
|
4488
|
-
"fieldName": "form"
|
|
4601
|
+
"fieldName": "form",
|
|
4602
|
+
"propName": "form"
|
|
4489
4603
|
},
|
|
4490
4604
|
{
|
|
4491
4605
|
"name": "tooltip",
|
|
@@ -4494,7 +4608,8 @@
|
|
|
4494
4608
|
},
|
|
4495
4609
|
"default": "\"\"",
|
|
4496
4610
|
"description": "Tooltip text on info icon hover.",
|
|
4497
|
-
"fieldName": "tooltip"
|
|
4611
|
+
"fieldName": "tooltip",
|
|
4612
|
+
"propName": "tooltip"
|
|
4498
4613
|
},
|
|
4499
4614
|
{
|
|
4500
4615
|
"name": "type",
|
|
@@ -4503,7 +4618,8 @@
|
|
|
4503
4618
|
},
|
|
4504
4619
|
"default": "\"date\"",
|
|
4505
4620
|
"description": "Input type. Currently only supports `date`.",
|
|
4506
|
-
"fieldName": "type"
|
|
4621
|
+
"fieldName": "type",
|
|
4622
|
+
"propName": "type"
|
|
4507
4623
|
},
|
|
4508
4624
|
{
|
|
4509
4625
|
"name": "label",
|
|
@@ -4512,7 +4628,8 @@
|
|
|
4512
4628
|
},
|
|
4513
4629
|
"default": "\"\"",
|
|
4514
4630
|
"description": "Label text. Required for accessibility.",
|
|
4515
|
-
"fieldName": "label"
|
|
4631
|
+
"fieldName": "label",
|
|
4632
|
+
"propName": "label"
|
|
4516
4633
|
},
|
|
4517
4634
|
{
|
|
4518
4635
|
"name": "description",
|
|
@@ -4521,7 +4638,8 @@
|
|
|
4521
4638
|
},
|
|
4522
4639
|
"default": "\"\"",
|
|
4523
4640
|
"description": "Helper text below label.",
|
|
4524
|
-
"fieldName": "description"
|
|
4641
|
+
"fieldName": "description",
|
|
4642
|
+
"propName": "description"
|
|
4525
4643
|
},
|
|
4526
4644
|
{
|
|
4527
4645
|
"name": "startDate",
|
|
@@ -4530,7 +4648,8 @@
|
|
|
4530
4648
|
},
|
|
4531
4649
|
"default": "\"\"",
|
|
4532
4650
|
"description": "Initial date when calendar opens (YYYY-MM-DD).",
|
|
4533
|
-
"fieldName": "startDate"
|
|
4651
|
+
"fieldName": "startDate",
|
|
4652
|
+
"propName": "startdate"
|
|
4534
4653
|
},
|
|
4535
4654
|
{
|
|
4536
4655
|
"name": "inverted",
|
|
@@ -4539,7 +4658,8 @@
|
|
|
4539
4658
|
},
|
|
4540
4659
|
"default": "false",
|
|
4541
4660
|
"description": "Dark background mode.",
|
|
4542
|
-
"fieldName": "inverted"
|
|
4661
|
+
"fieldName": "inverted",
|
|
4662
|
+
"propName": "inverted"
|
|
4543
4663
|
},
|
|
4544
4664
|
{
|
|
4545
4665
|
"name": "value",
|
|
@@ -4548,7 +4668,8 @@
|
|
|
4548
4668
|
},
|
|
4549
4669
|
"default": "undefined",
|
|
4550
4670
|
"description": "Selected date. Accepts Date object or ISO string (YYYY-MM-DD).",
|
|
4551
|
-
"fieldName": "value"
|
|
4671
|
+
"fieldName": "value",
|
|
4672
|
+
"propName": "value"
|
|
4552
4673
|
}
|
|
4553
4674
|
],
|
|
4554
4675
|
"superclass": {
|
|
@@ -4637,7 +4758,8 @@
|
|
|
4637
4758
|
},
|
|
4638
4759
|
"default": "false",
|
|
4639
4760
|
"description": "Adjusts colors for dark backgrounds.",
|
|
4640
|
-
"fieldName": "inverted"
|
|
4761
|
+
"fieldName": "inverted",
|
|
4762
|
+
"propName": "inverted"
|
|
4641
4763
|
}
|
|
4642
4764
|
],
|
|
4643
4765
|
"superclass": {
|
|
@@ -4999,7 +5121,8 @@
|
|
|
4999
5121
|
"text": "string"
|
|
5000
5122
|
},
|
|
5001
5123
|
"default": "\"\"",
|
|
5002
|
-
"fieldName": "for"
|
|
5124
|
+
"fieldName": "for",
|
|
5125
|
+
"propName": "for"
|
|
5003
5126
|
},
|
|
5004
5127
|
{
|
|
5005
5128
|
"name": "showDropdown",
|
|
@@ -5007,7 +5130,8 @@
|
|
|
5007
5130
|
"text": "boolean"
|
|
5008
5131
|
},
|
|
5009
5132
|
"default": "false",
|
|
5010
|
-
"fieldName": "showDropdown"
|
|
5133
|
+
"fieldName": "showDropdown",
|
|
5134
|
+
"propName": "showdropdown"
|
|
5011
5135
|
},
|
|
5012
5136
|
{
|
|
5013
5137
|
"name": "position",
|
|
@@ -5016,7 +5140,8 @@
|
|
|
5016
5140
|
},
|
|
5017
5141
|
"default": "null",
|
|
5018
5142
|
"description": "Preferred position relative to trigger.",
|
|
5019
|
-
"fieldName": "position"
|
|
5143
|
+
"fieldName": "position",
|
|
5144
|
+
"propName": "position"
|
|
5020
5145
|
}
|
|
5021
5146
|
],
|
|
5022
5147
|
"superclass": {
|
|
@@ -5148,7 +5273,8 @@
|
|
|
5148
5273
|
"text": "string"
|
|
5149
5274
|
},
|
|
5150
5275
|
"default": "\"\"",
|
|
5151
|
-
"fieldName": "label"
|
|
5276
|
+
"fieldName": "label",
|
|
5277
|
+
"propName": "label"
|
|
5152
5278
|
},
|
|
5153
5279
|
{
|
|
5154
5280
|
"name": "href",
|
|
@@ -5156,7 +5282,8 @@
|
|
|
5156
5282
|
"text": "string"
|
|
5157
5283
|
},
|
|
5158
5284
|
"default": "\"\"",
|
|
5159
|
-
"fieldName": "href"
|
|
5285
|
+
"fieldName": "href",
|
|
5286
|
+
"propName": "href"
|
|
5160
5287
|
},
|
|
5161
5288
|
{
|
|
5162
5289
|
"name": "disabled",
|
|
@@ -5164,7 +5291,8 @@
|
|
|
5164
5291
|
"text": "boolean"
|
|
5165
5292
|
},
|
|
5166
5293
|
"default": "false",
|
|
5167
|
-
"fieldName": "disabled"
|
|
5294
|
+
"fieldName": "disabled",
|
|
5295
|
+
"propName": "disabled"
|
|
5168
5296
|
},
|
|
5169
5297
|
{
|
|
5170
5298
|
"name": "target",
|
|
@@ -5172,7 +5300,8 @@
|
|
|
5172
5300
|
"text": "string"
|
|
5173
5301
|
},
|
|
5174
5302
|
"default": "\"_self\"",
|
|
5175
|
-
"fieldName": "target"
|
|
5303
|
+
"fieldName": "target",
|
|
5304
|
+
"propName": "target"
|
|
5176
5305
|
},
|
|
5177
5306
|
{
|
|
5178
5307
|
"name": "prefixIcon",
|
|
@@ -5180,7 +5309,8 @@
|
|
|
5180
5309
|
"text": "string"
|
|
5181
5310
|
},
|
|
5182
5311
|
"default": "\"\"",
|
|
5183
|
-
"fieldName": "prefixIcon"
|
|
5312
|
+
"fieldName": "prefixIcon",
|
|
5313
|
+
"propName": "prefixicon"
|
|
5184
5314
|
},
|
|
5185
5315
|
{
|
|
5186
5316
|
"name": "divider",
|
|
@@ -5188,7 +5318,8 @@
|
|
|
5188
5318
|
"text": "string"
|
|
5189
5319
|
},
|
|
5190
5320
|
"default": "\"\"",
|
|
5191
|
-
"fieldName": "divider"
|
|
5321
|
+
"fieldName": "divider",
|
|
5322
|
+
"propName": "divider"
|
|
5192
5323
|
}
|
|
5193
5324
|
],
|
|
5194
5325
|
"superclass": {
|
|
@@ -5301,7 +5432,8 @@
|
|
|
5301
5432
|
},
|
|
5302
5433
|
"default": "false",
|
|
5303
5434
|
"description": "Whether to display the error message.",
|
|
5304
|
-
"fieldName": "showError"
|
|
5435
|
+
"fieldName": "showError",
|
|
5436
|
+
"propName": "showerror"
|
|
5305
5437
|
},
|
|
5306
5438
|
{
|
|
5307
5439
|
"name": "errorMessage",
|
|
@@ -5310,7 +5442,8 @@
|
|
|
5310
5442
|
},
|
|
5311
5443
|
"default": "\"\"",
|
|
5312
5444
|
"description": "Error text to display. Falls back to native validation message if available.",
|
|
5313
|
-
"fieldName": "errorMessage"
|
|
5445
|
+
"fieldName": "errorMessage",
|
|
5446
|
+
"propName": "errormessage"
|
|
5314
5447
|
},
|
|
5315
5448
|
{
|
|
5316
5449
|
"name": "showDivider",
|
|
@@ -5319,7 +5452,8 @@
|
|
|
5319
5452
|
},
|
|
5320
5453
|
"default": "false",
|
|
5321
5454
|
"description": "Shows a divider line above the error message.",
|
|
5322
|
-
"fieldName": "showDivider"
|
|
5455
|
+
"fieldName": "showDivider",
|
|
5456
|
+
"propName": "showdivider"
|
|
5323
5457
|
}
|
|
5324
5458
|
],
|
|
5325
5459
|
"superclass": {
|
|
@@ -5818,7 +5952,8 @@
|
|
|
5818
5952
|
},
|
|
5819
5953
|
"default": "\"\"",
|
|
5820
5954
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
5821
|
-
"fieldName": "id"
|
|
5955
|
+
"fieldName": "id",
|
|
5956
|
+
"propName": "id"
|
|
5822
5957
|
},
|
|
5823
5958
|
{
|
|
5824
5959
|
"name": "name",
|
|
@@ -5827,7 +5962,8 @@
|
|
|
5827
5962
|
},
|
|
5828
5963
|
"default": "\"\"",
|
|
5829
5964
|
"description": "Name for form submission.",
|
|
5830
|
-
"fieldName": "name"
|
|
5965
|
+
"fieldName": "name",
|
|
5966
|
+
"propName": "name"
|
|
5831
5967
|
},
|
|
5832
5968
|
{
|
|
5833
5969
|
"name": "label",
|
|
@@ -5836,7 +5972,8 @@
|
|
|
5836
5972
|
},
|
|
5837
5973
|
"default": "\"\"",
|
|
5838
5974
|
"description": "Visible label text.",
|
|
5839
|
-
"fieldName": "label"
|
|
5975
|
+
"fieldName": "label",
|
|
5976
|
+
"propName": "label"
|
|
5840
5977
|
},
|
|
5841
5978
|
{
|
|
5842
5979
|
"name": "description",
|
|
@@ -5845,7 +5982,8 @@
|
|
|
5845
5982
|
},
|
|
5846
5983
|
"default": "\"\"",
|
|
5847
5984
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
5848
|
-
"fieldName": "description"
|
|
5985
|
+
"fieldName": "description",
|
|
5986
|
+
"propName": "description"
|
|
5849
5987
|
},
|
|
5850
5988
|
{
|
|
5851
5989
|
"name": "multiple",
|
|
@@ -5854,7 +5992,8 @@
|
|
|
5854
5992
|
},
|
|
5855
5993
|
"default": "false",
|
|
5856
5994
|
"description": "Allows selecting multiple files.",
|
|
5857
|
-
"fieldName": "multiple"
|
|
5995
|
+
"fieldName": "multiple",
|
|
5996
|
+
"propName": "multiple"
|
|
5858
5997
|
},
|
|
5859
5998
|
{
|
|
5860
5999
|
"name": "form",
|
|
@@ -5863,7 +6002,8 @@
|
|
|
5863
6002
|
},
|
|
5864
6003
|
"default": "null",
|
|
5865
6004
|
"description": "Form `id` to associate with.",
|
|
5866
|
-
"fieldName": "form"
|
|
6005
|
+
"fieldName": "form",
|
|
6006
|
+
"propName": "form"
|
|
5867
6007
|
},
|
|
5868
6008
|
{
|
|
5869
6009
|
"name": "tooltip",
|
|
@@ -5872,7 +6012,8 @@
|
|
|
5872
6012
|
},
|
|
5873
6013
|
"default": "\"\"",
|
|
5874
6014
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
5875
|
-
"fieldName": "tooltip"
|
|
6015
|
+
"fieldName": "tooltip",
|
|
6016
|
+
"propName": "tooltip"
|
|
5876
6017
|
},
|
|
5877
6018
|
{
|
|
5878
6019
|
"name": "accept",
|
|
@@ -5881,7 +6022,8 @@
|
|
|
5881
6022
|
},
|
|
5882
6023
|
"default": "\"\"",
|
|
5883
6024
|
"description": "Accepted file types. Use MIME types (`image/*`) or extensions (`.pdf`). Validated via magic bytes.",
|
|
5884
|
-
"fieldName": "accept"
|
|
6025
|
+
"fieldName": "accept",
|
|
6026
|
+
"propName": "accept"
|
|
5885
6027
|
},
|
|
5886
6028
|
{
|
|
5887
6029
|
"name": "disabled",
|
|
@@ -5890,7 +6032,8 @@
|
|
|
5890
6032
|
},
|
|
5891
6033
|
"default": "false",
|
|
5892
6034
|
"description": "Prevents interaction.",
|
|
5893
|
-
"fieldName": "disabled"
|
|
6035
|
+
"fieldName": "disabled",
|
|
6036
|
+
"propName": "disabled"
|
|
5894
6037
|
},
|
|
5895
6038
|
{
|
|
5896
6039
|
"name": "required",
|
|
@@ -5899,7 +6042,8 @@
|
|
|
5899
6042
|
},
|
|
5900
6043
|
"default": "false",
|
|
5901
6044
|
"description": "Requires at least one file to be uploaded.",
|
|
5902
|
-
"fieldName": "required"
|
|
6045
|
+
"fieldName": "required",
|
|
6046
|
+
"propName": "required"
|
|
5903
6047
|
},
|
|
5904
6048
|
{
|
|
5905
6049
|
"name": "optional",
|
|
@@ -5908,7 +6052,8 @@
|
|
|
5908
6052
|
},
|
|
5909
6053
|
"default": "false",
|
|
5910
6054
|
"description": "Shows \"Optional\" flag.",
|
|
5911
|
-
"fieldName": "optional"
|
|
6055
|
+
"fieldName": "optional",
|
|
6056
|
+
"propName": "optional"
|
|
5912
6057
|
},
|
|
5913
6058
|
{
|
|
5914
6059
|
"name": "showError",
|
|
@@ -5917,7 +6062,8 @@
|
|
|
5917
6062
|
},
|
|
5918
6063
|
"default": "false",
|
|
5919
6064
|
"description": "Shows error message when true.",
|
|
5920
|
-
"fieldName": "showError"
|
|
6065
|
+
"fieldName": "showError",
|
|
6066
|
+
"propName": "showerror"
|
|
5921
6067
|
},
|
|
5922
6068
|
{
|
|
5923
6069
|
"name": "errorMessage",
|
|
@@ -5926,7 +6072,8 @@
|
|
|
5926
6072
|
},
|
|
5927
6073
|
"default": "\"\"",
|
|
5928
6074
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
5929
|
-
"fieldName": "errorMessage"
|
|
6075
|
+
"fieldName": "errorMessage",
|
|
6076
|
+
"propName": "errormessage"
|
|
5930
6077
|
},
|
|
5931
6078
|
{
|
|
5932
6079
|
"name": "dropzone",
|
|
@@ -5935,7 +6082,8 @@
|
|
|
5935
6082
|
},
|
|
5936
6083
|
"default": "false",
|
|
5937
6084
|
"description": "Enables drag-and-drop zone UI.",
|
|
5938
|
-
"fieldName": "dropzone"
|
|
6085
|
+
"fieldName": "dropzone",
|
|
6086
|
+
"propName": "dropzone"
|
|
5939
6087
|
},
|
|
5940
6088
|
{
|
|
5941
6089
|
"name": "width",
|
|
@@ -5944,7 +6092,8 @@
|
|
|
5944
6092
|
},
|
|
5945
6093
|
"default": "\"full\"",
|
|
5946
6094
|
"description": "Component width: `lg` (384px) or `full` (100%, default).",
|
|
5947
|
-
"fieldName": "width"
|
|
6095
|
+
"fieldName": "width",
|
|
6096
|
+
"propName": "width"
|
|
5948
6097
|
},
|
|
5949
6098
|
{
|
|
5950
6099
|
"name": "inverted",
|
|
@@ -5953,7 +6102,8 @@
|
|
|
5953
6102
|
},
|
|
5954
6103
|
"default": "false",
|
|
5955
6104
|
"description": "Adjusts colors for dark backgrounds.",
|
|
5956
|
-
"fieldName": "inverted"
|
|
6105
|
+
"fieldName": "inverted",
|
|
6106
|
+
"propName": "inverted"
|
|
5957
6107
|
}
|
|
5958
6108
|
],
|
|
5959
6109
|
"superclass": {
|
|
@@ -6078,7 +6228,8 @@
|
|
|
6078
6228
|
},
|
|
6079
6229
|
"default": "\"\"",
|
|
6080
6230
|
"description": "Name of the file being displayed.",
|
|
6081
|
-
"fieldName": "filename"
|
|
6231
|
+
"fieldName": "filename",
|
|
6232
|
+
"propName": "filename"
|
|
6082
6233
|
},
|
|
6083
6234
|
{
|
|
6084
6235
|
"name": "status",
|
|
@@ -6087,7 +6238,8 @@
|
|
|
6087
6238
|
},
|
|
6088
6239
|
"default": "\"pending\"",
|
|
6089
6240
|
"description": "Upload status: `pending` (queued), `processing` (uploading), `done` (complete), `error` (failed).",
|
|
6090
|
-
"fieldName": "status"
|
|
6241
|
+
"fieldName": "status",
|
|
6242
|
+
"propName": "status"
|
|
6091
6243
|
},
|
|
6092
6244
|
{
|
|
6093
6245
|
"name": "progress",
|
|
@@ -6096,7 +6248,8 @@
|
|
|
6096
6248
|
},
|
|
6097
6249
|
"default": "0",
|
|
6098
6250
|
"description": "Upload progress percentage (0-100). Only shown when status is `processing`.",
|
|
6099
|
-
"fieldName": "progress"
|
|
6251
|
+
"fieldName": "progress",
|
|
6252
|
+
"propName": "progress"
|
|
6100
6253
|
},
|
|
6101
6254
|
{
|
|
6102
6255
|
"name": "errorMessage",
|
|
@@ -6105,7 +6258,8 @@
|
|
|
6105
6258
|
},
|
|
6106
6259
|
"default": "\"\"",
|
|
6107
6260
|
"description": "Error message displayed when status is `error`.",
|
|
6108
|
-
"fieldName": "errorMessage"
|
|
6261
|
+
"fieldName": "errorMessage",
|
|
6262
|
+
"propName": "errormessage"
|
|
6109
6263
|
}
|
|
6110
6264
|
],
|
|
6111
6265
|
"superclass": {
|
|
@@ -6249,7 +6403,8 @@
|
|
|
6249
6403
|
},
|
|
6250
6404
|
"default": "\"\"",
|
|
6251
6405
|
"description": "Agency name displayed as the footer heading.",
|
|
6252
|
-
"fieldName": "agencyName"
|
|
6406
|
+
"fieldName": "agencyName",
|
|
6407
|
+
"propName": "agencyname"
|
|
6253
6408
|
},
|
|
6254
6409
|
{
|
|
6255
6410
|
"name": "homepageLink",
|
|
@@ -6258,7 +6413,8 @@
|
|
|
6258
6413
|
},
|
|
6259
6414
|
"default": "\"\"",
|
|
6260
6415
|
"description": "URL for the agency name link. If empty, name is not clickable.",
|
|
6261
|
-
"fieldName": "homepageLink"
|
|
6416
|
+
"fieldName": "homepageLink",
|
|
6417
|
+
"propName": "homepagelink"
|
|
6262
6418
|
}
|
|
6263
6419
|
],
|
|
6264
6420
|
"superclass": {
|
|
@@ -6423,7 +6579,8 @@
|
|
|
6423
6579
|
},
|
|
6424
6580
|
"default": "\"\"",
|
|
6425
6581
|
"description": "Application name displayed prominently.",
|
|
6426
|
-
"fieldName": "appName"
|
|
6582
|
+
"fieldName": "appName",
|
|
6583
|
+
"propName": "appname"
|
|
6427
6584
|
},
|
|
6428
6585
|
{
|
|
6429
6586
|
"name": "agencyName",
|
|
@@ -6432,7 +6589,8 @@
|
|
|
6432
6589
|
},
|
|
6433
6590
|
"default": "\"\"",
|
|
6434
6591
|
"description": "Agency name displayed below app name (or as main title if no appName).",
|
|
6435
|
-
"fieldName": "agencyName"
|
|
6592
|
+
"fieldName": "agencyName",
|
|
6593
|
+
"propName": "agencyname"
|
|
6436
6594
|
},
|
|
6437
6595
|
{
|
|
6438
6596
|
"name": "homepageLink",
|
|
@@ -6441,7 +6599,8 @@
|
|
|
6441
6599
|
},
|
|
6442
6600
|
"default": "\"\"",
|
|
6443
6601
|
"description": "URL for the header title link. If empty, title is not clickable.",
|
|
6444
|
-
"fieldName": "homepageLink"
|
|
6602
|
+
"fieldName": "homepageLink",
|
|
6603
|
+
"propName": "homepagelink"
|
|
6445
6604
|
}
|
|
6446
6605
|
],
|
|
6447
6606
|
"superclass": {
|
|
@@ -6577,7 +6736,8 @@
|
|
|
6577
6736
|
},
|
|
6578
6737
|
"default": "\"\"",
|
|
6579
6738
|
"description": "Icon name from Material Symbols library. Required.",
|
|
6580
|
-
"fieldName": "name"
|
|
6739
|
+
"fieldName": "name",
|
|
6740
|
+
"propName": "name"
|
|
6581
6741
|
},
|
|
6582
6742
|
{
|
|
6583
6743
|
"name": "ariaLabel",
|
|
@@ -6586,7 +6746,8 @@
|
|
|
6586
6746
|
},
|
|
6587
6747
|
"default": "\"\"",
|
|
6588
6748
|
"description": "Accessible label. When set, removes `aria-hidden` and adds `aria-label` to the SVG.",
|
|
6589
|
-
"fieldName": "ariaLabel"
|
|
6749
|
+
"fieldName": "ariaLabel",
|
|
6750
|
+
"propName": "arialabel"
|
|
6590
6751
|
},
|
|
6591
6752
|
{
|
|
6592
6753
|
"name": "rotate",
|
|
@@ -6595,7 +6756,8 @@
|
|
|
6595
6756
|
},
|
|
6596
6757
|
"default": "\"0\"",
|
|
6597
6758
|
"description": "Rotation in degrees. Applied via CSS `rotate`.",
|
|
6598
|
-
"fieldName": "rotate"
|
|
6759
|
+
"fieldName": "rotate",
|
|
6760
|
+
"propName": "rotate"
|
|
6599
6761
|
},
|
|
6600
6762
|
{
|
|
6601
6763
|
"name": "flip",
|
|
@@ -6604,7 +6766,8 @@
|
|
|
6604
6766
|
},
|
|
6605
6767
|
"default": "\"\"",
|
|
6606
6768
|
"description": "Flip direction: `horizontal`, `vertical`, or empty for none.",
|
|
6607
|
-
"fieldName": "flip"
|
|
6769
|
+
"fieldName": "flip",
|
|
6770
|
+
"propName": "flip"
|
|
6608
6771
|
},
|
|
6609
6772
|
{
|
|
6610
6773
|
"name": "color",
|
|
@@ -6613,7 +6776,8 @@
|
|
|
6613
6776
|
},
|
|
6614
6777
|
"default": "\"\"",
|
|
6615
6778
|
"description": "Icon color. Accepts any CSS color value. Defaults to `currentcolor`.",
|
|
6616
|
-
"fieldName": "color"
|
|
6779
|
+
"fieldName": "color",
|
|
6780
|
+
"propName": "color"
|
|
6617
6781
|
},
|
|
6618
6782
|
{
|
|
6619
6783
|
"name": "size",
|
|
@@ -6622,7 +6786,8 @@
|
|
|
6622
6786
|
},
|
|
6623
6787
|
"default": "\"md\"",
|
|
6624
6788
|
"description": "Icon size. Semantic sizes: `xs`-`5xl`. Pixel sizes: `12`-`50`.",
|
|
6625
|
-
"fieldName": "size"
|
|
6789
|
+
"fieldName": "size",
|
|
6790
|
+
"propName": "size"
|
|
6626
6791
|
}
|
|
6627
6792
|
],
|
|
6628
6793
|
"superclass": {
|
|
@@ -6772,7 +6937,8 @@
|
|
|
6772
6937
|
},
|
|
6773
6938
|
"default": "\"\"",
|
|
6774
6939
|
"description": "ID of the form element this label is associated with.",
|
|
6775
|
-
"fieldName": "for"
|
|
6940
|
+
"fieldName": "for",
|
|
6941
|
+
"propName": "for"
|
|
6776
6942
|
},
|
|
6777
6943
|
{
|
|
6778
6944
|
"name": "label",
|
|
@@ -6781,7 +6947,8 @@
|
|
|
6781
6947
|
},
|
|
6782
6948
|
"default": "\"\"",
|
|
6783
6949
|
"description": "Label text displayed above the form field.",
|
|
6784
|
-
"fieldName": "label"
|
|
6950
|
+
"fieldName": "label",
|
|
6951
|
+
"propName": "label"
|
|
6785
6952
|
},
|
|
6786
6953
|
{
|
|
6787
6954
|
"name": "description",
|
|
@@ -6790,7 +6957,8 @@
|
|
|
6790
6957
|
},
|
|
6791
6958
|
"default": "\"\"",
|
|
6792
6959
|
"description": "Helper text displayed below the label.",
|
|
6793
|
-
"fieldName": "description"
|
|
6960
|
+
"fieldName": "description",
|
|
6961
|
+
"propName": "description"
|
|
6794
6962
|
},
|
|
6795
6963
|
{
|
|
6796
6964
|
"name": "flag",
|
|
@@ -6799,7 +6967,8 @@
|
|
|
6799
6967
|
},
|
|
6800
6968
|
"default": "\"\"",
|
|
6801
6969
|
"description": "Flag type: `required` shows asterisk, `optional` shows \"(Optional)\".",
|
|
6802
|
-
"fieldName": "flag"
|
|
6970
|
+
"fieldName": "flag",
|
|
6971
|
+
"propName": "flag"
|
|
6803
6972
|
},
|
|
6804
6973
|
{
|
|
6805
6974
|
"name": "inverted",
|
|
@@ -6808,12 +6977,14 @@
|
|
|
6808
6977
|
},
|
|
6809
6978
|
"default": "false",
|
|
6810
6979
|
"description": "Adjusts colors for dark backgrounds.",
|
|
6811
|
-
"fieldName": "inverted"
|
|
6980
|
+
"fieldName": "inverted",
|
|
6981
|
+
"propName": "inverted"
|
|
6812
6982
|
},
|
|
6813
6983
|
{
|
|
6814
6984
|
"name": "tooltip",
|
|
6815
6985
|
"description": "Tooltip text shown on hover/focus of info icon next to label.",
|
|
6816
|
-
"fieldName": "tooltip"
|
|
6986
|
+
"fieldName": "tooltip",
|
|
6987
|
+
"propName": "tooltip"
|
|
6817
6988
|
}
|
|
6818
6989
|
],
|
|
6819
6990
|
"superclass": {
|
|
@@ -7093,7 +7264,8 @@
|
|
|
7093
7264
|
},
|
|
7094
7265
|
"default": "\"\"",
|
|
7095
7266
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7096
|
-
"fieldName": "id"
|
|
7267
|
+
"fieldName": "id",
|
|
7268
|
+
"propName": "id"
|
|
7097
7269
|
},
|
|
7098
7270
|
{
|
|
7099
7271
|
"name": "heading",
|
|
@@ -7102,7 +7274,8 @@
|
|
|
7102
7274
|
},
|
|
7103
7275
|
"default": "\"\"",
|
|
7104
7276
|
"description": "Modal heading text. Required for accessibility.",
|
|
7105
|
-
"fieldName": "heading"
|
|
7277
|
+
"fieldName": "heading",
|
|
7278
|
+
"propName": "heading"
|
|
7106
7279
|
},
|
|
7107
7280
|
{
|
|
7108
7281
|
"name": "subheading",
|
|
@@ -7111,7 +7284,8 @@
|
|
|
7111
7284
|
},
|
|
7112
7285
|
"default": "\"\"",
|
|
7113
7286
|
"description": "Secondary heading below the main heading.",
|
|
7114
|
-
"fieldName": "subheading"
|
|
7287
|
+
"fieldName": "subheading",
|
|
7288
|
+
"propName": "subheading"
|
|
7115
7289
|
},
|
|
7116
7290
|
{
|
|
7117
7291
|
"name": "open",
|
|
@@ -7120,7 +7294,8 @@
|
|
|
7120
7294
|
},
|
|
7121
7295
|
"default": "false",
|
|
7122
7296
|
"description": "Controls modal visibility. Set to `true` to show.",
|
|
7123
|
-
"fieldName": "open"
|
|
7297
|
+
"fieldName": "open",
|
|
7298
|
+
"propName": "open"
|
|
7124
7299
|
},
|
|
7125
7300
|
{
|
|
7126
7301
|
"name": "mandatory",
|
|
@@ -7129,7 +7304,8 @@
|
|
|
7129
7304
|
},
|
|
7130
7305
|
"default": "false",
|
|
7131
7306
|
"description": "Prevents dismissal via close button or Escape key. User must take an action.",
|
|
7132
|
-
"fieldName": "mandatory"
|
|
7307
|
+
"fieldName": "mandatory",
|
|
7308
|
+
"propName": "mandatory"
|
|
7133
7309
|
},
|
|
7134
7310
|
{
|
|
7135
7311
|
"name": "width",
|
|
@@ -7138,7 +7314,8 @@
|
|
|
7138
7314
|
},
|
|
7139
7315
|
"default": "\"md\"",
|
|
7140
7316
|
"description": "Modal width: `sm` (400px), `md` (600px), or `lg` (800px).",
|
|
7141
|
-
"fieldName": "width"
|
|
7317
|
+
"fieldName": "width",
|
|
7318
|
+
"propName": "width"
|
|
7142
7319
|
}
|
|
7143
7320
|
],
|
|
7144
7321
|
"superclass": {
|
|
@@ -7304,7 +7481,8 @@
|
|
|
7304
7481
|
},
|
|
7305
7482
|
"default": "\"\"",
|
|
7306
7483
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7307
|
-
"fieldName": "id"
|
|
7484
|
+
"fieldName": "id",
|
|
7485
|
+
"propName": "id"
|
|
7308
7486
|
},
|
|
7309
7487
|
{
|
|
7310
7488
|
"name": "name",
|
|
@@ -7313,7 +7491,8 @@
|
|
|
7313
7491
|
},
|
|
7314
7492
|
"default": "\"\"",
|
|
7315
7493
|
"description": "Name attribute for form association.",
|
|
7316
|
-
"fieldName": "name"
|
|
7494
|
+
"fieldName": "name",
|
|
7495
|
+
"propName": "name"
|
|
7317
7496
|
},
|
|
7318
7497
|
{
|
|
7319
7498
|
"name": "currentPage",
|
|
@@ -7322,7 +7501,8 @@
|
|
|
7322
7501
|
},
|
|
7323
7502
|
"default": "1",
|
|
7324
7503
|
"description": "Currently active page (1-indexed). Clamped to valid range.",
|
|
7325
|
-
"fieldName": "currentPage"
|
|
7504
|
+
"fieldName": "currentPage",
|
|
7505
|
+
"propName": "currentpage"
|
|
7326
7506
|
},
|
|
7327
7507
|
{
|
|
7328
7508
|
"name": "totalPages",
|
|
@@ -7331,7 +7511,8 @@
|
|
|
7331
7511
|
},
|
|
7332
7512
|
"default": "1",
|
|
7333
7513
|
"description": "Total number of pages. Must be at least 1.",
|
|
7334
|
-
"fieldName": "totalPages"
|
|
7514
|
+
"fieldName": "totalPages",
|
|
7515
|
+
"propName": "totalpages"
|
|
7335
7516
|
},
|
|
7336
7517
|
{
|
|
7337
7518
|
"name": "_twoBeforeLast",
|
|
@@ -7340,7 +7521,8 @@
|
|
|
7340
7521
|
},
|
|
7341
7522
|
"default": "false",
|
|
7342
7523
|
"description": "Internal state for layout adjustments near the end.",
|
|
7343
|
-
"fieldName": "_twoBeforeLast"
|
|
7524
|
+
"fieldName": "_twoBeforeLast",
|
|
7525
|
+
"propName": "_twobeforelast"
|
|
7344
7526
|
}
|
|
7345
7527
|
],
|
|
7346
7528
|
"superclass": {
|
|
@@ -7733,7 +7915,8 @@
|
|
|
7733
7915
|
},
|
|
7734
7916
|
"default": "false",
|
|
7735
7917
|
"description": "Whether this radio is selected. Only one per group can be checked.",
|
|
7736
|
-
"fieldName": "checked"
|
|
7918
|
+
"fieldName": "checked",
|
|
7919
|
+
"propName": "checked"
|
|
7737
7920
|
},
|
|
7738
7921
|
{
|
|
7739
7922
|
"name": "disabled",
|
|
@@ -7742,7 +7925,8 @@
|
|
|
7742
7925
|
},
|
|
7743
7926
|
"default": "false",
|
|
7744
7927
|
"description": "Prevents interaction.",
|
|
7745
|
-
"fieldName": "disabled"
|
|
7928
|
+
"fieldName": "disabled",
|
|
7929
|
+
"propName": "disabled"
|
|
7746
7930
|
},
|
|
7747
7931
|
{
|
|
7748
7932
|
"name": "required",
|
|
@@ -7751,7 +7935,8 @@
|
|
|
7751
7935
|
},
|
|
7752
7936
|
"default": "false",
|
|
7753
7937
|
"description": "Marks group as required. Set on radiogroup, not individual radios.",
|
|
7754
|
-
"fieldName": "required"
|
|
7938
|
+
"fieldName": "required",
|
|
7939
|
+
"propName": "required"
|
|
7755
7940
|
},
|
|
7756
7941
|
{
|
|
7757
7942
|
"name": "label",
|
|
@@ -7760,7 +7945,8 @@
|
|
|
7760
7945
|
},
|
|
7761
7946
|
"default": "\"\"",
|
|
7762
7947
|
"description": "Visible label text. Required for accessibility.",
|
|
7763
|
-
"fieldName": "label"
|
|
7948
|
+
"fieldName": "label",
|
|
7949
|
+
"propName": "label"
|
|
7764
7950
|
},
|
|
7765
7951
|
{
|
|
7766
7952
|
"name": "description",
|
|
@@ -7769,7 +7955,8 @@
|
|
|
7769
7955
|
},
|
|
7770
7956
|
"default": "\"\"",
|
|
7771
7957
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
7772
|
-
"fieldName": "description"
|
|
7958
|
+
"fieldName": "description",
|
|
7959
|
+
"propName": "description"
|
|
7773
7960
|
},
|
|
7774
7961
|
{
|
|
7775
7962
|
"name": "id",
|
|
@@ -7778,7 +7965,8 @@
|
|
|
7778
7965
|
},
|
|
7779
7966
|
"default": "\"\"",
|
|
7780
7967
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7781
|
-
"fieldName": "id"
|
|
7968
|
+
"fieldName": "id",
|
|
7969
|
+
"propName": "id"
|
|
7782
7970
|
},
|
|
7783
7971
|
{
|
|
7784
7972
|
"name": "name",
|
|
@@ -7787,7 +7975,8 @@
|
|
|
7787
7975
|
},
|
|
7788
7976
|
"default": "\"\"",
|
|
7789
7977
|
"description": "Group name. Radios with same name are mutually exclusive.",
|
|
7790
|
-
"fieldName": "name"
|
|
7978
|
+
"fieldName": "name",
|
|
7979
|
+
"propName": "name"
|
|
7791
7980
|
},
|
|
7792
7981
|
{
|
|
7793
7982
|
"name": "value",
|
|
@@ -7796,7 +7985,8 @@
|
|
|
7796
7985
|
},
|
|
7797
7986
|
"default": "\"\"",
|
|
7798
7987
|
"description": "Value submitted when this radio is selected.",
|
|
7799
|
-
"fieldName": "value"
|
|
7988
|
+
"fieldName": "value",
|
|
7989
|
+
"propName": "value"
|
|
7800
7990
|
},
|
|
7801
7991
|
{
|
|
7802
7992
|
"name": "inverted",
|
|
@@ -7805,7 +7995,8 @@
|
|
|
7805
7995
|
},
|
|
7806
7996
|
"default": "false",
|
|
7807
7997
|
"description": "Adjusts colors for dark backgrounds.",
|
|
7808
|
-
"fieldName": "inverted"
|
|
7998
|
+
"fieldName": "inverted",
|
|
7999
|
+
"propName": "inverted"
|
|
7809
8000
|
},
|
|
7810
8001
|
{
|
|
7811
8002
|
"name": "form",
|
|
@@ -7814,7 +8005,8 @@
|
|
|
7814
8005
|
},
|
|
7815
8006
|
"default": "null",
|
|
7816
8007
|
"description": "Form `id` to associate with.",
|
|
7817
|
-
"fieldName": "form"
|
|
8008
|
+
"fieldName": "form",
|
|
8009
|
+
"propName": "form"
|
|
7818
8010
|
},
|
|
7819
8011
|
{
|
|
7820
8012
|
"name": "size",
|
|
@@ -7823,7 +8015,8 @@
|
|
|
7823
8015
|
},
|
|
7824
8016
|
"default": "\"md\"",
|
|
7825
8017
|
"description": "Radio size: `sm` (24px) or `md` (32px, default).",
|
|
7826
|
-
"fieldName": "size"
|
|
8018
|
+
"fieldName": "size",
|
|
8019
|
+
"propName": "size"
|
|
7827
8020
|
},
|
|
7828
8021
|
{
|
|
7829
8022
|
"name": "tile",
|
|
@@ -7832,7 +8025,8 @@
|
|
|
7832
8025
|
},
|
|
7833
8026
|
"default": "false",
|
|
7834
8027
|
"description": "Renders as tile with larger clickable area.",
|
|
7835
|
-
"fieldName": "tile"
|
|
8028
|
+
"fieldName": "tile",
|
|
8029
|
+
"propName": "tile"
|
|
7836
8030
|
},
|
|
7837
8031
|
{
|
|
7838
8032
|
"name": "other",
|
|
@@ -7840,7 +8034,8 @@
|
|
|
7840
8034
|
"text": "boolean"
|
|
7841
8035
|
},
|
|
7842
8036
|
"default": "false",
|
|
7843
|
-
"fieldName": "other"
|
|
8037
|
+
"fieldName": "other",
|
|
8038
|
+
"propName": "other"
|
|
7844
8039
|
},
|
|
7845
8040
|
{
|
|
7846
8041
|
"name": "showOtherError",
|
|
@@ -7848,7 +8043,8 @@
|
|
|
7848
8043
|
"text": "boolean"
|
|
7849
8044
|
},
|
|
7850
8045
|
"default": "false",
|
|
7851
|
-
"fieldName": "showOtherError"
|
|
8046
|
+
"fieldName": "showOtherError",
|
|
8047
|
+
"propName": "showothererror"
|
|
7852
8048
|
}
|
|
7853
8049
|
],
|
|
7854
8050
|
"superclass": {
|
|
@@ -8220,7 +8416,8 @@
|
|
|
8220
8416
|
},
|
|
8221
8417
|
"default": "\"\"",
|
|
8222
8418
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
8223
|
-
"fieldName": "id"
|
|
8419
|
+
"fieldName": "id",
|
|
8420
|
+
"propName": "id"
|
|
8224
8421
|
},
|
|
8225
8422
|
{
|
|
8226
8423
|
"name": "name",
|
|
@@ -8229,7 +8426,8 @@
|
|
|
8229
8426
|
},
|
|
8230
8427
|
"default": "\"\"",
|
|
8231
8428
|
"description": "Name for form submission. Auto-populated from child radiobuttons.",
|
|
8232
|
-
"fieldName": "name"
|
|
8429
|
+
"fieldName": "name",
|
|
8430
|
+
"propName": "name"
|
|
8233
8431
|
},
|
|
8234
8432
|
{
|
|
8235
8433
|
"name": "required",
|
|
@@ -8238,7 +8436,8 @@
|
|
|
8238
8436
|
},
|
|
8239
8437
|
"default": "false",
|
|
8240
8438
|
"description": "Requires a selection before form submission.",
|
|
8241
|
-
"fieldName": "required"
|
|
8439
|
+
"fieldName": "required",
|
|
8440
|
+
"propName": "required"
|
|
8242
8441
|
},
|
|
8243
8442
|
{
|
|
8244
8443
|
"name": "optional",
|
|
@@ -8247,7 +8446,8 @@
|
|
|
8247
8446
|
},
|
|
8248
8447
|
"default": "false",
|
|
8249
8448
|
"description": "Shows \"Optional\" flag.",
|
|
8250
|
-
"fieldName": "optional"
|
|
8449
|
+
"fieldName": "optional",
|
|
8450
|
+
"propName": "optional"
|
|
8251
8451
|
},
|
|
8252
8452
|
{
|
|
8253
8453
|
"name": "showError",
|
|
@@ -8256,7 +8456,8 @@
|
|
|
8256
8456
|
},
|
|
8257
8457
|
"default": "false",
|
|
8258
8458
|
"description": "Shows error message when true.",
|
|
8259
|
-
"fieldName": "showError"
|
|
8459
|
+
"fieldName": "showError",
|
|
8460
|
+
"propName": "showerror"
|
|
8260
8461
|
},
|
|
8261
8462
|
{
|
|
8262
8463
|
"name": "errorMessage",
|
|
@@ -8265,7 +8466,8 @@
|
|
|
8265
8466
|
},
|
|
8266
8467
|
"default": "\"\"",
|
|
8267
8468
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
8268
|
-
"fieldName": "errorMessage"
|
|
8469
|
+
"fieldName": "errorMessage",
|
|
8470
|
+
"propName": "errormessage"
|
|
8269
8471
|
},
|
|
8270
8472
|
{
|
|
8271
8473
|
"name": "label",
|
|
@@ -8274,7 +8476,8 @@
|
|
|
8274
8476
|
},
|
|
8275
8477
|
"default": "\"\"",
|
|
8276
8478
|
"description": "Visible label text for the group.",
|
|
8277
|
-
"fieldName": "label"
|
|
8479
|
+
"fieldName": "label",
|
|
8480
|
+
"propName": "label"
|
|
8278
8481
|
},
|
|
8279
8482
|
{
|
|
8280
8483
|
"name": "description",
|
|
@@ -8283,7 +8486,8 @@
|
|
|
8283
8486
|
},
|
|
8284
8487
|
"default": "\"\"",
|
|
8285
8488
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
8286
|
-
"fieldName": "description"
|
|
8489
|
+
"fieldName": "description",
|
|
8490
|
+
"propName": "description"
|
|
8287
8491
|
},
|
|
8288
8492
|
{
|
|
8289
8493
|
"name": "tile",
|
|
@@ -8292,7 +8496,8 @@
|
|
|
8292
8496
|
},
|
|
8293
8497
|
"default": "false",
|
|
8294
8498
|
"description": "Renders all radiobuttons as tiles with larger clickable area.",
|
|
8295
|
-
"fieldName": "tile"
|
|
8499
|
+
"fieldName": "tile",
|
|
8500
|
+
"propName": "tile"
|
|
8296
8501
|
},
|
|
8297
8502
|
{
|
|
8298
8503
|
"name": "tooltip",
|
|
@@ -8301,7 +8506,8 @@
|
|
|
8301
8506
|
},
|
|
8302
8507
|
"default": "\"\"",
|
|
8303
8508
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
8304
|
-
"fieldName": "tooltip"
|
|
8509
|
+
"fieldName": "tooltip",
|
|
8510
|
+
"propName": "tooltip"
|
|
8305
8511
|
},
|
|
8306
8512
|
{
|
|
8307
8513
|
"name": "inverted",
|
|
@@ -8310,7 +8516,8 @@
|
|
|
8310
8516
|
},
|
|
8311
8517
|
"default": "false",
|
|
8312
8518
|
"description": "Adjusts colors for dark backgrounds. Applied to all children.",
|
|
8313
|
-
"fieldName": "inverted"
|
|
8519
|
+
"fieldName": "inverted",
|
|
8520
|
+
"propName": "inverted"
|
|
8314
8521
|
},
|
|
8315
8522
|
{
|
|
8316
8523
|
"name": "form",
|
|
@@ -8319,7 +8526,8 @@
|
|
|
8319
8526
|
},
|
|
8320
8527
|
"default": "null",
|
|
8321
8528
|
"description": "Form `id` to associate with. Applied to all children.",
|
|
8322
|
-
"fieldName": "form"
|
|
8529
|
+
"fieldName": "form",
|
|
8530
|
+
"propName": "form"
|
|
8323
8531
|
},
|
|
8324
8532
|
{
|
|
8325
8533
|
"name": "size",
|
|
@@ -8328,7 +8536,8 @@
|
|
|
8328
8536
|
},
|
|
8329
8537
|
"default": "\"md\"",
|
|
8330
8538
|
"description": "Radio size for all children: `sm` (24px) or `md` (32px, default).",
|
|
8331
|
-
"fieldName": "size"
|
|
8539
|
+
"fieldName": "size",
|
|
8540
|
+
"propName": "size"
|
|
8332
8541
|
}
|
|
8333
8542
|
],
|
|
8334
8543
|
"superclass": {
|
|
@@ -8459,7 +8668,8 @@
|
|
|
8459
8668
|
},
|
|
8460
8669
|
"default": "false",
|
|
8461
8670
|
"description": "Prevents selection of this option.",
|
|
8462
|
-
"fieldName": "disabled"
|
|
8671
|
+
"fieldName": "disabled",
|
|
8672
|
+
"propName": "disabled"
|
|
8463
8673
|
},
|
|
8464
8674
|
{
|
|
8465
8675
|
"name": "selected",
|
|
@@ -8468,7 +8678,8 @@
|
|
|
8468
8678
|
},
|
|
8469
8679
|
"default": "false",
|
|
8470
8680
|
"description": "Pre-selects this option.",
|
|
8471
|
-
"fieldName": "selected"
|
|
8681
|
+
"fieldName": "selected",
|
|
8682
|
+
"propName": "selected"
|
|
8472
8683
|
},
|
|
8473
8684
|
{
|
|
8474
8685
|
"name": "value",
|
|
@@ -8477,7 +8688,8 @@
|
|
|
8477
8688
|
},
|
|
8478
8689
|
"default": "\"\"",
|
|
8479
8690
|
"description": "Value submitted when this option is selected.",
|
|
8480
|
-
"fieldName": "value"
|
|
8691
|
+
"fieldName": "value",
|
|
8692
|
+
"propName": "value"
|
|
8481
8693
|
},
|
|
8482
8694
|
{
|
|
8483
8695
|
"name": "label",
|
|
@@ -8486,7 +8698,8 @@
|
|
|
8486
8698
|
},
|
|
8487
8699
|
"default": "\"\"",
|
|
8488
8700
|
"description": "Display text for the option. Auto-populated from slot content if not set.",
|
|
8489
|
-
"fieldName": "label"
|
|
8701
|
+
"fieldName": "label",
|
|
8702
|
+
"propName": "label"
|
|
8490
8703
|
},
|
|
8491
8704
|
{
|
|
8492
8705
|
"name": "hidden",
|
|
@@ -8495,7 +8708,8 @@
|
|
|
8495
8708
|
},
|
|
8496
8709
|
"default": "false",
|
|
8497
8710
|
"description": "Hides the option from the dropdown list.",
|
|
8498
|
-
"fieldName": "hidden"
|
|
8711
|
+
"fieldName": "hidden",
|
|
8712
|
+
"propName": "hidden"
|
|
8499
8713
|
}
|
|
8500
8714
|
],
|
|
8501
8715
|
"superclass": {
|
|
@@ -8858,7 +9072,8 @@
|
|
|
8858
9072
|
},
|
|
8859
9073
|
"default": "\"\"",
|
|
8860
9074
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
8861
|
-
"fieldName": "id"
|
|
9075
|
+
"fieldName": "id",
|
|
9076
|
+
"propName": "id"
|
|
8862
9077
|
},
|
|
8863
9078
|
{
|
|
8864
9079
|
"name": "name",
|
|
@@ -8867,7 +9082,8 @@
|
|
|
8867
9082
|
},
|
|
8868
9083
|
"default": "\"\"",
|
|
8869
9084
|
"description": "Name for form submission.",
|
|
8870
|
-
"fieldName": "name"
|
|
9085
|
+
"fieldName": "name",
|
|
9086
|
+
"propName": "name"
|
|
8871
9087
|
},
|
|
8872
9088
|
{
|
|
8873
9089
|
"name": "label",
|
|
@@ -8876,7 +9092,8 @@
|
|
|
8876
9092
|
},
|
|
8877
9093
|
"default": "\"\"",
|
|
8878
9094
|
"description": "Visible label text. Required for accessibility.",
|
|
8879
|
-
"fieldName": "label"
|
|
9095
|
+
"fieldName": "label",
|
|
9096
|
+
"propName": "label"
|
|
8880
9097
|
},
|
|
8881
9098
|
{
|
|
8882
9099
|
"name": "description",
|
|
@@ -8885,7 +9102,8 @@
|
|
|
8885
9102
|
},
|
|
8886
9103
|
"default": "\"\"",
|
|
8887
9104
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
8888
|
-
"fieldName": "description"
|
|
9105
|
+
"fieldName": "description",
|
|
9106
|
+
"propName": "description"
|
|
8889
9107
|
},
|
|
8890
9108
|
{
|
|
8891
9109
|
"name": "value",
|
|
@@ -8894,7 +9112,8 @@
|
|
|
8894
9112
|
},
|
|
8895
9113
|
"default": "\"\"",
|
|
8896
9114
|
"description": "Currently selected option value.",
|
|
8897
|
-
"fieldName": "value"
|
|
9115
|
+
"fieldName": "value",
|
|
9116
|
+
"propName": "value"
|
|
8898
9117
|
},
|
|
8899
9118
|
{
|
|
8900
9119
|
"name": "disabled",
|
|
@@ -8903,7 +9122,8 @@
|
|
|
8903
9122
|
},
|
|
8904
9123
|
"default": "false",
|
|
8905
9124
|
"description": "Prevents interaction.",
|
|
8906
|
-
"fieldName": "disabled"
|
|
9125
|
+
"fieldName": "disabled",
|
|
9126
|
+
"propName": "disabled"
|
|
8907
9127
|
},
|
|
8908
9128
|
{
|
|
8909
9129
|
"name": "required",
|
|
@@ -8912,7 +9132,8 @@
|
|
|
8912
9132
|
},
|
|
8913
9133
|
"default": "false",
|
|
8914
9134
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
8915
|
-
"fieldName": "required"
|
|
9135
|
+
"fieldName": "required",
|
|
9136
|
+
"propName": "required"
|
|
8916
9137
|
},
|
|
8917
9138
|
{
|
|
8918
9139
|
"name": "optional",
|
|
@@ -8921,7 +9142,8 @@
|
|
|
8921
9142
|
},
|
|
8922
9143
|
"default": "false",
|
|
8923
9144
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
8924
|
-
"fieldName": "optional"
|
|
9145
|
+
"fieldName": "optional",
|
|
9146
|
+
"propName": "optional"
|
|
8925
9147
|
},
|
|
8926
9148
|
{
|
|
8927
9149
|
"name": "tooltip",
|
|
@@ -8930,7 +9152,8 @@
|
|
|
8930
9152
|
},
|
|
8931
9153
|
"default": "\"\"",
|
|
8932
9154
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
8933
|
-
"fieldName": "tooltip"
|
|
9155
|
+
"fieldName": "tooltip",
|
|
9156
|
+
"propName": "tooltip"
|
|
8934
9157
|
},
|
|
8935
9158
|
{
|
|
8936
9159
|
"name": "form",
|
|
@@ -8939,7 +9162,8 @@
|
|
|
8939
9162
|
},
|
|
8940
9163
|
"default": "null",
|
|
8941
9164
|
"description": "Form `id` to associate with when select is outside form element.",
|
|
8942
|
-
"fieldName": "form"
|
|
9165
|
+
"fieldName": "form",
|
|
9166
|
+
"propName": "form"
|
|
8943
9167
|
},
|
|
8944
9168
|
{
|
|
8945
9169
|
"name": "inverted",
|
|
@@ -8948,7 +9172,8 @@
|
|
|
8948
9172
|
},
|
|
8949
9173
|
"default": "false",
|
|
8950
9174
|
"description": "Adjusts colors for dark backgrounds.",
|
|
8951
|
-
"fieldName": "inverted"
|
|
9175
|
+
"fieldName": "inverted",
|
|
9176
|
+
"propName": "inverted"
|
|
8952
9177
|
},
|
|
8953
9178
|
{
|
|
8954
9179
|
"name": "showError",
|
|
@@ -8957,7 +9182,8 @@
|
|
|
8957
9182
|
},
|
|
8958
9183
|
"default": "false",
|
|
8959
9184
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
8960
|
-
"fieldName": "showError"
|
|
9185
|
+
"fieldName": "showError",
|
|
9186
|
+
"propName": "showerror"
|
|
8961
9187
|
},
|
|
8962
9188
|
{
|
|
8963
9189
|
"name": "errorMessage",
|
|
@@ -8966,7 +9192,8 @@
|
|
|
8966
9192
|
},
|
|
8967
9193
|
"default": "\"\"",
|
|
8968
9194
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
8969
|
-
"fieldName": "errorMessage"
|
|
9195
|
+
"fieldName": "errorMessage",
|
|
9196
|
+
"propName": "errormessage"
|
|
8970
9197
|
},
|
|
8971
9198
|
{
|
|
8972
9199
|
"name": "width",
|
|
@@ -8975,7 +9202,8 @@
|
|
|
8975
9202
|
},
|
|
8976
9203
|
"default": "\"full\"",
|
|
8977
9204
|
"description": "Select width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
8978
|
-
"fieldName": "width"
|
|
9205
|
+
"fieldName": "width",
|
|
9206
|
+
"propName": "width"
|
|
8979
9207
|
}
|
|
8980
9208
|
],
|
|
8981
9209
|
"superclass": {
|
|
@@ -9076,7 +9304,8 @@
|
|
|
9076
9304
|
},
|
|
9077
9305
|
"default": "\"\"",
|
|
9078
9306
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
9079
|
-
"fieldName": "id"
|
|
9307
|
+
"fieldName": "id",
|
|
9308
|
+
"propName": "id"
|
|
9080
9309
|
},
|
|
9081
9310
|
{
|
|
9082
9311
|
"name": "href",
|
|
@@ -9085,7 +9314,8 @@
|
|
|
9085
9314
|
},
|
|
9086
9315
|
"default": "\"\"",
|
|
9087
9316
|
"description": "Target element ID (with `#`). Defaults to `#main-content`.",
|
|
9088
|
-
"fieldName": "href"
|
|
9317
|
+
"fieldName": "href",
|
|
9318
|
+
"propName": "href"
|
|
9089
9319
|
}
|
|
9090
9320
|
],
|
|
9091
9321
|
"superclass": {
|
|
@@ -9259,7 +9489,8 @@
|
|
|
9259
9489
|
},
|
|
9260
9490
|
"default": "false",
|
|
9261
9491
|
"description": "Whether this step is currently being viewed. Set by parent stepper.",
|
|
9262
|
-
"fieldName": "selected"
|
|
9492
|
+
"fieldName": "selected",
|
|
9493
|
+
"propName": "selected"
|
|
9263
9494
|
},
|
|
9264
9495
|
{
|
|
9265
9496
|
"name": "current",
|
|
@@ -9268,7 +9499,8 @@
|
|
|
9268
9499
|
},
|
|
9269
9500
|
"default": "false",
|
|
9270
9501
|
"description": "Marks the furthest reached step. Steps before this are navigable.",
|
|
9271
|
-
"fieldName": "current"
|
|
9502
|
+
"fieldName": "current",
|
|
9503
|
+
"propName": "current"
|
|
9272
9504
|
},
|
|
9273
9505
|
{
|
|
9274
9506
|
"name": "label",
|
|
@@ -9277,7 +9509,8 @@
|
|
|
9277
9509
|
},
|
|
9278
9510
|
"default": "\"\"",
|
|
9279
9511
|
"description": "Step label text displayed alongside the step number.",
|
|
9280
|
-
"fieldName": "label"
|
|
9512
|
+
"fieldName": "label",
|
|
9513
|
+
"propName": "label"
|
|
9281
9514
|
},
|
|
9282
9515
|
{
|
|
9283
9516
|
"name": "href",
|
|
@@ -9286,7 +9519,8 @@
|
|
|
9286
9519
|
},
|
|
9287
9520
|
"default": "\"\"",
|
|
9288
9521
|
"description": "URL for page navigation when step is clicked. Optional for SPA routing.",
|
|
9289
|
-
"fieldName": "href"
|
|
9522
|
+
"fieldName": "href",
|
|
9523
|
+
"propName": "href"
|
|
9290
9524
|
},
|
|
9291
9525
|
{
|
|
9292
9526
|
"name": "isCompactExpanded",
|
|
@@ -9295,7 +9529,8 @@
|
|
|
9295
9529
|
},
|
|
9296
9530
|
"default": "false",
|
|
9297
9531
|
"description": "Internal: Whether parent stepper's compact view is expanded.",
|
|
9298
|
-
"fieldName": "isCompactExpanded"
|
|
9532
|
+
"fieldName": "isCompactExpanded",
|
|
9533
|
+
"propName": "iscompactexpanded"
|
|
9299
9534
|
},
|
|
9300
9535
|
{
|
|
9301
9536
|
"name": "stepNumber",
|
|
@@ -9304,7 +9539,8 @@
|
|
|
9304
9539
|
},
|
|
9305
9540
|
"default": "0",
|
|
9306
9541
|
"description": "Step number (1-indexed). Auto-assigned by parent stepper.",
|
|
9307
|
-
"fieldName": "stepNumber"
|
|
9542
|
+
"fieldName": "stepNumber",
|
|
9543
|
+
"propName": "stepnumber"
|
|
9308
9544
|
}
|
|
9309
9545
|
],
|
|
9310
9546
|
"superclass": {
|
|
@@ -9471,7 +9707,8 @@
|
|
|
9471
9707
|
},
|
|
9472
9708
|
"default": "\"\"",
|
|
9473
9709
|
"description": "Unique identifier.",
|
|
9474
|
-
"fieldName": "id"
|
|
9710
|
+
"fieldName": "id",
|
|
9711
|
+
"propName": "id"
|
|
9475
9712
|
},
|
|
9476
9713
|
{
|
|
9477
9714
|
"name": "name",
|
|
@@ -9480,7 +9717,8 @@
|
|
|
9480
9717
|
},
|
|
9481
9718
|
"default": "\"\"",
|
|
9482
9719
|
"description": "Name attribute for form association.",
|
|
9483
|
-
"fieldName": "name"
|
|
9720
|
+
"fieldName": "name",
|
|
9721
|
+
"propName": "name"
|
|
9484
9722
|
},
|
|
9485
9723
|
{
|
|
9486
9724
|
"name": "label",
|
|
@@ -9489,7 +9727,8 @@
|
|
|
9489
9727
|
},
|
|
9490
9728
|
"default": "\"\"",
|
|
9491
9729
|
"description": "Title displayed above the step counter.",
|
|
9492
|
-
"fieldName": "label"
|
|
9730
|
+
"fieldName": "label",
|
|
9731
|
+
"propName": "label"
|
|
9493
9732
|
},
|
|
9494
9733
|
{
|
|
9495
9734
|
"name": "counterText",
|
|
@@ -9498,7 +9737,8 @@
|
|
|
9498
9737
|
},
|
|
9499
9738
|
"default": "\"initial\"",
|
|
9500
9739
|
"description": "Progress text (e.g., \"Step 2 of 5\"). Auto-updated based on selection.",
|
|
9501
|
-
"fieldName": "counterText"
|
|
9740
|
+
"fieldName": "counterText",
|
|
9741
|
+
"propName": "countertext"
|
|
9502
9742
|
},
|
|
9503
9743
|
{
|
|
9504
9744
|
"name": "isCompactExpanded",
|
|
@@ -9507,7 +9747,8 @@
|
|
|
9507
9747
|
},
|
|
9508
9748
|
"default": "false",
|
|
9509
9749
|
"description": "Whether compact mobile view is expanded to show all steps.",
|
|
9510
|
-
"fieldName": "isCompactExpanded"
|
|
9750
|
+
"fieldName": "isCompactExpanded",
|
|
9751
|
+
"propName": "iscompactexpanded"
|
|
9511
9752
|
}
|
|
9512
9753
|
],
|
|
9513
9754
|
"superclass": {
|
|
@@ -9767,7 +10008,8 @@
|
|
|
9767
10008
|
"text": "string"
|
|
9768
10009
|
},
|
|
9769
10010
|
"default": "\"\"",
|
|
9770
|
-
"fieldName": "id"
|
|
10011
|
+
"fieldName": "id",
|
|
10012
|
+
"propName": "id"
|
|
9771
10013
|
},
|
|
9772
10014
|
{
|
|
9773
10015
|
"name": "name",
|
|
@@ -9775,7 +10017,8 @@
|
|
|
9775
10017
|
"text": "string"
|
|
9776
10018
|
},
|
|
9777
10019
|
"default": "\"\"",
|
|
9778
|
-
"fieldName": "name"
|
|
10020
|
+
"fieldName": "name",
|
|
10021
|
+
"propName": "name"
|
|
9779
10022
|
},
|
|
9780
10023
|
{
|
|
9781
10024
|
"name": "striped",
|
|
@@ -9783,7 +10026,8 @@
|
|
|
9783
10026
|
"text": "boolean"
|
|
9784
10027
|
},
|
|
9785
10028
|
"default": "false",
|
|
9786
|
-
"fieldName": "striped"
|
|
10029
|
+
"fieldName": "striped",
|
|
10030
|
+
"propName": "striped"
|
|
9787
10031
|
},
|
|
9788
10032
|
{
|
|
9789
10033
|
"name": "sortable",
|
|
@@ -9791,7 +10035,8 @@
|
|
|
9791
10035
|
"text": "boolean"
|
|
9792
10036
|
},
|
|
9793
10037
|
"default": "false",
|
|
9794
|
-
"fieldName": "sortable"
|
|
10038
|
+
"fieldName": "sortable",
|
|
10039
|
+
"propName": "sortable"
|
|
9795
10040
|
},
|
|
9796
10041
|
{
|
|
9797
10042
|
"name": "bordered",
|
|
@@ -9799,7 +10044,8 @@
|
|
|
9799
10044
|
"text": "boolean"
|
|
9800
10045
|
},
|
|
9801
10046
|
"default": "false",
|
|
9802
|
-
"fieldName": "bordered"
|
|
10047
|
+
"fieldName": "bordered",
|
|
10048
|
+
"propName": "bordered"
|
|
9803
10049
|
},
|
|
9804
10050
|
{
|
|
9805
10051
|
"name": "download",
|
|
@@ -9807,7 +10053,8 @@
|
|
|
9807
10053
|
"text": "string"
|
|
9808
10054
|
},
|
|
9809
10055
|
"default": "\"\"",
|
|
9810
|
-
"fieldName": "download"
|
|
10056
|
+
"fieldName": "download",
|
|
10057
|
+
"propName": "download"
|
|
9811
10058
|
}
|
|
9812
10059
|
],
|
|
9813
10060
|
"superclass": {
|
|
@@ -10257,7 +10504,8 @@
|
|
|
10257
10504
|
},
|
|
10258
10505
|
"default": "\"\"",
|
|
10259
10506
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
10260
|
-
"fieldName": "id"
|
|
10507
|
+
"fieldName": "id",
|
|
10508
|
+
"propName": "id"
|
|
10261
10509
|
},
|
|
10262
10510
|
{
|
|
10263
10511
|
"name": "name",
|
|
@@ -10266,7 +10514,8 @@
|
|
|
10266
10514
|
},
|
|
10267
10515
|
"default": "\"\"",
|
|
10268
10516
|
"description": "Name for form submission.",
|
|
10269
|
-
"fieldName": "name"
|
|
10517
|
+
"fieldName": "name",
|
|
10518
|
+
"propName": "name"
|
|
10270
10519
|
},
|
|
10271
10520
|
{
|
|
10272
10521
|
"name": "label",
|
|
@@ -10275,7 +10524,8 @@
|
|
|
10275
10524
|
},
|
|
10276
10525
|
"default": "\"\"",
|
|
10277
10526
|
"description": "Visible label text. Required for accessibility.",
|
|
10278
|
-
"fieldName": "label"
|
|
10527
|
+
"fieldName": "label",
|
|
10528
|
+
"propName": "label"
|
|
10279
10529
|
},
|
|
10280
10530
|
{
|
|
10281
10531
|
"name": "description",
|
|
@@ -10284,7 +10534,8 @@
|
|
|
10284
10534
|
},
|
|
10285
10535
|
"default": "\"\"",
|
|
10286
10536
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
10287
|
-
"fieldName": "description"
|
|
10537
|
+
"fieldName": "description",
|
|
10538
|
+
"propName": "description"
|
|
10288
10539
|
},
|
|
10289
10540
|
{
|
|
10290
10541
|
"name": "placeholder",
|
|
@@ -10293,7 +10544,8 @@
|
|
|
10293
10544
|
},
|
|
10294
10545
|
"default": "\"\"",
|
|
10295
10546
|
"description": "Placeholder text. Don't use as label replacement.",
|
|
10296
|
-
"fieldName": "placeholder"
|
|
10547
|
+
"fieldName": "placeholder",
|
|
10548
|
+
"propName": "placeholder"
|
|
10297
10549
|
},
|
|
10298
10550
|
{
|
|
10299
10551
|
"name": "value",
|
|
@@ -10302,7 +10554,8 @@
|
|
|
10302
10554
|
},
|
|
10303
10555
|
"default": "\"\"",
|
|
10304
10556
|
"description": "Current textarea value.",
|
|
10305
|
-
"fieldName": "value"
|
|
10557
|
+
"fieldName": "value",
|
|
10558
|
+
"propName": "value"
|
|
10306
10559
|
},
|
|
10307
10560
|
{
|
|
10308
10561
|
"name": "disabled",
|
|
@@ -10311,7 +10564,8 @@
|
|
|
10311
10564
|
},
|
|
10312
10565
|
"default": "false",
|
|
10313
10566
|
"description": "Prevents interaction.",
|
|
10314
|
-
"fieldName": "disabled"
|
|
10567
|
+
"fieldName": "disabled",
|
|
10568
|
+
"propName": "disabled"
|
|
10315
10569
|
},
|
|
10316
10570
|
{
|
|
10317
10571
|
"name": "readonly",
|
|
@@ -10320,7 +10574,8 @@
|
|
|
10320
10574
|
},
|
|
10321
10575
|
"default": "false",
|
|
10322
10576
|
"description": "Makes textarea read-only but focusable.",
|
|
10323
|
-
"fieldName": "readonly"
|
|
10577
|
+
"fieldName": "readonly",
|
|
10578
|
+
"propName": "readonly"
|
|
10324
10579
|
},
|
|
10325
10580
|
{
|
|
10326
10581
|
"name": "required",
|
|
@@ -10329,7 +10584,8 @@
|
|
|
10329
10584
|
},
|
|
10330
10585
|
"default": "false",
|
|
10331
10586
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
10332
|
-
"fieldName": "required"
|
|
10587
|
+
"fieldName": "required",
|
|
10588
|
+
"propName": "required"
|
|
10333
10589
|
},
|
|
10334
10590
|
{
|
|
10335
10591
|
"name": "optional",
|
|
@@ -10338,7 +10594,8 @@
|
|
|
10338
10594
|
},
|
|
10339
10595
|
"default": "false",
|
|
10340
10596
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
10341
|
-
"fieldName": "optional"
|
|
10597
|
+
"fieldName": "optional",
|
|
10598
|
+
"propName": "optional"
|
|
10342
10599
|
},
|
|
10343
10600
|
{
|
|
10344
10601
|
"name": "tooltip",
|
|
@@ -10347,7 +10604,8 @@
|
|
|
10347
10604
|
},
|
|
10348
10605
|
"default": "\"\"",
|
|
10349
10606
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
10350
|
-
"fieldName": "tooltip"
|
|
10607
|
+
"fieldName": "tooltip",
|
|
10608
|
+
"propName": "tooltip"
|
|
10351
10609
|
},
|
|
10352
10610
|
{
|
|
10353
10611
|
"name": "inverted",
|
|
@@ -10356,7 +10614,8 @@
|
|
|
10356
10614
|
},
|
|
10357
10615
|
"default": "false",
|
|
10358
10616
|
"description": "Adjusts colors for dark backgrounds.",
|
|
10359
|
-
"fieldName": "inverted"
|
|
10617
|
+
"fieldName": "inverted",
|
|
10618
|
+
"propName": "inverted"
|
|
10360
10619
|
},
|
|
10361
10620
|
{
|
|
10362
10621
|
"name": "form",
|
|
@@ -10365,7 +10624,8 @@
|
|
|
10365
10624
|
},
|
|
10366
10625
|
"default": "null",
|
|
10367
10626
|
"description": "Form `id` to associate with when textarea is outside form element.",
|
|
10368
|
-
"fieldName": "form"
|
|
10627
|
+
"fieldName": "form",
|
|
10628
|
+
"propName": "form"
|
|
10369
10629
|
},
|
|
10370
10630
|
{
|
|
10371
10631
|
"name": "maxlength",
|
|
@@ -10374,7 +10634,8 @@
|
|
|
10374
10634
|
},
|
|
10375
10635
|
"default": "null",
|
|
10376
10636
|
"description": "Maximum character length.",
|
|
10377
|
-
"fieldName": "maxlength"
|
|
10637
|
+
"fieldName": "maxlength",
|
|
10638
|
+
"propName": "maxlength"
|
|
10378
10639
|
},
|
|
10379
10640
|
{
|
|
10380
10641
|
"name": "width",
|
|
@@ -10383,7 +10644,8 @@
|
|
|
10383
10644
|
},
|
|
10384
10645
|
"default": "\"full\"",
|
|
10385
10646
|
"description": "Textarea width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
10386
|
-
"fieldName": "width"
|
|
10647
|
+
"fieldName": "width",
|
|
10648
|
+
"propName": "width"
|
|
10387
10649
|
},
|
|
10388
10650
|
{
|
|
10389
10651
|
"name": "rows",
|
|
@@ -10392,7 +10654,8 @@
|
|
|
10392
10654
|
},
|
|
10393
10655
|
"default": "4",
|
|
10394
10656
|
"description": "Visible height in lines.",
|
|
10395
|
-
"fieldName": "rows"
|
|
10657
|
+
"fieldName": "rows",
|
|
10658
|
+
"propName": "rows"
|
|
10396
10659
|
},
|
|
10397
10660
|
{
|
|
10398
10661
|
"name": "resize",
|
|
@@ -10401,7 +10664,8 @@
|
|
|
10401
10664
|
},
|
|
10402
10665
|
"default": "\"vertical\"",
|
|
10403
10666
|
"description": "Resize behavior: `vertical` (default, user can resize height), `none` (fixed size).",
|
|
10404
|
-
"fieldName": "resize"
|
|
10667
|
+
"fieldName": "resize",
|
|
10668
|
+
"propName": "resize"
|
|
10405
10669
|
},
|
|
10406
10670
|
{
|
|
10407
10671
|
"name": "showError",
|
|
@@ -10410,7 +10674,8 @@
|
|
|
10410
10674
|
},
|
|
10411
10675
|
"default": "false",
|
|
10412
10676
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
10413
|
-
"fieldName": "showError"
|
|
10677
|
+
"fieldName": "showError",
|
|
10678
|
+
"propName": "showerror"
|
|
10414
10679
|
},
|
|
10415
10680
|
{
|
|
10416
10681
|
"name": "errorMessage",
|
|
@@ -10419,7 +10684,8 @@
|
|
|
10419
10684
|
},
|
|
10420
10685
|
"default": "\"\"",
|
|
10421
10686
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
10422
|
-
"fieldName": "errorMessage"
|
|
10687
|
+
"fieldName": "errorMessage",
|
|
10688
|
+
"propName": "errormessage"
|
|
10423
10689
|
}
|
|
10424
10690
|
],
|
|
10425
10691
|
"superclass": {
|
|
@@ -10967,7 +11233,8 @@
|
|
|
10967
11233
|
},
|
|
10968
11234
|
"default": "\"\"",
|
|
10969
11235
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
10970
|
-
"fieldName": "id"
|
|
11236
|
+
"fieldName": "id",
|
|
11237
|
+
"propName": "id"
|
|
10971
11238
|
},
|
|
10972
11239
|
{
|
|
10973
11240
|
"name": "name",
|
|
@@ -10976,7 +11243,8 @@
|
|
|
10976
11243
|
},
|
|
10977
11244
|
"default": "\"\"",
|
|
10978
11245
|
"description": "Name for form submission.",
|
|
10979
|
-
"fieldName": "name"
|
|
11246
|
+
"fieldName": "name",
|
|
11247
|
+
"propName": "name"
|
|
10980
11248
|
},
|
|
10981
11249
|
{
|
|
10982
11250
|
"name": "type",
|
|
@@ -10985,7 +11253,8 @@
|
|
|
10985
11253
|
},
|
|
10986
11254
|
"default": "\"text\"",
|
|
10987
11255
|
"description": "Input type: `text` (default), `email`, `number`, `password`, `search`, `tel` (auto-masked), `url`.",
|
|
10988
|
-
"fieldName": "type"
|
|
11256
|
+
"fieldName": "type",
|
|
11257
|
+
"propName": "type"
|
|
10989
11258
|
},
|
|
10990
11259
|
{
|
|
10991
11260
|
"name": "label",
|
|
@@ -10994,7 +11263,8 @@
|
|
|
10994
11263
|
},
|
|
10995
11264
|
"default": "\"\"",
|
|
10996
11265
|
"description": "Visible label text. Required for accessibility.",
|
|
10997
|
-
"fieldName": "label"
|
|
11266
|
+
"fieldName": "label",
|
|
11267
|
+
"propName": "label"
|
|
10998
11268
|
},
|
|
10999
11269
|
{
|
|
11000
11270
|
"name": "description",
|
|
@@ -11003,7 +11273,8 @@
|
|
|
11003
11273
|
},
|
|
11004
11274
|
"default": "\"\"",
|
|
11005
11275
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
11006
|
-
"fieldName": "description"
|
|
11276
|
+
"fieldName": "description",
|
|
11277
|
+
"propName": "description"
|
|
11007
11278
|
},
|
|
11008
11279
|
{
|
|
11009
11280
|
"name": "placeholder",
|
|
@@ -11012,7 +11283,8 @@
|
|
|
11012
11283
|
},
|
|
11013
11284
|
"default": "\"\"",
|
|
11014
11285
|
"description": "Placeholder text. Don't use as label replacement.",
|
|
11015
|
-
"fieldName": "placeholder"
|
|
11286
|
+
"fieldName": "placeholder",
|
|
11287
|
+
"propName": "placeholder"
|
|
11016
11288
|
},
|
|
11017
11289
|
{
|
|
11018
11290
|
"name": "value",
|
|
@@ -11021,7 +11293,8 @@
|
|
|
11021
11293
|
},
|
|
11022
11294
|
"default": "\"\"",
|
|
11023
11295
|
"description": "Current input value.",
|
|
11024
|
-
"fieldName": "value"
|
|
11296
|
+
"fieldName": "value",
|
|
11297
|
+
"propName": "value"
|
|
11025
11298
|
},
|
|
11026
11299
|
{
|
|
11027
11300
|
"name": "disabled",
|
|
@@ -11030,7 +11303,8 @@
|
|
|
11030
11303
|
},
|
|
11031
11304
|
"default": "false",
|
|
11032
11305
|
"description": "Prevents interaction.",
|
|
11033
|
-
"fieldName": "disabled"
|
|
11306
|
+
"fieldName": "disabled",
|
|
11307
|
+
"propName": "disabled"
|
|
11034
11308
|
},
|
|
11035
11309
|
{
|
|
11036
11310
|
"name": "readonly",
|
|
@@ -11039,7 +11313,8 @@
|
|
|
11039
11313
|
},
|
|
11040
11314
|
"default": "false",
|
|
11041
11315
|
"description": "Makes input read-only but focusable.",
|
|
11042
|
-
"fieldName": "readonly"
|
|
11316
|
+
"fieldName": "readonly",
|
|
11317
|
+
"propName": "readonly"
|
|
11043
11318
|
},
|
|
11044
11319
|
{
|
|
11045
11320
|
"name": "required",
|
|
@@ -11048,7 +11323,8 @@
|
|
|
11048
11323
|
},
|
|
11049
11324
|
"default": "false",
|
|
11050
11325
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
11051
|
-
"fieldName": "required"
|
|
11326
|
+
"fieldName": "required",
|
|
11327
|
+
"propName": "required"
|
|
11052
11328
|
},
|
|
11053
11329
|
{
|
|
11054
11330
|
"name": "optional",
|
|
@@ -11057,7 +11333,8 @@
|
|
|
11057
11333
|
},
|
|
11058
11334
|
"default": "false",
|
|
11059
11335
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
11060
|
-
"fieldName": "optional"
|
|
11336
|
+
"fieldName": "optional",
|
|
11337
|
+
"propName": "optional"
|
|
11061
11338
|
},
|
|
11062
11339
|
{
|
|
11063
11340
|
"name": "tooltip",
|
|
@@ -11066,7 +11343,8 @@
|
|
|
11066
11343
|
},
|
|
11067
11344
|
"default": "\"\"",
|
|
11068
11345
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
11069
|
-
"fieldName": "tooltip"
|
|
11346
|
+
"fieldName": "tooltip",
|
|
11347
|
+
"propName": "tooltip"
|
|
11070
11348
|
},
|
|
11071
11349
|
{
|
|
11072
11350
|
"name": "form",
|
|
@@ -11075,7 +11353,8 @@
|
|
|
11075
11353
|
},
|
|
11076
11354
|
"default": "null",
|
|
11077
11355
|
"description": "Form `id` to associate with when input is outside form element.",
|
|
11078
|
-
"fieldName": "form"
|
|
11356
|
+
"fieldName": "form",
|
|
11357
|
+
"propName": "form"
|
|
11079
11358
|
},
|
|
11080
11359
|
{
|
|
11081
11360
|
"name": "pattern",
|
|
@@ -11084,7 +11363,8 @@
|
|
|
11084
11363
|
},
|
|
11085
11364
|
"default": "\"\"",
|
|
11086
11365
|
"description": "Regex pattern for validation. Shows error on mismatch.",
|
|
11087
|
-
"fieldName": "pattern"
|
|
11366
|
+
"fieldName": "pattern",
|
|
11367
|
+
"propName": "pattern"
|
|
11088
11368
|
},
|
|
11089
11369
|
{
|
|
11090
11370
|
"name": "maxlength",
|
|
@@ -11093,7 +11373,8 @@
|
|
|
11093
11373
|
},
|
|
11094
11374
|
"default": "null",
|
|
11095
11375
|
"description": "Maximum character length.",
|
|
11096
|
-
"fieldName": "maxlength"
|
|
11376
|
+
"fieldName": "maxlength",
|
|
11377
|
+
"propName": "maxlength"
|
|
11097
11378
|
},
|
|
11098
11379
|
{
|
|
11099
11380
|
"name": "ariaLabel",
|
|
@@ -11102,7 +11383,8 @@
|
|
|
11102
11383
|
},
|
|
11103
11384
|
"default": "\"\"",
|
|
11104
11385
|
"description": "Accessible label. When set, assuming \"label\" isn't provided for private special cases (i.e., <checkbox other>).",
|
|
11105
|
-
"fieldName": "ariaLabel"
|
|
11386
|
+
"fieldName": "ariaLabel",
|
|
11387
|
+
"propName": "arialabel"
|
|
11106
11388
|
},
|
|
11107
11389
|
{
|
|
11108
11390
|
"name": "width",
|
|
@@ -11111,7 +11393,8 @@
|
|
|
11111
11393
|
},
|
|
11112
11394
|
"default": "\"full\"",
|
|
11113
11395
|
"description": "Input width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
11114
|
-
"fieldName": "width"
|
|
11396
|
+
"fieldName": "width",
|
|
11397
|
+
"propName": "width"
|
|
11115
11398
|
},
|
|
11116
11399
|
{
|
|
11117
11400
|
"name": "step",
|
|
@@ -11120,7 +11403,8 @@
|
|
|
11120
11403
|
},
|
|
11121
11404
|
"default": "null",
|
|
11122
11405
|
"description": "Step increment for `type=\"number\"`.",
|
|
11123
|
-
"fieldName": "step"
|
|
11406
|
+
"fieldName": "step",
|
|
11407
|
+
"propName": "step"
|
|
11124
11408
|
},
|
|
11125
11409
|
{
|
|
11126
11410
|
"name": "min",
|
|
@@ -11129,7 +11413,8 @@
|
|
|
11129
11413
|
},
|
|
11130
11414
|
"default": "null",
|
|
11131
11415
|
"description": "Minimum value for `type=\"number\"`.",
|
|
11132
|
-
"fieldName": "min"
|
|
11416
|
+
"fieldName": "min",
|
|
11417
|
+
"propName": "min"
|
|
11133
11418
|
},
|
|
11134
11419
|
{
|
|
11135
11420
|
"name": "max",
|
|
@@ -11138,7 +11423,8 @@
|
|
|
11138
11423
|
},
|
|
11139
11424
|
"default": "null",
|
|
11140
11425
|
"description": "Maximum value for `type=\"number\"`.",
|
|
11141
|
-
"fieldName": "max"
|
|
11426
|
+
"fieldName": "max",
|
|
11427
|
+
"propName": "max"
|
|
11142
11428
|
},
|
|
11143
11429
|
{
|
|
11144
11430
|
"name": "inverted",
|
|
@@ -11147,7 +11433,8 @@
|
|
|
11147
11433
|
},
|
|
11148
11434
|
"default": "false",
|
|
11149
11435
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11150
|
-
"fieldName": "inverted"
|
|
11436
|
+
"fieldName": "inverted",
|
|
11437
|
+
"propName": "inverted"
|
|
11151
11438
|
},
|
|
11152
11439
|
{
|
|
11153
11440
|
"name": "showError",
|
|
@@ -11156,7 +11443,8 @@
|
|
|
11156
11443
|
},
|
|
11157
11444
|
"default": "false",
|
|
11158
11445
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
11159
|
-
"fieldName": "showError"
|
|
11446
|
+
"fieldName": "showError",
|
|
11447
|
+
"propName": "showerror"
|
|
11160
11448
|
},
|
|
11161
11449
|
{
|
|
11162
11450
|
"name": "errorMessage",
|
|
@@ -11165,7 +11453,8 @@
|
|
|
11165
11453
|
},
|
|
11166
11454
|
"default": "\"\"",
|
|
11167
11455
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
11168
|
-
"fieldName": "errorMessage"
|
|
11456
|
+
"fieldName": "errorMessage",
|
|
11457
|
+
"propName": "errormessage"
|
|
11169
11458
|
}
|
|
11170
11459
|
],
|
|
11171
11460
|
"superclass": {
|
|
@@ -11454,7 +11743,8 @@
|
|
|
11454
11743
|
},
|
|
11455
11744
|
"default": "\"\"",
|
|
11456
11745
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
11457
|
-
"fieldName": "id"
|
|
11746
|
+
"fieldName": "id",
|
|
11747
|
+
"propName": "id"
|
|
11458
11748
|
},
|
|
11459
11749
|
{
|
|
11460
11750
|
"name": "name",
|
|
@@ -11463,7 +11753,8 @@
|
|
|
11463
11753
|
},
|
|
11464
11754
|
"default": "\"\"",
|
|
11465
11755
|
"description": "Name for form submission.",
|
|
11466
|
-
"fieldName": "name"
|
|
11756
|
+
"fieldName": "name",
|
|
11757
|
+
"propName": "name"
|
|
11467
11758
|
},
|
|
11468
11759
|
{
|
|
11469
11760
|
"name": "value",
|
|
@@ -11472,7 +11763,8 @@
|
|
|
11472
11763
|
},
|
|
11473
11764
|
"default": "\"\"",
|
|
11474
11765
|
"description": "Value submitted when toggle is on.",
|
|
11475
|
-
"fieldName": "value"
|
|
11766
|
+
"fieldName": "value",
|
|
11767
|
+
"propName": "value"
|
|
11476
11768
|
},
|
|
11477
11769
|
{
|
|
11478
11770
|
"name": "label",
|
|
@@ -11481,7 +11773,8 @@
|
|
|
11481
11773
|
},
|
|
11482
11774
|
"default": "\"\"",
|
|
11483
11775
|
"description": "Visible label text.",
|
|
11484
|
-
"fieldName": "label"
|
|
11776
|
+
"fieldName": "label",
|
|
11777
|
+
"propName": "label"
|
|
11485
11778
|
},
|
|
11486
11779
|
{
|
|
11487
11780
|
"name": "description",
|
|
@@ -11490,7 +11783,8 @@
|
|
|
11490
11783
|
},
|
|
11491
11784
|
"default": "\"\"",
|
|
11492
11785
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
11493
|
-
"fieldName": "description"
|
|
11786
|
+
"fieldName": "description",
|
|
11787
|
+
"propName": "description"
|
|
11494
11788
|
},
|
|
11495
11789
|
{
|
|
11496
11790
|
"name": "form",
|
|
@@ -11499,7 +11793,8 @@
|
|
|
11499
11793
|
},
|
|
11500
11794
|
"default": "null",
|
|
11501
11795
|
"description": "Form `id` to associate with.",
|
|
11502
|
-
"fieldName": "form"
|
|
11796
|
+
"fieldName": "form",
|
|
11797
|
+
"propName": "form"
|
|
11503
11798
|
},
|
|
11504
11799
|
{
|
|
11505
11800
|
"name": "checked",
|
|
@@ -11508,7 +11803,8 @@
|
|
|
11508
11803
|
},
|
|
11509
11804
|
"default": "false",
|
|
11510
11805
|
"description": "Whether toggle is on.",
|
|
11511
|
-
"fieldName": "checked"
|
|
11806
|
+
"fieldName": "checked",
|
|
11807
|
+
"propName": "checked"
|
|
11512
11808
|
},
|
|
11513
11809
|
{
|
|
11514
11810
|
"name": "disabled",
|
|
@@ -11517,7 +11813,8 @@
|
|
|
11517
11813
|
},
|
|
11518
11814
|
"default": "false",
|
|
11519
11815
|
"description": "Prevents interaction.",
|
|
11520
|
-
"fieldName": "disabled"
|
|
11816
|
+
"fieldName": "disabled",
|
|
11817
|
+
"propName": "disabled"
|
|
11521
11818
|
},
|
|
11522
11819
|
{
|
|
11523
11820
|
"name": "noIcon",
|
|
@@ -11526,7 +11823,8 @@
|
|
|
11526
11823
|
},
|
|
11527
11824
|
"default": "false",
|
|
11528
11825
|
"description": "Hides check/close icon inside toggle knob.",
|
|
11529
|
-
"fieldName": "noIcon"
|
|
11826
|
+
"fieldName": "noIcon",
|
|
11827
|
+
"propName": "noicon"
|
|
11530
11828
|
},
|
|
11531
11829
|
{
|
|
11532
11830
|
"name": "inverted",
|
|
@@ -11535,7 +11833,8 @@
|
|
|
11535
11833
|
},
|
|
11536
11834
|
"default": "false",
|
|
11537
11835
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11538
|
-
"fieldName": "inverted"
|
|
11836
|
+
"fieldName": "inverted",
|
|
11837
|
+
"propName": "inverted"
|
|
11539
11838
|
},
|
|
11540
11839
|
{
|
|
11541
11840
|
"name": "size",
|
|
@@ -11544,7 +11843,8 @@
|
|
|
11544
11843
|
},
|
|
11545
11844
|
"default": "\"md\"",
|
|
11546
11845
|
"description": "Toggle size: `sm` or `md` (default).",
|
|
11547
|
-
"fieldName": "size"
|
|
11846
|
+
"fieldName": "size",
|
|
11847
|
+
"propName": "size"
|
|
11548
11848
|
}
|
|
11549
11849
|
],
|
|
11550
11850
|
"superclass": {
|
|
@@ -11905,7 +12205,8 @@
|
|
|
11905
12205
|
},
|
|
11906
12206
|
"default": "\"\"",
|
|
11907
12207
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
11908
|
-
"fieldName": "id"
|
|
12208
|
+
"fieldName": "id",
|
|
12209
|
+
"propName": "id"
|
|
11909
12210
|
},
|
|
11910
12211
|
{
|
|
11911
12212
|
"name": "text",
|
|
@@ -11914,7 +12215,8 @@
|
|
|
11914
12215
|
},
|
|
11915
12216
|
"default": "\"\"",
|
|
11916
12217
|
"description": "Tooltip content text. Required.",
|
|
11917
|
-
"fieldName": "text"
|
|
12218
|
+
"fieldName": "text",
|
|
12219
|
+
"propName": "text"
|
|
11918
12220
|
},
|
|
11919
12221
|
{
|
|
11920
12222
|
"name": "inverted",
|
|
@@ -11923,7 +12225,8 @@
|
|
|
11923
12225
|
},
|
|
11924
12226
|
"default": "false",
|
|
11925
12227
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11926
|
-
"fieldName": "inverted"
|
|
12228
|
+
"fieldName": "inverted",
|
|
12229
|
+
"propName": "inverted"
|
|
11927
12230
|
},
|
|
11928
12231
|
{
|
|
11929
12232
|
"name": "for",
|
|
@@ -11932,13 +12235,15 @@
|
|
|
11932
12235
|
},
|
|
11933
12236
|
"default": "\"\"",
|
|
11934
12237
|
"description": "ID of the trigger element to attach this tooltip to. Required.",
|
|
11935
|
-
"fieldName": "for"
|
|
12238
|
+
"fieldName": "for",
|
|
12239
|
+
"propName": "for"
|
|
11936
12240
|
},
|
|
11937
12241
|
{
|
|
11938
12242
|
"name": "position",
|
|
11939
12243
|
"description": "Preferred position relative to trigger. Auto-adjusts if space is insufficient.",
|
|
11940
12244
|
"default": "null (auto-positioned based on available space)",
|
|
11941
|
-
"fieldName": "position"
|
|
12245
|
+
"fieldName": "position",
|
|
12246
|
+
"propName": "position"
|
|
11942
12247
|
}
|
|
11943
12248
|
],
|
|
11944
12249
|
"superclass": {
|
|
@@ -12233,7 +12538,8 @@
|
|
|
12233
12538
|
},
|
|
12234
12539
|
"default": "false",
|
|
12235
12540
|
"description": "Internal: Whether trust bar panel is expanded.",
|
|
12236
|
-
"fieldName": "trustbarVisible"
|
|
12541
|
+
"fieldName": "trustbarVisible",
|
|
12542
|
+
"propName": "trustbarvisible"
|
|
12237
12543
|
},
|
|
12238
12544
|
{
|
|
12239
12545
|
"name": "searchDropdownVisible",
|
|
@@ -12242,7 +12548,8 @@
|
|
|
12242
12548
|
},
|
|
12243
12549
|
"default": "false",
|
|
12244
12550
|
"description": "Internal: Whether search dropdown is visible (mobile).",
|
|
12245
|
-
"fieldName": "searchDropdownVisible"
|
|
12551
|
+
"fieldName": "searchDropdownVisible",
|
|
12552
|
+
"propName": "searchdropdownvisible"
|
|
12246
12553
|
},
|
|
12247
12554
|
{
|
|
12248
12555
|
"name": "languageVisible",
|
|
@@ -12251,7 +12558,8 @@
|
|
|
12251
12558
|
},
|
|
12252
12559
|
"default": "false",
|
|
12253
12560
|
"description": "Internal: Whether language dropdown is visible.",
|
|
12254
|
-
"fieldName": "languageVisible"
|
|
12561
|
+
"fieldName": "languageVisible",
|
|
12562
|
+
"propName": "languagevisible"
|
|
12255
12563
|
},
|
|
12256
12564
|
{
|
|
12257
12565
|
"name": "isSearchFocused",
|
|
@@ -12260,7 +12568,8 @@
|
|
|
12260
12568
|
},
|
|
12261
12569
|
"default": "false",
|
|
12262
12570
|
"description": "Internal: Whether search input is focused.",
|
|
12263
|
-
"fieldName": "isSearchFocused"
|
|
12571
|
+
"fieldName": "isSearchFocused",
|
|
12572
|
+
"propName": "issearchfocused"
|
|
12264
12573
|
},
|
|
12265
12574
|
{
|
|
12266
12575
|
"name": "hideTranslate",
|
|
@@ -12269,7 +12578,8 @@
|
|
|
12269
12578
|
},
|
|
12270
12579
|
"default": "false",
|
|
12271
12580
|
"description": "Hides the translation dropdown.",
|
|
12272
|
-
"fieldName": "hideTranslate"
|
|
12581
|
+
"fieldName": "hideTranslate",
|
|
12582
|
+
"propName": "hidetranslate"
|
|
12273
12583
|
},
|
|
12274
12584
|
{
|
|
12275
12585
|
"name": "hideSearch",
|
|
@@ -12278,7 +12588,8 @@
|
|
|
12278
12588
|
},
|
|
12279
12589
|
"default": "false",
|
|
12280
12590
|
"description": "Hides the search functionality.",
|
|
12281
|
-
"fieldName": "hideSearch"
|
|
12591
|
+
"fieldName": "hideSearch",
|
|
12592
|
+
"propName": "hidesearch"
|
|
12282
12593
|
},
|
|
12283
12594
|
{
|
|
12284
12595
|
"name": "searchUrl",
|
|
@@ -12287,7 +12598,8 @@
|
|
|
12287
12598
|
},
|
|
12288
12599
|
"default": "\"\"",
|
|
12289
12600
|
"description": "The URL endpoint of the search, make sure to include the query param.",
|
|
12290
|
-
"fieldName": "searchUrl"
|
|
12601
|
+
"fieldName": "searchUrl",
|
|
12602
|
+
"propName": "searchurl"
|
|
12291
12603
|
},
|
|
12292
12604
|
{
|
|
12293
12605
|
"name": "languages",
|
|
@@ -12296,7 +12608,8 @@
|
|
|
12296
12608
|
},
|
|
12297
12609
|
"default": "[ { code: \"en\", label: \"English\" }, { code: \"es\", label: \"Español\" }, { code: \"zh\", label: \"中文\" }, { code: \"zh-traditional\", label: \"繁體中文\" }, { code: \"yi\", label: \"יידיש\" }, { code: \"ru\", label: \"Русский\" }, { code: \"bn\", label: \"বাংলা\" }, { code: \"ko\", label: \"한국어\" }, { code: \"ht\", label: \"Kreyòl Ayisyen\" }, { code: \"it\", label: \"Italiano\" }, { code: \"ar\", label: \"العربية\" }, { code: \"pl\", label: \"Polski\" }, { code: \"fr\", label: \"Français\" }, { code: \"ur\", label: \"اردو\" }, ]",
|
|
12298
12610
|
"description": "The list of languages this site can be translated to, default to use Smartling",
|
|
12299
|
-
"fieldName": "languages"
|
|
12611
|
+
"fieldName": "languages",
|
|
12612
|
+
"propName": "languages"
|
|
12300
12613
|
}
|
|
12301
12614
|
],
|
|
12302
12615
|
"superclass": {
|