@nysds/components 1.15.0 → 1.15.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 +671 -317
- package/dist/.vscode/vscode.html-custom-data.json +1 -1
- package/dist/custom-elements.json +671 -317
- package/dist/nysds.es.js +779 -724
- package/dist/nysds.es.js.map +1 -1
- package/dist/nysds.js +37 -37
- package/dist/nysds.js.map +1 -1
- package/dist/packages/nys-dropdownmenu/src/nys-dropdownmenu.d.ts +1 -1
- package/dist/packages/nys-globalheader/src/nys-globalheader.d.ts +4 -2
- package/dist/packages/nys-table/src/nys-table.d.ts +12 -1
- package/package.json +19 -10
- 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 +80 -0
- package/packages/react/NysTable.js +41 -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 +40 -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": {
|
|
@@ -6351,21 +6507,23 @@
|
|
|
6351
6507
|
},
|
|
6352
6508
|
{
|
|
6353
6509
|
"kind": "field",
|
|
6354
|
-
"name": "
|
|
6510
|
+
"name": "_isMobileMenuOpen",
|
|
6355
6511
|
"type": {
|
|
6356
6512
|
"text": "boolean"
|
|
6357
6513
|
},
|
|
6358
6514
|
"privacy": "private",
|
|
6359
|
-
"default": "false"
|
|
6515
|
+
"default": "false",
|
|
6516
|
+
"description": "Internal state to track mobile menu open/closed status."
|
|
6360
6517
|
},
|
|
6361
6518
|
{
|
|
6362
6519
|
"kind": "field",
|
|
6363
|
-
"name": "
|
|
6520
|
+
"name": "_hasLinkContent",
|
|
6364
6521
|
"type": {
|
|
6365
6522
|
"text": "boolean"
|
|
6366
6523
|
},
|
|
6367
6524
|
"privacy": "private",
|
|
6368
|
-
"default": "false"
|
|
6525
|
+
"default": "false",
|
|
6526
|
+
"description": "Internal state to track if any navigation links are present in the slot."
|
|
6369
6527
|
},
|
|
6370
6528
|
{
|
|
6371
6529
|
"kind": "method",
|
|
@@ -6423,7 +6581,8 @@
|
|
|
6423
6581
|
},
|
|
6424
6582
|
"default": "\"\"",
|
|
6425
6583
|
"description": "Application name displayed prominently.",
|
|
6426
|
-
"fieldName": "appName"
|
|
6584
|
+
"fieldName": "appName",
|
|
6585
|
+
"propName": "appname"
|
|
6427
6586
|
},
|
|
6428
6587
|
{
|
|
6429
6588
|
"name": "agencyName",
|
|
@@ -6432,7 +6591,8 @@
|
|
|
6432
6591
|
},
|
|
6433
6592
|
"default": "\"\"",
|
|
6434
6593
|
"description": "Agency name displayed below app name (or as main title if no appName).",
|
|
6435
|
-
"fieldName": "agencyName"
|
|
6594
|
+
"fieldName": "agencyName",
|
|
6595
|
+
"propName": "agencyname"
|
|
6436
6596
|
},
|
|
6437
6597
|
{
|
|
6438
6598
|
"name": "homepageLink",
|
|
@@ -6441,7 +6601,8 @@
|
|
|
6441
6601
|
},
|
|
6442
6602
|
"default": "\"\"",
|
|
6443
6603
|
"description": "URL for the header title link. If empty, title is not clickable.",
|
|
6444
|
-
"fieldName": "homepageLink"
|
|
6604
|
+
"fieldName": "homepageLink",
|
|
6605
|
+
"propName": "homepagelink"
|
|
6445
6606
|
}
|
|
6446
6607
|
],
|
|
6447
6608
|
"superclass": {
|
|
@@ -6577,7 +6738,8 @@
|
|
|
6577
6738
|
},
|
|
6578
6739
|
"default": "\"\"",
|
|
6579
6740
|
"description": "Icon name from Material Symbols library. Required.",
|
|
6580
|
-
"fieldName": "name"
|
|
6741
|
+
"fieldName": "name",
|
|
6742
|
+
"propName": "name"
|
|
6581
6743
|
},
|
|
6582
6744
|
{
|
|
6583
6745
|
"name": "ariaLabel",
|
|
@@ -6586,7 +6748,8 @@
|
|
|
6586
6748
|
},
|
|
6587
6749
|
"default": "\"\"",
|
|
6588
6750
|
"description": "Accessible label. When set, removes `aria-hidden` and adds `aria-label` to the SVG.",
|
|
6589
|
-
"fieldName": "ariaLabel"
|
|
6751
|
+
"fieldName": "ariaLabel",
|
|
6752
|
+
"propName": "arialabel"
|
|
6590
6753
|
},
|
|
6591
6754
|
{
|
|
6592
6755
|
"name": "rotate",
|
|
@@ -6595,7 +6758,8 @@
|
|
|
6595
6758
|
},
|
|
6596
6759
|
"default": "\"0\"",
|
|
6597
6760
|
"description": "Rotation in degrees. Applied via CSS `rotate`.",
|
|
6598
|
-
"fieldName": "rotate"
|
|
6761
|
+
"fieldName": "rotate",
|
|
6762
|
+
"propName": "rotate"
|
|
6599
6763
|
},
|
|
6600
6764
|
{
|
|
6601
6765
|
"name": "flip",
|
|
@@ -6604,7 +6768,8 @@
|
|
|
6604
6768
|
},
|
|
6605
6769
|
"default": "\"\"",
|
|
6606
6770
|
"description": "Flip direction: `horizontal`, `vertical`, or empty for none.",
|
|
6607
|
-
"fieldName": "flip"
|
|
6771
|
+
"fieldName": "flip",
|
|
6772
|
+
"propName": "flip"
|
|
6608
6773
|
},
|
|
6609
6774
|
{
|
|
6610
6775
|
"name": "color",
|
|
@@ -6613,7 +6778,8 @@
|
|
|
6613
6778
|
},
|
|
6614
6779
|
"default": "\"\"",
|
|
6615
6780
|
"description": "Icon color. Accepts any CSS color value. Defaults to `currentcolor`.",
|
|
6616
|
-
"fieldName": "color"
|
|
6781
|
+
"fieldName": "color",
|
|
6782
|
+
"propName": "color"
|
|
6617
6783
|
},
|
|
6618
6784
|
{
|
|
6619
6785
|
"name": "size",
|
|
@@ -6622,7 +6788,8 @@
|
|
|
6622
6788
|
},
|
|
6623
6789
|
"default": "\"md\"",
|
|
6624
6790
|
"description": "Icon size. Semantic sizes: `xs`-`5xl`. Pixel sizes: `12`-`50`.",
|
|
6625
|
-
"fieldName": "size"
|
|
6791
|
+
"fieldName": "size",
|
|
6792
|
+
"propName": "size"
|
|
6626
6793
|
}
|
|
6627
6794
|
],
|
|
6628
6795
|
"superclass": {
|
|
@@ -6772,7 +6939,8 @@
|
|
|
6772
6939
|
},
|
|
6773
6940
|
"default": "\"\"",
|
|
6774
6941
|
"description": "ID of the form element this label is associated with.",
|
|
6775
|
-
"fieldName": "for"
|
|
6942
|
+
"fieldName": "for",
|
|
6943
|
+
"propName": "for"
|
|
6776
6944
|
},
|
|
6777
6945
|
{
|
|
6778
6946
|
"name": "label",
|
|
@@ -6781,7 +6949,8 @@
|
|
|
6781
6949
|
},
|
|
6782
6950
|
"default": "\"\"",
|
|
6783
6951
|
"description": "Label text displayed above the form field.",
|
|
6784
|
-
"fieldName": "label"
|
|
6952
|
+
"fieldName": "label",
|
|
6953
|
+
"propName": "label"
|
|
6785
6954
|
},
|
|
6786
6955
|
{
|
|
6787
6956
|
"name": "description",
|
|
@@ -6790,7 +6959,8 @@
|
|
|
6790
6959
|
},
|
|
6791
6960
|
"default": "\"\"",
|
|
6792
6961
|
"description": "Helper text displayed below the label.",
|
|
6793
|
-
"fieldName": "description"
|
|
6962
|
+
"fieldName": "description",
|
|
6963
|
+
"propName": "description"
|
|
6794
6964
|
},
|
|
6795
6965
|
{
|
|
6796
6966
|
"name": "flag",
|
|
@@ -6799,7 +6969,8 @@
|
|
|
6799
6969
|
},
|
|
6800
6970
|
"default": "\"\"",
|
|
6801
6971
|
"description": "Flag type: `required` shows asterisk, `optional` shows \"(Optional)\".",
|
|
6802
|
-
"fieldName": "flag"
|
|
6972
|
+
"fieldName": "flag",
|
|
6973
|
+
"propName": "flag"
|
|
6803
6974
|
},
|
|
6804
6975
|
{
|
|
6805
6976
|
"name": "inverted",
|
|
@@ -6808,12 +6979,14 @@
|
|
|
6808
6979
|
},
|
|
6809
6980
|
"default": "false",
|
|
6810
6981
|
"description": "Adjusts colors for dark backgrounds.",
|
|
6811
|
-
"fieldName": "inverted"
|
|
6982
|
+
"fieldName": "inverted",
|
|
6983
|
+
"propName": "inverted"
|
|
6812
6984
|
},
|
|
6813
6985
|
{
|
|
6814
6986
|
"name": "tooltip",
|
|
6815
6987
|
"description": "Tooltip text shown on hover/focus of info icon next to label.",
|
|
6816
|
-
"fieldName": "tooltip"
|
|
6988
|
+
"fieldName": "tooltip",
|
|
6989
|
+
"propName": "tooltip"
|
|
6817
6990
|
}
|
|
6818
6991
|
],
|
|
6819
6992
|
"superclass": {
|
|
@@ -7093,7 +7266,8 @@
|
|
|
7093
7266
|
},
|
|
7094
7267
|
"default": "\"\"",
|
|
7095
7268
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7096
|
-
"fieldName": "id"
|
|
7269
|
+
"fieldName": "id",
|
|
7270
|
+
"propName": "id"
|
|
7097
7271
|
},
|
|
7098
7272
|
{
|
|
7099
7273
|
"name": "heading",
|
|
@@ -7102,7 +7276,8 @@
|
|
|
7102
7276
|
},
|
|
7103
7277
|
"default": "\"\"",
|
|
7104
7278
|
"description": "Modal heading text. Required for accessibility.",
|
|
7105
|
-
"fieldName": "heading"
|
|
7279
|
+
"fieldName": "heading",
|
|
7280
|
+
"propName": "heading"
|
|
7106
7281
|
},
|
|
7107
7282
|
{
|
|
7108
7283
|
"name": "subheading",
|
|
@@ -7111,7 +7286,8 @@
|
|
|
7111
7286
|
},
|
|
7112
7287
|
"default": "\"\"",
|
|
7113
7288
|
"description": "Secondary heading below the main heading.",
|
|
7114
|
-
"fieldName": "subheading"
|
|
7289
|
+
"fieldName": "subheading",
|
|
7290
|
+
"propName": "subheading"
|
|
7115
7291
|
},
|
|
7116
7292
|
{
|
|
7117
7293
|
"name": "open",
|
|
@@ -7120,7 +7296,8 @@
|
|
|
7120
7296
|
},
|
|
7121
7297
|
"default": "false",
|
|
7122
7298
|
"description": "Controls modal visibility. Set to `true` to show.",
|
|
7123
|
-
"fieldName": "open"
|
|
7299
|
+
"fieldName": "open",
|
|
7300
|
+
"propName": "open"
|
|
7124
7301
|
},
|
|
7125
7302
|
{
|
|
7126
7303
|
"name": "mandatory",
|
|
@@ -7129,7 +7306,8 @@
|
|
|
7129
7306
|
},
|
|
7130
7307
|
"default": "false",
|
|
7131
7308
|
"description": "Prevents dismissal via close button or Escape key. User must take an action.",
|
|
7132
|
-
"fieldName": "mandatory"
|
|
7309
|
+
"fieldName": "mandatory",
|
|
7310
|
+
"propName": "mandatory"
|
|
7133
7311
|
},
|
|
7134
7312
|
{
|
|
7135
7313
|
"name": "width",
|
|
@@ -7138,7 +7316,8 @@
|
|
|
7138
7316
|
},
|
|
7139
7317
|
"default": "\"md\"",
|
|
7140
7318
|
"description": "Modal width: `sm` (400px), `md` (600px), or `lg` (800px).",
|
|
7141
|
-
"fieldName": "width"
|
|
7319
|
+
"fieldName": "width",
|
|
7320
|
+
"propName": "width"
|
|
7142
7321
|
}
|
|
7143
7322
|
],
|
|
7144
7323
|
"superclass": {
|
|
@@ -7304,7 +7483,8 @@
|
|
|
7304
7483
|
},
|
|
7305
7484
|
"default": "\"\"",
|
|
7306
7485
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7307
|
-
"fieldName": "id"
|
|
7486
|
+
"fieldName": "id",
|
|
7487
|
+
"propName": "id"
|
|
7308
7488
|
},
|
|
7309
7489
|
{
|
|
7310
7490
|
"name": "name",
|
|
@@ -7313,7 +7493,8 @@
|
|
|
7313
7493
|
},
|
|
7314
7494
|
"default": "\"\"",
|
|
7315
7495
|
"description": "Name attribute for form association.",
|
|
7316
|
-
"fieldName": "name"
|
|
7496
|
+
"fieldName": "name",
|
|
7497
|
+
"propName": "name"
|
|
7317
7498
|
},
|
|
7318
7499
|
{
|
|
7319
7500
|
"name": "currentPage",
|
|
@@ -7322,7 +7503,8 @@
|
|
|
7322
7503
|
},
|
|
7323
7504
|
"default": "1",
|
|
7324
7505
|
"description": "Currently active page (1-indexed). Clamped to valid range.",
|
|
7325
|
-
"fieldName": "currentPage"
|
|
7506
|
+
"fieldName": "currentPage",
|
|
7507
|
+
"propName": "currentpage"
|
|
7326
7508
|
},
|
|
7327
7509
|
{
|
|
7328
7510
|
"name": "totalPages",
|
|
@@ -7331,7 +7513,8 @@
|
|
|
7331
7513
|
},
|
|
7332
7514
|
"default": "1",
|
|
7333
7515
|
"description": "Total number of pages. Must be at least 1.",
|
|
7334
|
-
"fieldName": "totalPages"
|
|
7516
|
+
"fieldName": "totalPages",
|
|
7517
|
+
"propName": "totalpages"
|
|
7335
7518
|
},
|
|
7336
7519
|
{
|
|
7337
7520
|
"name": "_twoBeforeLast",
|
|
@@ -7340,7 +7523,8 @@
|
|
|
7340
7523
|
},
|
|
7341
7524
|
"default": "false",
|
|
7342
7525
|
"description": "Internal state for layout adjustments near the end.",
|
|
7343
|
-
"fieldName": "_twoBeforeLast"
|
|
7526
|
+
"fieldName": "_twoBeforeLast",
|
|
7527
|
+
"propName": "_twobeforelast"
|
|
7344
7528
|
}
|
|
7345
7529
|
],
|
|
7346
7530
|
"superclass": {
|
|
@@ -7733,7 +7917,8 @@
|
|
|
7733
7917
|
},
|
|
7734
7918
|
"default": "false",
|
|
7735
7919
|
"description": "Whether this radio is selected. Only one per group can be checked.",
|
|
7736
|
-
"fieldName": "checked"
|
|
7920
|
+
"fieldName": "checked",
|
|
7921
|
+
"propName": "checked"
|
|
7737
7922
|
},
|
|
7738
7923
|
{
|
|
7739
7924
|
"name": "disabled",
|
|
@@ -7742,7 +7927,8 @@
|
|
|
7742
7927
|
},
|
|
7743
7928
|
"default": "false",
|
|
7744
7929
|
"description": "Prevents interaction.",
|
|
7745
|
-
"fieldName": "disabled"
|
|
7930
|
+
"fieldName": "disabled",
|
|
7931
|
+
"propName": "disabled"
|
|
7746
7932
|
},
|
|
7747
7933
|
{
|
|
7748
7934
|
"name": "required",
|
|
@@ -7751,7 +7937,8 @@
|
|
|
7751
7937
|
},
|
|
7752
7938
|
"default": "false",
|
|
7753
7939
|
"description": "Marks group as required. Set on radiogroup, not individual radios.",
|
|
7754
|
-
"fieldName": "required"
|
|
7940
|
+
"fieldName": "required",
|
|
7941
|
+
"propName": "required"
|
|
7755
7942
|
},
|
|
7756
7943
|
{
|
|
7757
7944
|
"name": "label",
|
|
@@ -7760,7 +7947,8 @@
|
|
|
7760
7947
|
},
|
|
7761
7948
|
"default": "\"\"",
|
|
7762
7949
|
"description": "Visible label text. Required for accessibility.",
|
|
7763
|
-
"fieldName": "label"
|
|
7950
|
+
"fieldName": "label",
|
|
7951
|
+
"propName": "label"
|
|
7764
7952
|
},
|
|
7765
7953
|
{
|
|
7766
7954
|
"name": "description",
|
|
@@ -7769,7 +7957,8 @@
|
|
|
7769
7957
|
},
|
|
7770
7958
|
"default": "\"\"",
|
|
7771
7959
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
7772
|
-
"fieldName": "description"
|
|
7960
|
+
"fieldName": "description",
|
|
7961
|
+
"propName": "description"
|
|
7773
7962
|
},
|
|
7774
7963
|
{
|
|
7775
7964
|
"name": "id",
|
|
@@ -7778,7 +7967,8 @@
|
|
|
7778
7967
|
},
|
|
7779
7968
|
"default": "\"\"",
|
|
7780
7969
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
7781
|
-
"fieldName": "id"
|
|
7970
|
+
"fieldName": "id",
|
|
7971
|
+
"propName": "id"
|
|
7782
7972
|
},
|
|
7783
7973
|
{
|
|
7784
7974
|
"name": "name",
|
|
@@ -7787,7 +7977,8 @@
|
|
|
7787
7977
|
},
|
|
7788
7978
|
"default": "\"\"",
|
|
7789
7979
|
"description": "Group name. Radios with same name are mutually exclusive.",
|
|
7790
|
-
"fieldName": "name"
|
|
7980
|
+
"fieldName": "name",
|
|
7981
|
+
"propName": "name"
|
|
7791
7982
|
},
|
|
7792
7983
|
{
|
|
7793
7984
|
"name": "value",
|
|
@@ -7796,7 +7987,8 @@
|
|
|
7796
7987
|
},
|
|
7797
7988
|
"default": "\"\"",
|
|
7798
7989
|
"description": "Value submitted when this radio is selected.",
|
|
7799
|
-
"fieldName": "value"
|
|
7990
|
+
"fieldName": "value",
|
|
7991
|
+
"propName": "value"
|
|
7800
7992
|
},
|
|
7801
7993
|
{
|
|
7802
7994
|
"name": "inverted",
|
|
@@ -7805,7 +7997,8 @@
|
|
|
7805
7997
|
},
|
|
7806
7998
|
"default": "false",
|
|
7807
7999
|
"description": "Adjusts colors for dark backgrounds.",
|
|
7808
|
-
"fieldName": "inverted"
|
|
8000
|
+
"fieldName": "inverted",
|
|
8001
|
+
"propName": "inverted"
|
|
7809
8002
|
},
|
|
7810
8003
|
{
|
|
7811
8004
|
"name": "form",
|
|
@@ -7814,7 +8007,8 @@
|
|
|
7814
8007
|
},
|
|
7815
8008
|
"default": "null",
|
|
7816
8009
|
"description": "Form `id` to associate with.",
|
|
7817
|
-
"fieldName": "form"
|
|
8010
|
+
"fieldName": "form",
|
|
8011
|
+
"propName": "form"
|
|
7818
8012
|
},
|
|
7819
8013
|
{
|
|
7820
8014
|
"name": "size",
|
|
@@ -7823,7 +8017,8 @@
|
|
|
7823
8017
|
},
|
|
7824
8018
|
"default": "\"md\"",
|
|
7825
8019
|
"description": "Radio size: `sm` (24px) or `md` (32px, default).",
|
|
7826
|
-
"fieldName": "size"
|
|
8020
|
+
"fieldName": "size",
|
|
8021
|
+
"propName": "size"
|
|
7827
8022
|
},
|
|
7828
8023
|
{
|
|
7829
8024
|
"name": "tile",
|
|
@@ -7832,7 +8027,8 @@
|
|
|
7832
8027
|
},
|
|
7833
8028
|
"default": "false",
|
|
7834
8029
|
"description": "Renders as tile with larger clickable area.",
|
|
7835
|
-
"fieldName": "tile"
|
|
8030
|
+
"fieldName": "tile",
|
|
8031
|
+
"propName": "tile"
|
|
7836
8032
|
},
|
|
7837
8033
|
{
|
|
7838
8034
|
"name": "other",
|
|
@@ -7840,7 +8036,8 @@
|
|
|
7840
8036
|
"text": "boolean"
|
|
7841
8037
|
},
|
|
7842
8038
|
"default": "false",
|
|
7843
|
-
"fieldName": "other"
|
|
8039
|
+
"fieldName": "other",
|
|
8040
|
+
"propName": "other"
|
|
7844
8041
|
},
|
|
7845
8042
|
{
|
|
7846
8043
|
"name": "showOtherError",
|
|
@@ -7848,7 +8045,8 @@
|
|
|
7848
8045
|
"text": "boolean"
|
|
7849
8046
|
},
|
|
7850
8047
|
"default": "false",
|
|
7851
|
-
"fieldName": "showOtherError"
|
|
8048
|
+
"fieldName": "showOtherError",
|
|
8049
|
+
"propName": "showothererror"
|
|
7852
8050
|
}
|
|
7853
8051
|
],
|
|
7854
8052
|
"superclass": {
|
|
@@ -8220,7 +8418,8 @@
|
|
|
8220
8418
|
},
|
|
8221
8419
|
"default": "\"\"",
|
|
8222
8420
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
8223
|
-
"fieldName": "id"
|
|
8421
|
+
"fieldName": "id",
|
|
8422
|
+
"propName": "id"
|
|
8224
8423
|
},
|
|
8225
8424
|
{
|
|
8226
8425
|
"name": "name",
|
|
@@ -8229,7 +8428,8 @@
|
|
|
8229
8428
|
},
|
|
8230
8429
|
"default": "\"\"",
|
|
8231
8430
|
"description": "Name for form submission. Auto-populated from child radiobuttons.",
|
|
8232
|
-
"fieldName": "name"
|
|
8431
|
+
"fieldName": "name",
|
|
8432
|
+
"propName": "name"
|
|
8233
8433
|
},
|
|
8234
8434
|
{
|
|
8235
8435
|
"name": "required",
|
|
@@ -8238,7 +8438,8 @@
|
|
|
8238
8438
|
},
|
|
8239
8439
|
"default": "false",
|
|
8240
8440
|
"description": "Requires a selection before form submission.",
|
|
8241
|
-
"fieldName": "required"
|
|
8441
|
+
"fieldName": "required",
|
|
8442
|
+
"propName": "required"
|
|
8242
8443
|
},
|
|
8243
8444
|
{
|
|
8244
8445
|
"name": "optional",
|
|
@@ -8247,7 +8448,8 @@
|
|
|
8247
8448
|
},
|
|
8248
8449
|
"default": "false",
|
|
8249
8450
|
"description": "Shows \"Optional\" flag.",
|
|
8250
|
-
"fieldName": "optional"
|
|
8451
|
+
"fieldName": "optional",
|
|
8452
|
+
"propName": "optional"
|
|
8251
8453
|
},
|
|
8252
8454
|
{
|
|
8253
8455
|
"name": "showError",
|
|
@@ -8256,7 +8458,8 @@
|
|
|
8256
8458
|
},
|
|
8257
8459
|
"default": "false",
|
|
8258
8460
|
"description": "Shows error message when true.",
|
|
8259
|
-
"fieldName": "showError"
|
|
8461
|
+
"fieldName": "showError",
|
|
8462
|
+
"propName": "showerror"
|
|
8260
8463
|
},
|
|
8261
8464
|
{
|
|
8262
8465
|
"name": "errorMessage",
|
|
@@ -8265,7 +8468,8 @@
|
|
|
8265
8468
|
},
|
|
8266
8469
|
"default": "\"\"",
|
|
8267
8470
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
8268
|
-
"fieldName": "errorMessage"
|
|
8471
|
+
"fieldName": "errorMessage",
|
|
8472
|
+
"propName": "errormessage"
|
|
8269
8473
|
},
|
|
8270
8474
|
{
|
|
8271
8475
|
"name": "label",
|
|
@@ -8274,7 +8478,8 @@
|
|
|
8274
8478
|
},
|
|
8275
8479
|
"default": "\"\"",
|
|
8276
8480
|
"description": "Visible label text for the group.",
|
|
8277
|
-
"fieldName": "label"
|
|
8481
|
+
"fieldName": "label",
|
|
8482
|
+
"propName": "label"
|
|
8278
8483
|
},
|
|
8279
8484
|
{
|
|
8280
8485
|
"name": "description",
|
|
@@ -8283,7 +8488,8 @@
|
|
|
8283
8488
|
},
|
|
8284
8489
|
"default": "\"\"",
|
|
8285
8490
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
8286
|
-
"fieldName": "description"
|
|
8491
|
+
"fieldName": "description",
|
|
8492
|
+
"propName": "description"
|
|
8287
8493
|
},
|
|
8288
8494
|
{
|
|
8289
8495
|
"name": "tile",
|
|
@@ -8292,7 +8498,8 @@
|
|
|
8292
8498
|
},
|
|
8293
8499
|
"default": "false",
|
|
8294
8500
|
"description": "Renders all radiobuttons as tiles with larger clickable area.",
|
|
8295
|
-
"fieldName": "tile"
|
|
8501
|
+
"fieldName": "tile",
|
|
8502
|
+
"propName": "tile"
|
|
8296
8503
|
},
|
|
8297
8504
|
{
|
|
8298
8505
|
"name": "tooltip",
|
|
@@ -8301,7 +8508,8 @@
|
|
|
8301
8508
|
},
|
|
8302
8509
|
"default": "\"\"",
|
|
8303
8510
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
8304
|
-
"fieldName": "tooltip"
|
|
8511
|
+
"fieldName": "tooltip",
|
|
8512
|
+
"propName": "tooltip"
|
|
8305
8513
|
},
|
|
8306
8514
|
{
|
|
8307
8515
|
"name": "inverted",
|
|
@@ -8310,7 +8518,8 @@
|
|
|
8310
8518
|
},
|
|
8311
8519
|
"default": "false",
|
|
8312
8520
|
"description": "Adjusts colors for dark backgrounds. Applied to all children.",
|
|
8313
|
-
"fieldName": "inverted"
|
|
8521
|
+
"fieldName": "inverted",
|
|
8522
|
+
"propName": "inverted"
|
|
8314
8523
|
},
|
|
8315
8524
|
{
|
|
8316
8525
|
"name": "form",
|
|
@@ -8319,7 +8528,8 @@
|
|
|
8319
8528
|
},
|
|
8320
8529
|
"default": "null",
|
|
8321
8530
|
"description": "Form `id` to associate with. Applied to all children.",
|
|
8322
|
-
"fieldName": "form"
|
|
8531
|
+
"fieldName": "form",
|
|
8532
|
+
"propName": "form"
|
|
8323
8533
|
},
|
|
8324
8534
|
{
|
|
8325
8535
|
"name": "size",
|
|
@@ -8328,7 +8538,8 @@
|
|
|
8328
8538
|
},
|
|
8329
8539
|
"default": "\"md\"",
|
|
8330
8540
|
"description": "Radio size for all children: `sm` (24px) or `md` (32px, default).",
|
|
8331
|
-
"fieldName": "size"
|
|
8541
|
+
"fieldName": "size",
|
|
8542
|
+
"propName": "size"
|
|
8332
8543
|
}
|
|
8333
8544
|
],
|
|
8334
8545
|
"superclass": {
|
|
@@ -8459,7 +8670,8 @@
|
|
|
8459
8670
|
},
|
|
8460
8671
|
"default": "false",
|
|
8461
8672
|
"description": "Prevents selection of this option.",
|
|
8462
|
-
"fieldName": "disabled"
|
|
8673
|
+
"fieldName": "disabled",
|
|
8674
|
+
"propName": "disabled"
|
|
8463
8675
|
},
|
|
8464
8676
|
{
|
|
8465
8677
|
"name": "selected",
|
|
@@ -8468,7 +8680,8 @@
|
|
|
8468
8680
|
},
|
|
8469
8681
|
"default": "false",
|
|
8470
8682
|
"description": "Pre-selects this option.",
|
|
8471
|
-
"fieldName": "selected"
|
|
8683
|
+
"fieldName": "selected",
|
|
8684
|
+
"propName": "selected"
|
|
8472
8685
|
},
|
|
8473
8686
|
{
|
|
8474
8687
|
"name": "value",
|
|
@@ -8477,7 +8690,8 @@
|
|
|
8477
8690
|
},
|
|
8478
8691
|
"default": "\"\"",
|
|
8479
8692
|
"description": "Value submitted when this option is selected.",
|
|
8480
|
-
"fieldName": "value"
|
|
8693
|
+
"fieldName": "value",
|
|
8694
|
+
"propName": "value"
|
|
8481
8695
|
},
|
|
8482
8696
|
{
|
|
8483
8697
|
"name": "label",
|
|
@@ -8486,7 +8700,8 @@
|
|
|
8486
8700
|
},
|
|
8487
8701
|
"default": "\"\"",
|
|
8488
8702
|
"description": "Display text for the option. Auto-populated from slot content if not set.",
|
|
8489
|
-
"fieldName": "label"
|
|
8703
|
+
"fieldName": "label",
|
|
8704
|
+
"propName": "label"
|
|
8490
8705
|
},
|
|
8491
8706
|
{
|
|
8492
8707
|
"name": "hidden",
|
|
@@ -8495,7 +8710,8 @@
|
|
|
8495
8710
|
},
|
|
8496
8711
|
"default": "false",
|
|
8497
8712
|
"description": "Hides the option from the dropdown list.",
|
|
8498
|
-
"fieldName": "hidden"
|
|
8713
|
+
"fieldName": "hidden",
|
|
8714
|
+
"propName": "hidden"
|
|
8499
8715
|
}
|
|
8500
8716
|
],
|
|
8501
8717
|
"superclass": {
|
|
@@ -8858,7 +9074,8 @@
|
|
|
8858
9074
|
},
|
|
8859
9075
|
"default": "\"\"",
|
|
8860
9076
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
8861
|
-
"fieldName": "id"
|
|
9077
|
+
"fieldName": "id",
|
|
9078
|
+
"propName": "id"
|
|
8862
9079
|
},
|
|
8863
9080
|
{
|
|
8864
9081
|
"name": "name",
|
|
@@ -8867,7 +9084,8 @@
|
|
|
8867
9084
|
},
|
|
8868
9085
|
"default": "\"\"",
|
|
8869
9086
|
"description": "Name for form submission.",
|
|
8870
|
-
"fieldName": "name"
|
|
9087
|
+
"fieldName": "name",
|
|
9088
|
+
"propName": "name"
|
|
8871
9089
|
},
|
|
8872
9090
|
{
|
|
8873
9091
|
"name": "label",
|
|
@@ -8876,7 +9094,8 @@
|
|
|
8876
9094
|
},
|
|
8877
9095
|
"default": "\"\"",
|
|
8878
9096
|
"description": "Visible label text. Required for accessibility.",
|
|
8879
|
-
"fieldName": "label"
|
|
9097
|
+
"fieldName": "label",
|
|
9098
|
+
"propName": "label"
|
|
8880
9099
|
},
|
|
8881
9100
|
{
|
|
8882
9101
|
"name": "description",
|
|
@@ -8885,7 +9104,8 @@
|
|
|
8885
9104
|
},
|
|
8886
9105
|
"default": "\"\"",
|
|
8887
9106
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
8888
|
-
"fieldName": "description"
|
|
9107
|
+
"fieldName": "description",
|
|
9108
|
+
"propName": "description"
|
|
8889
9109
|
},
|
|
8890
9110
|
{
|
|
8891
9111
|
"name": "value",
|
|
@@ -8894,7 +9114,8 @@
|
|
|
8894
9114
|
},
|
|
8895
9115
|
"default": "\"\"",
|
|
8896
9116
|
"description": "Currently selected option value.",
|
|
8897
|
-
"fieldName": "value"
|
|
9117
|
+
"fieldName": "value",
|
|
9118
|
+
"propName": "value"
|
|
8898
9119
|
},
|
|
8899
9120
|
{
|
|
8900
9121
|
"name": "disabled",
|
|
@@ -8903,7 +9124,8 @@
|
|
|
8903
9124
|
},
|
|
8904
9125
|
"default": "false",
|
|
8905
9126
|
"description": "Prevents interaction.",
|
|
8906
|
-
"fieldName": "disabled"
|
|
9127
|
+
"fieldName": "disabled",
|
|
9128
|
+
"propName": "disabled"
|
|
8907
9129
|
},
|
|
8908
9130
|
{
|
|
8909
9131
|
"name": "required",
|
|
@@ -8912,7 +9134,8 @@
|
|
|
8912
9134
|
},
|
|
8913
9135
|
"default": "false",
|
|
8914
9136
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
8915
|
-
"fieldName": "required"
|
|
9137
|
+
"fieldName": "required",
|
|
9138
|
+
"propName": "required"
|
|
8916
9139
|
},
|
|
8917
9140
|
{
|
|
8918
9141
|
"name": "optional",
|
|
@@ -8921,7 +9144,8 @@
|
|
|
8921
9144
|
},
|
|
8922
9145
|
"default": "false",
|
|
8923
9146
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
8924
|
-
"fieldName": "optional"
|
|
9147
|
+
"fieldName": "optional",
|
|
9148
|
+
"propName": "optional"
|
|
8925
9149
|
},
|
|
8926
9150
|
{
|
|
8927
9151
|
"name": "tooltip",
|
|
@@ -8930,7 +9154,8 @@
|
|
|
8930
9154
|
},
|
|
8931
9155
|
"default": "\"\"",
|
|
8932
9156
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
8933
|
-
"fieldName": "tooltip"
|
|
9157
|
+
"fieldName": "tooltip",
|
|
9158
|
+
"propName": "tooltip"
|
|
8934
9159
|
},
|
|
8935
9160
|
{
|
|
8936
9161
|
"name": "form",
|
|
@@ -8939,7 +9164,8 @@
|
|
|
8939
9164
|
},
|
|
8940
9165
|
"default": "null",
|
|
8941
9166
|
"description": "Form `id` to associate with when select is outside form element.",
|
|
8942
|
-
"fieldName": "form"
|
|
9167
|
+
"fieldName": "form",
|
|
9168
|
+
"propName": "form"
|
|
8943
9169
|
},
|
|
8944
9170
|
{
|
|
8945
9171
|
"name": "inverted",
|
|
@@ -8948,7 +9174,8 @@
|
|
|
8948
9174
|
},
|
|
8949
9175
|
"default": "false",
|
|
8950
9176
|
"description": "Adjusts colors for dark backgrounds.",
|
|
8951
|
-
"fieldName": "inverted"
|
|
9177
|
+
"fieldName": "inverted",
|
|
9178
|
+
"propName": "inverted"
|
|
8952
9179
|
},
|
|
8953
9180
|
{
|
|
8954
9181
|
"name": "showError",
|
|
@@ -8957,7 +9184,8 @@
|
|
|
8957
9184
|
},
|
|
8958
9185
|
"default": "false",
|
|
8959
9186
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
8960
|
-
"fieldName": "showError"
|
|
9187
|
+
"fieldName": "showError",
|
|
9188
|
+
"propName": "showerror"
|
|
8961
9189
|
},
|
|
8962
9190
|
{
|
|
8963
9191
|
"name": "errorMessage",
|
|
@@ -8966,7 +9194,8 @@
|
|
|
8966
9194
|
},
|
|
8967
9195
|
"default": "\"\"",
|
|
8968
9196
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
8969
|
-
"fieldName": "errorMessage"
|
|
9197
|
+
"fieldName": "errorMessage",
|
|
9198
|
+
"propName": "errormessage"
|
|
8970
9199
|
},
|
|
8971
9200
|
{
|
|
8972
9201
|
"name": "width",
|
|
@@ -8975,7 +9204,8 @@
|
|
|
8975
9204
|
},
|
|
8976
9205
|
"default": "\"full\"",
|
|
8977
9206
|
"description": "Select width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
8978
|
-
"fieldName": "width"
|
|
9207
|
+
"fieldName": "width",
|
|
9208
|
+
"propName": "width"
|
|
8979
9209
|
}
|
|
8980
9210
|
],
|
|
8981
9211
|
"superclass": {
|
|
@@ -9076,7 +9306,8 @@
|
|
|
9076
9306
|
},
|
|
9077
9307
|
"default": "\"\"",
|
|
9078
9308
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
9079
|
-
"fieldName": "id"
|
|
9309
|
+
"fieldName": "id",
|
|
9310
|
+
"propName": "id"
|
|
9080
9311
|
},
|
|
9081
9312
|
{
|
|
9082
9313
|
"name": "href",
|
|
@@ -9085,7 +9316,8 @@
|
|
|
9085
9316
|
},
|
|
9086
9317
|
"default": "\"\"",
|
|
9087
9318
|
"description": "Target element ID (with `#`). Defaults to `#main-content`.",
|
|
9088
|
-
"fieldName": "href"
|
|
9319
|
+
"fieldName": "href",
|
|
9320
|
+
"propName": "href"
|
|
9089
9321
|
}
|
|
9090
9322
|
],
|
|
9091
9323
|
"superclass": {
|
|
@@ -9259,7 +9491,8 @@
|
|
|
9259
9491
|
},
|
|
9260
9492
|
"default": "false",
|
|
9261
9493
|
"description": "Whether this step is currently being viewed. Set by parent stepper.",
|
|
9262
|
-
"fieldName": "selected"
|
|
9494
|
+
"fieldName": "selected",
|
|
9495
|
+
"propName": "selected"
|
|
9263
9496
|
},
|
|
9264
9497
|
{
|
|
9265
9498
|
"name": "current",
|
|
@@ -9268,7 +9501,8 @@
|
|
|
9268
9501
|
},
|
|
9269
9502
|
"default": "false",
|
|
9270
9503
|
"description": "Marks the furthest reached step. Steps before this are navigable.",
|
|
9271
|
-
"fieldName": "current"
|
|
9504
|
+
"fieldName": "current",
|
|
9505
|
+
"propName": "current"
|
|
9272
9506
|
},
|
|
9273
9507
|
{
|
|
9274
9508
|
"name": "label",
|
|
@@ -9277,7 +9511,8 @@
|
|
|
9277
9511
|
},
|
|
9278
9512
|
"default": "\"\"",
|
|
9279
9513
|
"description": "Step label text displayed alongside the step number.",
|
|
9280
|
-
"fieldName": "label"
|
|
9514
|
+
"fieldName": "label",
|
|
9515
|
+
"propName": "label"
|
|
9281
9516
|
},
|
|
9282
9517
|
{
|
|
9283
9518
|
"name": "href",
|
|
@@ -9286,7 +9521,8 @@
|
|
|
9286
9521
|
},
|
|
9287
9522
|
"default": "\"\"",
|
|
9288
9523
|
"description": "URL for page navigation when step is clicked. Optional for SPA routing.",
|
|
9289
|
-
"fieldName": "href"
|
|
9524
|
+
"fieldName": "href",
|
|
9525
|
+
"propName": "href"
|
|
9290
9526
|
},
|
|
9291
9527
|
{
|
|
9292
9528
|
"name": "isCompactExpanded",
|
|
@@ -9295,7 +9531,8 @@
|
|
|
9295
9531
|
},
|
|
9296
9532
|
"default": "false",
|
|
9297
9533
|
"description": "Internal: Whether parent stepper's compact view is expanded.",
|
|
9298
|
-
"fieldName": "isCompactExpanded"
|
|
9534
|
+
"fieldName": "isCompactExpanded",
|
|
9535
|
+
"propName": "iscompactexpanded"
|
|
9299
9536
|
},
|
|
9300
9537
|
{
|
|
9301
9538
|
"name": "stepNumber",
|
|
@@ -9304,7 +9541,8 @@
|
|
|
9304
9541
|
},
|
|
9305
9542
|
"default": "0",
|
|
9306
9543
|
"description": "Step number (1-indexed). Auto-assigned by parent stepper.",
|
|
9307
|
-
"fieldName": "stepNumber"
|
|
9544
|
+
"fieldName": "stepNumber",
|
|
9545
|
+
"propName": "stepnumber"
|
|
9308
9546
|
}
|
|
9309
9547
|
],
|
|
9310
9548
|
"superclass": {
|
|
@@ -9471,7 +9709,8 @@
|
|
|
9471
9709
|
},
|
|
9472
9710
|
"default": "\"\"",
|
|
9473
9711
|
"description": "Unique identifier.",
|
|
9474
|
-
"fieldName": "id"
|
|
9712
|
+
"fieldName": "id",
|
|
9713
|
+
"propName": "id"
|
|
9475
9714
|
},
|
|
9476
9715
|
{
|
|
9477
9716
|
"name": "name",
|
|
@@ -9480,7 +9719,8 @@
|
|
|
9480
9719
|
},
|
|
9481
9720
|
"default": "\"\"",
|
|
9482
9721
|
"description": "Name attribute for form association.",
|
|
9483
|
-
"fieldName": "name"
|
|
9722
|
+
"fieldName": "name",
|
|
9723
|
+
"propName": "name"
|
|
9484
9724
|
},
|
|
9485
9725
|
{
|
|
9486
9726
|
"name": "label",
|
|
@@ -9489,7 +9729,8 @@
|
|
|
9489
9729
|
},
|
|
9490
9730
|
"default": "\"\"",
|
|
9491
9731
|
"description": "Title displayed above the step counter.",
|
|
9492
|
-
"fieldName": "label"
|
|
9732
|
+
"fieldName": "label",
|
|
9733
|
+
"propName": "label"
|
|
9493
9734
|
},
|
|
9494
9735
|
{
|
|
9495
9736
|
"name": "counterText",
|
|
@@ -9498,7 +9739,8 @@
|
|
|
9498
9739
|
},
|
|
9499
9740
|
"default": "\"initial\"",
|
|
9500
9741
|
"description": "Progress text (e.g., \"Step 2 of 5\"). Auto-updated based on selection.",
|
|
9501
|
-
"fieldName": "counterText"
|
|
9742
|
+
"fieldName": "counterText",
|
|
9743
|
+
"propName": "countertext"
|
|
9502
9744
|
},
|
|
9503
9745
|
{
|
|
9504
9746
|
"name": "isCompactExpanded",
|
|
@@ -9507,7 +9749,8 @@
|
|
|
9507
9749
|
},
|
|
9508
9750
|
"default": "false",
|
|
9509
9751
|
"description": "Whether compact mobile view is expanded to show all steps.",
|
|
9510
|
-
"fieldName": "isCompactExpanded"
|
|
9752
|
+
"fieldName": "isCompactExpanded",
|
|
9753
|
+
"propName": "iscompactexpanded"
|
|
9511
9754
|
}
|
|
9512
9755
|
],
|
|
9513
9756
|
"superclass": {
|
|
@@ -9698,6 +9941,7 @@
|
|
|
9698
9941
|
{
|
|
9699
9942
|
"kind": "method",
|
|
9700
9943
|
"name": "_onSortClick",
|
|
9944
|
+
"privacy": "private",
|
|
9701
9945
|
"parameters": [
|
|
9702
9946
|
{
|
|
9703
9947
|
"name": "columnIndex",
|
|
@@ -9752,12 +9996,50 @@
|
|
|
9752
9996
|
{
|
|
9753
9997
|
"kind": "method",
|
|
9754
9998
|
"name": "downloadFile"
|
|
9999
|
+
},
|
|
10000
|
+
{
|
|
10001
|
+
"kind": "method",
|
|
10002
|
+
"name": "_emitColumnSortEvent",
|
|
10003
|
+
"privacy": "private",
|
|
10004
|
+
"return": {
|
|
10005
|
+
"type": {
|
|
10006
|
+
"text": "boolean"
|
|
10007
|
+
}
|
|
10008
|
+
},
|
|
10009
|
+
"parameters": [
|
|
10010
|
+
{
|
|
10011
|
+
"name": "columnIndex",
|
|
10012
|
+
"type": {
|
|
10013
|
+
"text": "number"
|
|
10014
|
+
},
|
|
10015
|
+
"description": "Zero-based index of the sorted column."
|
|
10016
|
+
},
|
|
10017
|
+
{
|
|
10018
|
+
"name": "columnLabel",
|
|
10019
|
+
"type": {
|
|
10020
|
+
"text": "string"
|
|
10021
|
+
},
|
|
10022
|
+
"description": "The text label of the sorted column header."
|
|
10023
|
+
},
|
|
10024
|
+
{
|
|
10025
|
+
"name": "sortDirection",
|
|
10026
|
+
"type": {
|
|
10027
|
+
"text": "\"asc\" | \"desc\" | \"none\""
|
|
10028
|
+
},
|
|
10029
|
+
"description": "The new sort direction: \"asc\", \"desc\", or \"none\"."
|
|
10030
|
+
}
|
|
10031
|
+
],
|
|
10032
|
+
"description": "Dispatches the `nys-column-sort` custom event."
|
|
9755
10033
|
}
|
|
9756
10034
|
],
|
|
9757
10035
|
"events": [
|
|
9758
10036
|
{
|
|
9759
10037
|
"description": "Fired when the download button or sortable headers are clicked.",
|
|
9760
10038
|
"name": "nys-click"
|
|
10039
|
+
},
|
|
10040
|
+
{
|
|
10041
|
+
"description": "Fired when a sortable column header is clicked. Can be prevented by calling `event.preventDefault()` to override default sort behavior. Detail: { columnIndex: number, columnLabel: string, sortDirection: \"asc\" | \"desc\" | \"none\" }",
|
|
10042
|
+
"name": "nys-column-sort"
|
|
9761
10043
|
}
|
|
9762
10044
|
],
|
|
9763
10045
|
"attributes": [
|
|
@@ -9767,7 +10049,8 @@
|
|
|
9767
10049
|
"text": "string"
|
|
9768
10050
|
},
|
|
9769
10051
|
"default": "\"\"",
|
|
9770
|
-
"fieldName": "id"
|
|
10052
|
+
"fieldName": "id",
|
|
10053
|
+
"propName": "id"
|
|
9771
10054
|
},
|
|
9772
10055
|
{
|
|
9773
10056
|
"name": "name",
|
|
@@ -9775,7 +10058,8 @@
|
|
|
9775
10058
|
"text": "string"
|
|
9776
10059
|
},
|
|
9777
10060
|
"default": "\"\"",
|
|
9778
|
-
"fieldName": "name"
|
|
10061
|
+
"fieldName": "name",
|
|
10062
|
+
"propName": "name"
|
|
9779
10063
|
},
|
|
9780
10064
|
{
|
|
9781
10065
|
"name": "striped",
|
|
@@ -9783,7 +10067,8 @@
|
|
|
9783
10067
|
"text": "boolean"
|
|
9784
10068
|
},
|
|
9785
10069
|
"default": "false",
|
|
9786
|
-
"fieldName": "striped"
|
|
10070
|
+
"fieldName": "striped",
|
|
10071
|
+
"propName": "striped"
|
|
9787
10072
|
},
|
|
9788
10073
|
{
|
|
9789
10074
|
"name": "sortable",
|
|
@@ -9791,7 +10076,8 @@
|
|
|
9791
10076
|
"text": "boolean"
|
|
9792
10077
|
},
|
|
9793
10078
|
"default": "false",
|
|
9794
|
-
"fieldName": "sortable"
|
|
10079
|
+
"fieldName": "sortable",
|
|
10080
|
+
"propName": "sortable"
|
|
9795
10081
|
},
|
|
9796
10082
|
{
|
|
9797
10083
|
"name": "bordered",
|
|
@@ -9799,7 +10085,8 @@
|
|
|
9799
10085
|
"text": "boolean"
|
|
9800
10086
|
},
|
|
9801
10087
|
"default": "false",
|
|
9802
|
-
"fieldName": "bordered"
|
|
10088
|
+
"fieldName": "bordered",
|
|
10089
|
+
"propName": "bordered"
|
|
9803
10090
|
},
|
|
9804
10091
|
{
|
|
9805
10092
|
"name": "download",
|
|
@@ -9807,7 +10094,8 @@
|
|
|
9807
10094
|
"text": "string"
|
|
9808
10095
|
},
|
|
9809
10096
|
"default": "\"\"",
|
|
9810
|
-
"fieldName": "download"
|
|
10097
|
+
"fieldName": "download",
|
|
10098
|
+
"propName": "download"
|
|
9811
10099
|
}
|
|
9812
10100
|
],
|
|
9813
10101
|
"superclass": {
|
|
@@ -10257,7 +10545,8 @@
|
|
|
10257
10545
|
},
|
|
10258
10546
|
"default": "\"\"",
|
|
10259
10547
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
10260
|
-
"fieldName": "id"
|
|
10548
|
+
"fieldName": "id",
|
|
10549
|
+
"propName": "id"
|
|
10261
10550
|
},
|
|
10262
10551
|
{
|
|
10263
10552
|
"name": "name",
|
|
@@ -10266,7 +10555,8 @@
|
|
|
10266
10555
|
},
|
|
10267
10556
|
"default": "\"\"",
|
|
10268
10557
|
"description": "Name for form submission.",
|
|
10269
|
-
"fieldName": "name"
|
|
10558
|
+
"fieldName": "name",
|
|
10559
|
+
"propName": "name"
|
|
10270
10560
|
},
|
|
10271
10561
|
{
|
|
10272
10562
|
"name": "label",
|
|
@@ -10275,7 +10565,8 @@
|
|
|
10275
10565
|
},
|
|
10276
10566
|
"default": "\"\"",
|
|
10277
10567
|
"description": "Visible label text. Required for accessibility.",
|
|
10278
|
-
"fieldName": "label"
|
|
10568
|
+
"fieldName": "label",
|
|
10569
|
+
"propName": "label"
|
|
10279
10570
|
},
|
|
10280
10571
|
{
|
|
10281
10572
|
"name": "description",
|
|
@@ -10284,7 +10575,8 @@
|
|
|
10284
10575
|
},
|
|
10285
10576
|
"default": "\"\"",
|
|
10286
10577
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
10287
|
-
"fieldName": "description"
|
|
10578
|
+
"fieldName": "description",
|
|
10579
|
+
"propName": "description"
|
|
10288
10580
|
},
|
|
10289
10581
|
{
|
|
10290
10582
|
"name": "placeholder",
|
|
@@ -10293,7 +10585,8 @@
|
|
|
10293
10585
|
},
|
|
10294
10586
|
"default": "\"\"",
|
|
10295
10587
|
"description": "Placeholder text. Don't use as label replacement.",
|
|
10296
|
-
"fieldName": "placeholder"
|
|
10588
|
+
"fieldName": "placeholder",
|
|
10589
|
+
"propName": "placeholder"
|
|
10297
10590
|
},
|
|
10298
10591
|
{
|
|
10299
10592
|
"name": "value",
|
|
@@ -10302,7 +10595,8 @@
|
|
|
10302
10595
|
},
|
|
10303
10596
|
"default": "\"\"",
|
|
10304
10597
|
"description": "Current textarea value.",
|
|
10305
|
-
"fieldName": "value"
|
|
10598
|
+
"fieldName": "value",
|
|
10599
|
+
"propName": "value"
|
|
10306
10600
|
},
|
|
10307
10601
|
{
|
|
10308
10602
|
"name": "disabled",
|
|
@@ -10311,7 +10605,8 @@
|
|
|
10311
10605
|
},
|
|
10312
10606
|
"default": "false",
|
|
10313
10607
|
"description": "Prevents interaction.",
|
|
10314
|
-
"fieldName": "disabled"
|
|
10608
|
+
"fieldName": "disabled",
|
|
10609
|
+
"propName": "disabled"
|
|
10315
10610
|
},
|
|
10316
10611
|
{
|
|
10317
10612
|
"name": "readonly",
|
|
@@ -10320,7 +10615,8 @@
|
|
|
10320
10615
|
},
|
|
10321
10616
|
"default": "false",
|
|
10322
10617
|
"description": "Makes textarea read-only but focusable.",
|
|
10323
|
-
"fieldName": "readonly"
|
|
10618
|
+
"fieldName": "readonly",
|
|
10619
|
+
"propName": "readonly"
|
|
10324
10620
|
},
|
|
10325
10621
|
{
|
|
10326
10622
|
"name": "required",
|
|
@@ -10329,7 +10625,8 @@
|
|
|
10329
10625
|
},
|
|
10330
10626
|
"default": "false",
|
|
10331
10627
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
10332
|
-
"fieldName": "required"
|
|
10628
|
+
"fieldName": "required",
|
|
10629
|
+
"propName": "required"
|
|
10333
10630
|
},
|
|
10334
10631
|
{
|
|
10335
10632
|
"name": "optional",
|
|
@@ -10338,7 +10635,8 @@
|
|
|
10338
10635
|
},
|
|
10339
10636
|
"default": "false",
|
|
10340
10637
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
10341
|
-
"fieldName": "optional"
|
|
10638
|
+
"fieldName": "optional",
|
|
10639
|
+
"propName": "optional"
|
|
10342
10640
|
},
|
|
10343
10641
|
{
|
|
10344
10642
|
"name": "tooltip",
|
|
@@ -10347,7 +10645,8 @@
|
|
|
10347
10645
|
},
|
|
10348
10646
|
"default": "\"\"",
|
|
10349
10647
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
10350
|
-
"fieldName": "tooltip"
|
|
10648
|
+
"fieldName": "tooltip",
|
|
10649
|
+
"propName": "tooltip"
|
|
10351
10650
|
},
|
|
10352
10651
|
{
|
|
10353
10652
|
"name": "inverted",
|
|
@@ -10356,7 +10655,8 @@
|
|
|
10356
10655
|
},
|
|
10357
10656
|
"default": "false",
|
|
10358
10657
|
"description": "Adjusts colors for dark backgrounds.",
|
|
10359
|
-
"fieldName": "inverted"
|
|
10658
|
+
"fieldName": "inverted",
|
|
10659
|
+
"propName": "inverted"
|
|
10360
10660
|
},
|
|
10361
10661
|
{
|
|
10362
10662
|
"name": "form",
|
|
@@ -10365,7 +10665,8 @@
|
|
|
10365
10665
|
},
|
|
10366
10666
|
"default": "null",
|
|
10367
10667
|
"description": "Form `id` to associate with when textarea is outside form element.",
|
|
10368
|
-
"fieldName": "form"
|
|
10668
|
+
"fieldName": "form",
|
|
10669
|
+
"propName": "form"
|
|
10369
10670
|
},
|
|
10370
10671
|
{
|
|
10371
10672
|
"name": "maxlength",
|
|
@@ -10374,7 +10675,8 @@
|
|
|
10374
10675
|
},
|
|
10375
10676
|
"default": "null",
|
|
10376
10677
|
"description": "Maximum character length.",
|
|
10377
|
-
"fieldName": "maxlength"
|
|
10678
|
+
"fieldName": "maxlength",
|
|
10679
|
+
"propName": "maxlength"
|
|
10378
10680
|
},
|
|
10379
10681
|
{
|
|
10380
10682
|
"name": "width",
|
|
@@ -10383,7 +10685,8 @@
|
|
|
10383
10685
|
},
|
|
10384
10686
|
"default": "\"full\"",
|
|
10385
10687
|
"description": "Textarea width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
10386
|
-
"fieldName": "width"
|
|
10688
|
+
"fieldName": "width",
|
|
10689
|
+
"propName": "width"
|
|
10387
10690
|
},
|
|
10388
10691
|
{
|
|
10389
10692
|
"name": "rows",
|
|
@@ -10392,7 +10695,8 @@
|
|
|
10392
10695
|
},
|
|
10393
10696
|
"default": "4",
|
|
10394
10697
|
"description": "Visible height in lines.",
|
|
10395
|
-
"fieldName": "rows"
|
|
10698
|
+
"fieldName": "rows",
|
|
10699
|
+
"propName": "rows"
|
|
10396
10700
|
},
|
|
10397
10701
|
{
|
|
10398
10702
|
"name": "resize",
|
|
@@ -10401,7 +10705,8 @@
|
|
|
10401
10705
|
},
|
|
10402
10706
|
"default": "\"vertical\"",
|
|
10403
10707
|
"description": "Resize behavior: `vertical` (default, user can resize height), `none` (fixed size).",
|
|
10404
|
-
"fieldName": "resize"
|
|
10708
|
+
"fieldName": "resize",
|
|
10709
|
+
"propName": "resize"
|
|
10405
10710
|
},
|
|
10406
10711
|
{
|
|
10407
10712
|
"name": "showError",
|
|
@@ -10410,7 +10715,8 @@
|
|
|
10410
10715
|
},
|
|
10411
10716
|
"default": "false",
|
|
10412
10717
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
10413
|
-
"fieldName": "showError"
|
|
10718
|
+
"fieldName": "showError",
|
|
10719
|
+
"propName": "showerror"
|
|
10414
10720
|
},
|
|
10415
10721
|
{
|
|
10416
10722
|
"name": "errorMessage",
|
|
@@ -10419,7 +10725,8 @@
|
|
|
10419
10725
|
},
|
|
10420
10726
|
"default": "\"\"",
|
|
10421
10727
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
10422
|
-
"fieldName": "errorMessage"
|
|
10728
|
+
"fieldName": "errorMessage",
|
|
10729
|
+
"propName": "errormessage"
|
|
10423
10730
|
}
|
|
10424
10731
|
],
|
|
10425
10732
|
"superclass": {
|
|
@@ -10967,7 +11274,8 @@
|
|
|
10967
11274
|
},
|
|
10968
11275
|
"default": "\"\"",
|
|
10969
11276
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
10970
|
-
"fieldName": "id"
|
|
11277
|
+
"fieldName": "id",
|
|
11278
|
+
"propName": "id"
|
|
10971
11279
|
},
|
|
10972
11280
|
{
|
|
10973
11281
|
"name": "name",
|
|
@@ -10976,7 +11284,8 @@
|
|
|
10976
11284
|
},
|
|
10977
11285
|
"default": "\"\"",
|
|
10978
11286
|
"description": "Name for form submission.",
|
|
10979
|
-
"fieldName": "name"
|
|
11287
|
+
"fieldName": "name",
|
|
11288
|
+
"propName": "name"
|
|
10980
11289
|
},
|
|
10981
11290
|
{
|
|
10982
11291
|
"name": "type",
|
|
@@ -10985,7 +11294,8 @@
|
|
|
10985
11294
|
},
|
|
10986
11295
|
"default": "\"text\"",
|
|
10987
11296
|
"description": "Input type: `text` (default), `email`, `number`, `password`, `search`, `tel` (auto-masked), `url`.",
|
|
10988
|
-
"fieldName": "type"
|
|
11297
|
+
"fieldName": "type",
|
|
11298
|
+
"propName": "type"
|
|
10989
11299
|
},
|
|
10990
11300
|
{
|
|
10991
11301
|
"name": "label",
|
|
@@ -10994,7 +11304,8 @@
|
|
|
10994
11304
|
},
|
|
10995
11305
|
"default": "\"\"",
|
|
10996
11306
|
"description": "Visible label text. Required for accessibility.",
|
|
10997
|
-
"fieldName": "label"
|
|
11307
|
+
"fieldName": "label",
|
|
11308
|
+
"propName": "label"
|
|
10998
11309
|
},
|
|
10999
11310
|
{
|
|
11000
11311
|
"name": "description",
|
|
@@ -11003,7 +11314,8 @@
|
|
|
11003
11314
|
},
|
|
11004
11315
|
"default": "\"\"",
|
|
11005
11316
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
11006
|
-
"fieldName": "description"
|
|
11317
|
+
"fieldName": "description",
|
|
11318
|
+
"propName": "description"
|
|
11007
11319
|
},
|
|
11008
11320
|
{
|
|
11009
11321
|
"name": "placeholder",
|
|
@@ -11012,7 +11324,8 @@
|
|
|
11012
11324
|
},
|
|
11013
11325
|
"default": "\"\"",
|
|
11014
11326
|
"description": "Placeholder text. Don't use as label replacement.",
|
|
11015
|
-
"fieldName": "placeholder"
|
|
11327
|
+
"fieldName": "placeholder",
|
|
11328
|
+
"propName": "placeholder"
|
|
11016
11329
|
},
|
|
11017
11330
|
{
|
|
11018
11331
|
"name": "value",
|
|
@@ -11021,7 +11334,8 @@
|
|
|
11021
11334
|
},
|
|
11022
11335
|
"default": "\"\"",
|
|
11023
11336
|
"description": "Current input value.",
|
|
11024
|
-
"fieldName": "value"
|
|
11337
|
+
"fieldName": "value",
|
|
11338
|
+
"propName": "value"
|
|
11025
11339
|
},
|
|
11026
11340
|
{
|
|
11027
11341
|
"name": "disabled",
|
|
@@ -11030,7 +11344,8 @@
|
|
|
11030
11344
|
},
|
|
11031
11345
|
"default": "false",
|
|
11032
11346
|
"description": "Prevents interaction.",
|
|
11033
|
-
"fieldName": "disabled"
|
|
11347
|
+
"fieldName": "disabled",
|
|
11348
|
+
"propName": "disabled"
|
|
11034
11349
|
},
|
|
11035
11350
|
{
|
|
11036
11351
|
"name": "readonly",
|
|
@@ -11039,7 +11354,8 @@
|
|
|
11039
11354
|
},
|
|
11040
11355
|
"default": "false",
|
|
11041
11356
|
"description": "Makes input read-only but focusable.",
|
|
11042
|
-
"fieldName": "readonly"
|
|
11357
|
+
"fieldName": "readonly",
|
|
11358
|
+
"propName": "readonly"
|
|
11043
11359
|
},
|
|
11044
11360
|
{
|
|
11045
11361
|
"name": "required",
|
|
@@ -11048,7 +11364,8 @@
|
|
|
11048
11364
|
},
|
|
11049
11365
|
"default": "false",
|
|
11050
11366
|
"description": "Marks as required. Shows \"Required\" flag and validates on blur.",
|
|
11051
|
-
"fieldName": "required"
|
|
11367
|
+
"fieldName": "required",
|
|
11368
|
+
"propName": "required"
|
|
11052
11369
|
},
|
|
11053
11370
|
{
|
|
11054
11371
|
"name": "optional",
|
|
@@ -11057,7 +11374,8 @@
|
|
|
11057
11374
|
},
|
|
11058
11375
|
"default": "false",
|
|
11059
11376
|
"description": "Shows \"Optional\" flag. Use when most fields are required.",
|
|
11060
|
-
"fieldName": "optional"
|
|
11377
|
+
"fieldName": "optional",
|
|
11378
|
+
"propName": "optional"
|
|
11061
11379
|
},
|
|
11062
11380
|
{
|
|
11063
11381
|
"name": "tooltip",
|
|
@@ -11066,7 +11384,8 @@
|
|
|
11066
11384
|
},
|
|
11067
11385
|
"default": "\"\"",
|
|
11068
11386
|
"description": "Tooltip text shown on hover/focus of info icon.",
|
|
11069
|
-
"fieldName": "tooltip"
|
|
11387
|
+
"fieldName": "tooltip",
|
|
11388
|
+
"propName": "tooltip"
|
|
11070
11389
|
},
|
|
11071
11390
|
{
|
|
11072
11391
|
"name": "form",
|
|
@@ -11075,7 +11394,8 @@
|
|
|
11075
11394
|
},
|
|
11076
11395
|
"default": "null",
|
|
11077
11396
|
"description": "Form `id` to associate with when input is outside form element.",
|
|
11078
|
-
"fieldName": "form"
|
|
11397
|
+
"fieldName": "form",
|
|
11398
|
+
"propName": "form"
|
|
11079
11399
|
},
|
|
11080
11400
|
{
|
|
11081
11401
|
"name": "pattern",
|
|
@@ -11084,7 +11404,8 @@
|
|
|
11084
11404
|
},
|
|
11085
11405
|
"default": "\"\"",
|
|
11086
11406
|
"description": "Regex pattern for validation. Shows error on mismatch.",
|
|
11087
|
-
"fieldName": "pattern"
|
|
11407
|
+
"fieldName": "pattern",
|
|
11408
|
+
"propName": "pattern"
|
|
11088
11409
|
},
|
|
11089
11410
|
{
|
|
11090
11411
|
"name": "maxlength",
|
|
@@ -11093,7 +11414,8 @@
|
|
|
11093
11414
|
},
|
|
11094
11415
|
"default": "null",
|
|
11095
11416
|
"description": "Maximum character length.",
|
|
11096
|
-
"fieldName": "maxlength"
|
|
11417
|
+
"fieldName": "maxlength",
|
|
11418
|
+
"propName": "maxlength"
|
|
11097
11419
|
},
|
|
11098
11420
|
{
|
|
11099
11421
|
"name": "ariaLabel",
|
|
@@ -11102,7 +11424,8 @@
|
|
|
11102
11424
|
},
|
|
11103
11425
|
"default": "\"\"",
|
|
11104
11426
|
"description": "Accessible label. When set, assuming \"label\" isn't provided for private special cases (i.e., <checkbox other>).",
|
|
11105
|
-
"fieldName": "ariaLabel"
|
|
11427
|
+
"fieldName": "ariaLabel",
|
|
11428
|
+
"propName": "arialabel"
|
|
11106
11429
|
},
|
|
11107
11430
|
{
|
|
11108
11431
|
"name": "width",
|
|
@@ -11111,7 +11434,8 @@
|
|
|
11111
11434
|
},
|
|
11112
11435
|
"default": "\"full\"",
|
|
11113
11436
|
"description": "Input width: `sm` (88px), `md` (200px), `lg` (384px), `full` (100%, default).",
|
|
11114
|
-
"fieldName": "width"
|
|
11437
|
+
"fieldName": "width",
|
|
11438
|
+
"propName": "width"
|
|
11115
11439
|
},
|
|
11116
11440
|
{
|
|
11117
11441
|
"name": "step",
|
|
@@ -11120,7 +11444,8 @@
|
|
|
11120
11444
|
},
|
|
11121
11445
|
"default": "null",
|
|
11122
11446
|
"description": "Step increment for `type=\"number\"`.",
|
|
11123
|
-
"fieldName": "step"
|
|
11447
|
+
"fieldName": "step",
|
|
11448
|
+
"propName": "step"
|
|
11124
11449
|
},
|
|
11125
11450
|
{
|
|
11126
11451
|
"name": "min",
|
|
@@ -11129,7 +11454,8 @@
|
|
|
11129
11454
|
},
|
|
11130
11455
|
"default": "null",
|
|
11131
11456
|
"description": "Minimum value for `type=\"number\"`.",
|
|
11132
|
-
"fieldName": "min"
|
|
11457
|
+
"fieldName": "min",
|
|
11458
|
+
"propName": "min"
|
|
11133
11459
|
},
|
|
11134
11460
|
{
|
|
11135
11461
|
"name": "max",
|
|
@@ -11138,7 +11464,8 @@
|
|
|
11138
11464
|
},
|
|
11139
11465
|
"default": "null",
|
|
11140
11466
|
"description": "Maximum value for `type=\"number\"`.",
|
|
11141
|
-
"fieldName": "max"
|
|
11467
|
+
"fieldName": "max",
|
|
11468
|
+
"propName": "max"
|
|
11142
11469
|
},
|
|
11143
11470
|
{
|
|
11144
11471
|
"name": "inverted",
|
|
@@ -11147,7 +11474,8 @@
|
|
|
11147
11474
|
},
|
|
11148
11475
|
"default": "false",
|
|
11149
11476
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11150
|
-
"fieldName": "inverted"
|
|
11477
|
+
"fieldName": "inverted",
|
|
11478
|
+
"propName": "inverted"
|
|
11151
11479
|
},
|
|
11152
11480
|
{
|
|
11153
11481
|
"name": "showError",
|
|
@@ -11156,7 +11484,8 @@
|
|
|
11156
11484
|
},
|
|
11157
11485
|
"default": "false",
|
|
11158
11486
|
"description": "Shows error message when true. Set by validation or manually.",
|
|
11159
|
-
"fieldName": "showError"
|
|
11487
|
+
"fieldName": "showError",
|
|
11488
|
+
"propName": "showerror"
|
|
11160
11489
|
},
|
|
11161
11490
|
{
|
|
11162
11491
|
"name": "errorMessage",
|
|
@@ -11165,7 +11494,8 @@
|
|
|
11165
11494
|
},
|
|
11166
11495
|
"default": "\"\"",
|
|
11167
11496
|
"description": "Error message text. Shown only when `showError` is true.",
|
|
11168
|
-
"fieldName": "errorMessage"
|
|
11497
|
+
"fieldName": "errorMessage",
|
|
11498
|
+
"propName": "errormessage"
|
|
11169
11499
|
}
|
|
11170
11500
|
],
|
|
11171
11501
|
"superclass": {
|
|
@@ -11454,7 +11784,8 @@
|
|
|
11454
11784
|
},
|
|
11455
11785
|
"default": "\"\"",
|
|
11456
11786
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
11457
|
-
"fieldName": "id"
|
|
11787
|
+
"fieldName": "id",
|
|
11788
|
+
"propName": "id"
|
|
11458
11789
|
},
|
|
11459
11790
|
{
|
|
11460
11791
|
"name": "name",
|
|
@@ -11463,7 +11794,8 @@
|
|
|
11463
11794
|
},
|
|
11464
11795
|
"default": "\"\"",
|
|
11465
11796
|
"description": "Name for form submission.",
|
|
11466
|
-
"fieldName": "name"
|
|
11797
|
+
"fieldName": "name",
|
|
11798
|
+
"propName": "name"
|
|
11467
11799
|
},
|
|
11468
11800
|
{
|
|
11469
11801
|
"name": "value",
|
|
@@ -11472,7 +11804,8 @@
|
|
|
11472
11804
|
},
|
|
11473
11805
|
"default": "\"\"",
|
|
11474
11806
|
"description": "Value submitted when toggle is on.",
|
|
11475
|
-
"fieldName": "value"
|
|
11807
|
+
"fieldName": "value",
|
|
11808
|
+
"propName": "value"
|
|
11476
11809
|
},
|
|
11477
11810
|
{
|
|
11478
11811
|
"name": "label",
|
|
@@ -11481,7 +11814,8 @@
|
|
|
11481
11814
|
},
|
|
11482
11815
|
"default": "\"\"",
|
|
11483
11816
|
"description": "Visible label text.",
|
|
11484
|
-
"fieldName": "label"
|
|
11817
|
+
"fieldName": "label",
|
|
11818
|
+
"propName": "label"
|
|
11485
11819
|
},
|
|
11486
11820
|
{
|
|
11487
11821
|
"name": "description",
|
|
@@ -11490,7 +11824,8 @@
|
|
|
11490
11824
|
},
|
|
11491
11825
|
"default": "\"\"",
|
|
11492
11826
|
"description": "Helper text below label. Use slot for custom HTML.",
|
|
11493
|
-
"fieldName": "description"
|
|
11827
|
+
"fieldName": "description",
|
|
11828
|
+
"propName": "description"
|
|
11494
11829
|
},
|
|
11495
11830
|
{
|
|
11496
11831
|
"name": "form",
|
|
@@ -11499,7 +11834,8 @@
|
|
|
11499
11834
|
},
|
|
11500
11835
|
"default": "null",
|
|
11501
11836
|
"description": "Form `id` to associate with.",
|
|
11502
|
-
"fieldName": "form"
|
|
11837
|
+
"fieldName": "form",
|
|
11838
|
+
"propName": "form"
|
|
11503
11839
|
},
|
|
11504
11840
|
{
|
|
11505
11841
|
"name": "checked",
|
|
@@ -11508,7 +11844,8 @@
|
|
|
11508
11844
|
},
|
|
11509
11845
|
"default": "false",
|
|
11510
11846
|
"description": "Whether toggle is on.",
|
|
11511
|
-
"fieldName": "checked"
|
|
11847
|
+
"fieldName": "checked",
|
|
11848
|
+
"propName": "checked"
|
|
11512
11849
|
},
|
|
11513
11850
|
{
|
|
11514
11851
|
"name": "disabled",
|
|
@@ -11517,7 +11854,8 @@
|
|
|
11517
11854
|
},
|
|
11518
11855
|
"default": "false",
|
|
11519
11856
|
"description": "Prevents interaction.",
|
|
11520
|
-
"fieldName": "disabled"
|
|
11857
|
+
"fieldName": "disabled",
|
|
11858
|
+
"propName": "disabled"
|
|
11521
11859
|
},
|
|
11522
11860
|
{
|
|
11523
11861
|
"name": "noIcon",
|
|
@@ -11526,7 +11864,8 @@
|
|
|
11526
11864
|
},
|
|
11527
11865
|
"default": "false",
|
|
11528
11866
|
"description": "Hides check/close icon inside toggle knob.",
|
|
11529
|
-
"fieldName": "noIcon"
|
|
11867
|
+
"fieldName": "noIcon",
|
|
11868
|
+
"propName": "noicon"
|
|
11530
11869
|
},
|
|
11531
11870
|
{
|
|
11532
11871
|
"name": "inverted",
|
|
@@ -11535,7 +11874,8 @@
|
|
|
11535
11874
|
},
|
|
11536
11875
|
"default": "false",
|
|
11537
11876
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11538
|
-
"fieldName": "inverted"
|
|
11877
|
+
"fieldName": "inverted",
|
|
11878
|
+
"propName": "inverted"
|
|
11539
11879
|
},
|
|
11540
11880
|
{
|
|
11541
11881
|
"name": "size",
|
|
@@ -11544,7 +11884,8 @@
|
|
|
11544
11884
|
},
|
|
11545
11885
|
"default": "\"md\"",
|
|
11546
11886
|
"description": "Toggle size: `sm` or `md` (default).",
|
|
11547
|
-
"fieldName": "size"
|
|
11887
|
+
"fieldName": "size",
|
|
11888
|
+
"propName": "size"
|
|
11548
11889
|
}
|
|
11549
11890
|
],
|
|
11550
11891
|
"superclass": {
|
|
@@ -11905,7 +12246,8 @@
|
|
|
11905
12246
|
},
|
|
11906
12247
|
"default": "\"\"",
|
|
11907
12248
|
"description": "Unique identifier. Auto-generated if not provided.",
|
|
11908
|
-
"fieldName": "id"
|
|
12249
|
+
"fieldName": "id",
|
|
12250
|
+
"propName": "id"
|
|
11909
12251
|
},
|
|
11910
12252
|
{
|
|
11911
12253
|
"name": "text",
|
|
@@ -11914,7 +12256,8 @@
|
|
|
11914
12256
|
},
|
|
11915
12257
|
"default": "\"\"",
|
|
11916
12258
|
"description": "Tooltip content text. Required.",
|
|
11917
|
-
"fieldName": "text"
|
|
12259
|
+
"fieldName": "text",
|
|
12260
|
+
"propName": "text"
|
|
11918
12261
|
},
|
|
11919
12262
|
{
|
|
11920
12263
|
"name": "inverted",
|
|
@@ -11923,7 +12266,8 @@
|
|
|
11923
12266
|
},
|
|
11924
12267
|
"default": "false",
|
|
11925
12268
|
"description": "Adjusts colors for dark backgrounds.",
|
|
11926
|
-
"fieldName": "inverted"
|
|
12269
|
+
"fieldName": "inverted",
|
|
12270
|
+
"propName": "inverted"
|
|
11927
12271
|
},
|
|
11928
12272
|
{
|
|
11929
12273
|
"name": "for",
|
|
@@ -11932,13 +12276,15 @@
|
|
|
11932
12276
|
},
|
|
11933
12277
|
"default": "\"\"",
|
|
11934
12278
|
"description": "ID of the trigger element to attach this tooltip to. Required.",
|
|
11935
|
-
"fieldName": "for"
|
|
12279
|
+
"fieldName": "for",
|
|
12280
|
+
"propName": "for"
|
|
11936
12281
|
},
|
|
11937
12282
|
{
|
|
11938
12283
|
"name": "position",
|
|
11939
12284
|
"description": "Preferred position relative to trigger. Auto-adjusts if space is insufficient.",
|
|
11940
12285
|
"default": "null (auto-positioned based on available space)",
|
|
11941
|
-
"fieldName": "position"
|
|
12286
|
+
"fieldName": "position",
|
|
12287
|
+
"propName": "position"
|
|
11942
12288
|
}
|
|
11943
12289
|
],
|
|
11944
12290
|
"superclass": {
|
|
@@ -12233,7 +12579,8 @@
|
|
|
12233
12579
|
},
|
|
12234
12580
|
"default": "false",
|
|
12235
12581
|
"description": "Internal: Whether trust bar panel is expanded.",
|
|
12236
|
-
"fieldName": "trustbarVisible"
|
|
12582
|
+
"fieldName": "trustbarVisible",
|
|
12583
|
+
"propName": "trustbarvisible"
|
|
12237
12584
|
},
|
|
12238
12585
|
{
|
|
12239
12586
|
"name": "searchDropdownVisible",
|
|
@@ -12242,7 +12589,8 @@
|
|
|
12242
12589
|
},
|
|
12243
12590
|
"default": "false",
|
|
12244
12591
|
"description": "Internal: Whether search dropdown is visible (mobile).",
|
|
12245
|
-
"fieldName": "searchDropdownVisible"
|
|
12592
|
+
"fieldName": "searchDropdownVisible",
|
|
12593
|
+
"propName": "searchdropdownvisible"
|
|
12246
12594
|
},
|
|
12247
12595
|
{
|
|
12248
12596
|
"name": "languageVisible",
|
|
@@ -12251,7 +12599,8 @@
|
|
|
12251
12599
|
},
|
|
12252
12600
|
"default": "false",
|
|
12253
12601
|
"description": "Internal: Whether language dropdown is visible.",
|
|
12254
|
-
"fieldName": "languageVisible"
|
|
12602
|
+
"fieldName": "languageVisible",
|
|
12603
|
+
"propName": "languagevisible"
|
|
12255
12604
|
},
|
|
12256
12605
|
{
|
|
12257
12606
|
"name": "isSearchFocused",
|
|
@@ -12260,7 +12609,8 @@
|
|
|
12260
12609
|
},
|
|
12261
12610
|
"default": "false",
|
|
12262
12611
|
"description": "Internal: Whether search input is focused.",
|
|
12263
|
-
"fieldName": "isSearchFocused"
|
|
12612
|
+
"fieldName": "isSearchFocused",
|
|
12613
|
+
"propName": "issearchfocused"
|
|
12264
12614
|
},
|
|
12265
12615
|
{
|
|
12266
12616
|
"name": "hideTranslate",
|
|
@@ -12269,7 +12619,8 @@
|
|
|
12269
12619
|
},
|
|
12270
12620
|
"default": "false",
|
|
12271
12621
|
"description": "Hides the translation dropdown.",
|
|
12272
|
-
"fieldName": "hideTranslate"
|
|
12622
|
+
"fieldName": "hideTranslate",
|
|
12623
|
+
"propName": "hidetranslate"
|
|
12273
12624
|
},
|
|
12274
12625
|
{
|
|
12275
12626
|
"name": "hideSearch",
|
|
@@ -12278,7 +12629,8 @@
|
|
|
12278
12629
|
},
|
|
12279
12630
|
"default": "false",
|
|
12280
12631
|
"description": "Hides the search functionality.",
|
|
12281
|
-
"fieldName": "hideSearch"
|
|
12632
|
+
"fieldName": "hideSearch",
|
|
12633
|
+
"propName": "hidesearch"
|
|
12282
12634
|
},
|
|
12283
12635
|
{
|
|
12284
12636
|
"name": "searchUrl",
|
|
@@ -12287,7 +12639,8 @@
|
|
|
12287
12639
|
},
|
|
12288
12640
|
"default": "\"\"",
|
|
12289
12641
|
"description": "The URL endpoint of the search, make sure to include the query param.",
|
|
12290
|
-
"fieldName": "searchUrl"
|
|
12642
|
+
"fieldName": "searchUrl",
|
|
12643
|
+
"propName": "searchurl"
|
|
12291
12644
|
},
|
|
12292
12645
|
{
|
|
12293
12646
|
"name": "languages",
|
|
@@ -12296,7 +12649,8 @@
|
|
|
12296
12649
|
},
|
|
12297
12650
|
"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
12651
|
"description": "The list of languages this site can be translated to, default to use Smartling",
|
|
12299
|
-
"fieldName": "languages"
|
|
12652
|
+
"fieldName": "languages",
|
|
12653
|
+
"propName": "languages"
|
|
12300
12654
|
}
|
|
12301
12655
|
],
|
|
12302
12656
|
"superclass": {
|