@genesislcap/foundation-zero 15.1.0 → 15.2.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/dist/custom-elements.json +1251 -300
- package/dist/dts/base-components.d.ts +11 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/react.d.ts +20 -9
- package/dist/dts/verification-code-input/index.d.ts +4 -0
- package/dist/dts/verification-code-input/index.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.d.ts +20 -0
- package/dist/dts/verification-code-input/verification-code-input.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.styles.d.ts +3 -0
- package/dist/dts/verification-code-input/verification-code-input.styles.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.template.d.ts +2 -0
- package/dist/dts/verification-code-input/verification-code-input.template.d.ts.map +1 -0
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/verification-code-input/index.js +3 -0
- package/dist/esm/verification-code-input/verification-code-input.js +12 -0
- package/dist/esm/verification-code-input/verification-code-input.styles.js +57 -0
- package/dist/esm/verification-code-input/verification-code-input.template.js +2 -0
- package/dist/react.cjs +24 -5
- package/dist/react.mjs +22 -4
- package/package.json +12 -12
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n zeroAccordion,\n zeroAccordionItem,\n zeroAiCriteriaSearch,\n zeroAiIndicator,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroEnvironmentIndicator,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileReader,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNotificationListener,\n zeroNumberField,\n zeroOptgroup,\n zeroPill,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSchedulerCronBuilder,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroScheduler,\n zeroSchedulerTimezone,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStatusPill,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroSystemHealthOverlay,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\n zeroSectionNavigator,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
|
|
15
|
+
"default": "{\n zeroAccordion,\n zeroAccordionItem,\n zeroAiCriteriaSearch,\n zeroAiIndicator,\n zeroActionsMenu,\n zeroAnchor,\n zeroAnchoredRegion,\n zeroAvatar,\n zeroBadge,\n zeroBanner,\n zeroBreadcrumb,\n zeroBreadcrumbItem,\n zeroButton,\n zeroCalendar,\n zeroCard,\n zeroCategorizedMultiselect,\n zeroCheckbox,\n zeroCombobox,\n zeroConnectionIndicator,\n zeroDataGrid,\n zeroDatePicker,\n zeroDesignSystemProvider,\n zeroDialog,\n zeroDisclosure,\n zeroDivider,\n zeroDropdownMenu,\n zeroEnvironmentIndicator,\n zeroErrorBanner,\n zeroErrorBoundary,\n zeroErrorDialog,\n zeroFileReader,\n zeroFileUpload,\n zeroFilter,\n zeroFilterBar,\n zeroFlexLayout,\n zeroFlipper,\n zeroFlyout,\n zeroGridLayout,\n zeroGridLayoutItem,\n zeroHorizontalScroll,\n zeroIcon,\n zeroListbox,\n zeroListboxOption,\n zeroMenu,\n zeroMenuItem,\n zeroModal,\n zeroMultiselect,\n zeroNotificationListener,\n zeroNumberField,\n zeroOptgroup,\n zeroPill,\n zeroProgress,\n zeroProgressRing,\n zeroRadio,\n zeroRadioGroup,\n zeroSchedulerCronBuilder,\n zeroSearchBar,\n zeroSearchBarCombobox,\n zeroSegmentedControl,\n zeroSegmentedItem,\n zeroSelect,\n zeroScheduler,\n zeroSchedulerTimezone,\n zeroSkeleton,\n zeroSlider,\n zeroSliderLabel,\n zeroSnackbar,\n zeroStackingIcons,\n zeroStatusPill,\n zeroStepper,\n zeroStepperTab,\n zeroStepperTabPanel,\n zeroSwitch,\n zeroSystemHealthOverlay,\n zeroTab,\n zeroTabPanel,\n zeroTabs,\n zeroTextArea,\n zeroTextField,\n zeroToast,\n zeroToolbar,\n zeroTooltip,\n zeroTreeItem,\n zeroTreeView,\n zeroUrlInput,\n zeroVerificationCodeInput,\n zeroSectionNavigator,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n\n this[key]().register(container, ...rest);\n }\n },\n}"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"exports": [
|
|
@@ -723,6 +723,14 @@
|
|
|
723
723
|
"name": "*",
|
|
724
724
|
"package": "./url-input"
|
|
725
725
|
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"kind": "js",
|
|
729
|
+
"name": "*",
|
|
730
|
+
"declaration": {
|
|
731
|
+
"name": "*",
|
|
732
|
+
"package": "./verification-code-input"
|
|
733
|
+
}
|
|
726
734
|
}
|
|
727
735
|
]
|
|
728
736
|
},
|
|
@@ -939,11 +947,11 @@
|
|
|
939
947
|
},
|
|
940
948
|
{
|
|
941
949
|
"kind": "javascript-module",
|
|
942
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
950
|
+
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
943
951
|
"declarations": [
|
|
944
952
|
{
|
|
945
953
|
"kind": "function",
|
|
946
|
-
"name": "
|
|
954
|
+
"name": "zeroAccordionItemStyles",
|
|
947
955
|
"return": {
|
|
948
956
|
"type": {
|
|
949
957
|
"text": "ElementStyles"
|
|
@@ -968,24 +976,24 @@
|
|
|
968
976
|
"exports": [
|
|
969
977
|
{
|
|
970
978
|
"kind": "js",
|
|
971
|
-
"name": "
|
|
979
|
+
"name": "zeroAccordionItemStyles",
|
|
972
980
|
"declaration": {
|
|
973
|
-
"name": "
|
|
974
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
981
|
+
"name": "zeroAccordionItemStyles",
|
|
982
|
+
"module": "src/accordion-item/accordion-item.styles.ts"
|
|
975
983
|
}
|
|
976
984
|
}
|
|
977
985
|
]
|
|
978
986
|
},
|
|
979
987
|
{
|
|
980
988
|
"kind": "javascript-module",
|
|
981
|
-
"path": "src/accordion/accordion.template.ts",
|
|
989
|
+
"path": "src/accordion-item/accordion-item.template.ts",
|
|
982
990
|
"declarations": [
|
|
983
991
|
{
|
|
984
992
|
"kind": "function",
|
|
985
|
-
"name": "
|
|
993
|
+
"name": "zeroAccordionItemTemplate",
|
|
986
994
|
"return": {
|
|
987
995
|
"type": {
|
|
988
|
-
"text": "ViewTemplate<
|
|
996
|
+
"text": "ViewTemplate<AccordionItem>"
|
|
989
997
|
}
|
|
990
998
|
},
|
|
991
999
|
"parameters": [
|
|
@@ -1007,237 +1015,116 @@
|
|
|
1007
1015
|
"exports": [
|
|
1008
1016
|
{
|
|
1009
1017
|
"kind": "js",
|
|
1010
|
-
"name": "
|
|
1018
|
+
"name": "zeroAccordionItemTemplate",
|
|
1011
1019
|
"declaration": {
|
|
1012
|
-
"name": "
|
|
1013
|
-
"module": "src/accordion/accordion.template.ts"
|
|
1020
|
+
"name": "zeroAccordionItemTemplate",
|
|
1021
|
+
"module": "src/accordion-item/accordion-item.template.ts"
|
|
1014
1022
|
}
|
|
1015
1023
|
}
|
|
1016
1024
|
]
|
|
1017
1025
|
},
|
|
1018
1026
|
{
|
|
1019
1027
|
"kind": "javascript-module",
|
|
1020
|
-
"path": "src/accordion/accordion.ts",
|
|
1028
|
+
"path": "src/accordion-item/accordion-item.ts",
|
|
1021
1029
|
"declarations": [
|
|
1022
1030
|
{
|
|
1023
1031
|
"kind": "class",
|
|
1024
1032
|
"description": "",
|
|
1025
|
-
"name": "
|
|
1033
|
+
"name": "AccordionItem",
|
|
1026
1034
|
"superclass": {
|
|
1027
|
-
"name": "
|
|
1035
|
+
"name": "FoundationAccordionItem",
|
|
1028
1036
|
"package": "@genesislcap/foundation-ui"
|
|
1029
1037
|
},
|
|
1030
1038
|
"tagName": "%%prefix%%-card",
|
|
1031
1039
|
"customElement": true,
|
|
1032
1040
|
"attributes": [
|
|
1033
1041
|
{
|
|
1034
|
-
"name": "
|
|
1035
|
-
"type": {
|
|
1036
|
-
"text": "AccordionExpandMode"
|
|
1037
|
-
},
|
|
1038
|
-
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
1039
|
-
"fieldName": "expandmode",
|
|
1040
|
-
"inheritedFrom": {
|
|
1041
|
-
"name": "Accordion",
|
|
1042
|
-
"module": "src/accordion/accordion.ts"
|
|
1043
|
-
}
|
|
1044
|
-
}
|
|
1045
|
-
],
|
|
1046
|
-
"members": [
|
|
1047
|
-
{
|
|
1048
|
-
"kind": "field",
|
|
1049
|
-
"name": "expandmode",
|
|
1042
|
+
"name": "heading-level",
|
|
1050
1043
|
"type": {
|
|
1051
|
-
"text": "
|
|
1044
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1052
1045
|
},
|
|
1053
|
-
"
|
|
1054
|
-
"description": "
|
|
1046
|
+
"default": "2",
|
|
1047
|
+
"description": "Configures the https://www.w3.org/TR/wai-aria-1.1/#aria-level | level of the\nheading element.",
|
|
1048
|
+
"fieldName": "headinglevel",
|
|
1055
1049
|
"inheritedFrom": {
|
|
1056
|
-
"name": "
|
|
1057
|
-
"module": "src/accordion/accordion.ts"
|
|
1050
|
+
"name": "AccordionItem",
|
|
1051
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1058
1052
|
}
|
|
1059
1053
|
},
|
|
1060
1054
|
{
|
|
1061
|
-
"kind": "field",
|
|
1062
|
-
"name": "activeid",
|
|
1063
1055
|
"type": {
|
|
1064
|
-
"text": "
|
|
1056
|
+
"text": "boolean"
|
|
1065
1057
|
},
|
|
1066
|
-
"
|
|
1058
|
+
"default": "false",
|
|
1059
|
+
"description": "Expands or collapses the item.",
|
|
1060
|
+
"fieldName": "expanded",
|
|
1067
1061
|
"inheritedFrom": {
|
|
1068
|
-
"name": "
|
|
1069
|
-
"module": "src/accordion/accordion.ts"
|
|
1062
|
+
"name": "AccordionItem",
|
|
1063
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1070
1064
|
}
|
|
1071
1065
|
},
|
|
1072
1066
|
{
|
|
1073
|
-
"
|
|
1074
|
-
"name": "activeItemIndex",
|
|
1067
|
+
"name": "id",
|
|
1075
1068
|
"type": {
|
|
1076
|
-
"text": "
|
|
1069
|
+
"text": "string"
|
|
1077
1070
|
},
|
|
1078
|
-
"
|
|
1079
|
-
"
|
|
1071
|
+
"description": "The item ID",
|
|
1072
|
+
"fieldName": "id",
|
|
1080
1073
|
"inheritedFrom": {
|
|
1081
|
-
"name": "
|
|
1082
|
-
"module": "src/accordion/accordion.ts"
|
|
1074
|
+
"name": "AccordionItem",
|
|
1075
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1083
1076
|
}
|
|
1084
|
-
}
|
|
1077
|
+
}
|
|
1078
|
+
],
|
|
1079
|
+
"members": [
|
|
1085
1080
|
{
|
|
1086
1081
|
"kind": "field",
|
|
1087
|
-
"name": "
|
|
1082
|
+
"name": "headinglevel",
|
|
1088
1083
|
"type": {
|
|
1089
|
-
"text": "
|
|
1090
|
-
},
|
|
1091
|
-
"privacy": "private",
|
|
1092
|
-
"inheritedFrom": {
|
|
1093
|
-
"name": "Accordion",
|
|
1094
|
-
"module": "src/accordion/accordion.ts"
|
|
1095
|
-
}
|
|
1096
|
-
},
|
|
1097
|
-
{
|
|
1098
|
-
"kind": "field",
|
|
1099
|
-
"name": "change",
|
|
1100
|
-
"privacy": "private",
|
|
1101
|
-
"inheritedFrom": {
|
|
1102
|
-
"name": "Accordion",
|
|
1103
|
-
"module": "src/accordion/accordion.ts"
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
"kind": "method",
|
|
1108
|
-
"name": "findExpandedItem",
|
|
1109
|
-
"privacy": "private",
|
|
1110
|
-
"return": {
|
|
1111
|
-
"type": {
|
|
1112
|
-
"text": "AccordionItem | null"
|
|
1113
|
-
}
|
|
1084
|
+
"text": "1 | 2 | 3 | 4 | 5 | 6"
|
|
1114
1085
|
},
|
|
1086
|
+
"privacy": "public",
|
|
1087
|
+
"default": "2",
|
|
1088
|
+
"description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
|
|
1115
1089
|
"inheritedFrom": {
|
|
1116
|
-
"name": "
|
|
1117
|
-
"module": "src/accordion/accordion.ts"
|
|
1090
|
+
"name": "AccordionItem",
|
|
1091
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1118
1092
|
}
|
|
1119
1093
|
},
|
|
1120
1094
|
{
|
|
1121
1095
|
"kind": "field",
|
|
1122
|
-
"name": "
|
|
1123
|
-
"
|
|
1124
|
-
|
|
1125
|
-
"name": "Accordion",
|
|
1126
|
-
"module": "src/accordion/accordion.ts"
|
|
1127
|
-
}
|
|
1128
|
-
},
|
|
1129
|
-
{
|
|
1130
|
-
"kind": "method",
|
|
1131
|
-
"name": "resetItems",
|
|
1132
|
-
"privacy": "private",
|
|
1133
|
-
"return": {
|
|
1134
|
-
"type": {
|
|
1135
|
-
"text": "void"
|
|
1136
|
-
}
|
|
1096
|
+
"name": "expanded",
|
|
1097
|
+
"type": {
|
|
1098
|
+
"text": "boolean"
|
|
1137
1099
|
},
|
|
1100
|
+
"privacy": "public",
|
|
1101
|
+
"default": "false",
|
|
1102
|
+
"description": "Expands or collapses the item.",
|
|
1138
1103
|
"inheritedFrom": {
|
|
1139
|
-
"name": "
|
|
1140
|
-
"module": "src/accordion/accordion.ts"
|
|
1141
|
-
}
|
|
1142
|
-
},
|
|
1143
|
-
{
|
|
1144
|
-
"kind": "field",
|
|
1145
|
-
"name": "removeItemListeners",
|
|
1146
|
-
"privacy": "private",
|
|
1147
|
-
"inheritedFrom": {
|
|
1148
|
-
"name": "Accordion",
|
|
1149
|
-
"module": "src/accordion/accordion.ts"
|
|
1104
|
+
"name": "AccordionItem",
|
|
1105
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1150
1106
|
}
|
|
1151
1107
|
},
|
|
1152
1108
|
{
|
|
1153
1109
|
"kind": "field",
|
|
1154
|
-
"name": "
|
|
1155
|
-
"
|
|
1156
|
-
|
|
1157
|
-
"name": "Accordion",
|
|
1158
|
-
"module": "src/accordion/accordion.ts"
|
|
1159
|
-
}
|
|
1160
|
-
},
|
|
1161
|
-
{
|
|
1162
|
-
"kind": "method",
|
|
1163
|
-
"name": "getItemIds",
|
|
1164
|
-
"privacy": "private",
|
|
1165
|
-
"return": {
|
|
1166
|
-
"type": {
|
|
1167
|
-
"text": "Array<string | null>"
|
|
1168
|
-
}
|
|
1169
|
-
},
|
|
1170
|
-
"inheritedFrom": {
|
|
1171
|
-
"name": "Accordion",
|
|
1172
|
-
"module": "src/accordion/accordion.ts"
|
|
1173
|
-
}
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
"kind": "method",
|
|
1177
|
-
"name": "isSingleExpandMode",
|
|
1178
|
-
"privacy": "private",
|
|
1179
|
-
"return": {
|
|
1180
|
-
"type": {
|
|
1181
|
-
"text": "boolean"
|
|
1182
|
-
}
|
|
1110
|
+
"name": "id",
|
|
1111
|
+
"type": {
|
|
1112
|
+
"text": "string"
|
|
1183
1113
|
},
|
|
1114
|
+
"privacy": "public",
|
|
1115
|
+
"description": "The item ID",
|
|
1184
1116
|
"inheritedFrom": {
|
|
1185
|
-
"name": "
|
|
1186
|
-
"module": "src/accordion/accordion.ts"
|
|
1187
|
-
}
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
"kind": "field",
|
|
1191
|
-
"name": "handleItemKeyDown",
|
|
1192
|
-
"privacy": "private",
|
|
1193
|
-
"inheritedFrom": {
|
|
1194
|
-
"name": "Accordion",
|
|
1195
|
-
"module": "src/accordion/accordion.ts"
|
|
1117
|
+
"name": "AccordionItem",
|
|
1118
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1196
1119
|
}
|
|
1197
1120
|
},
|
|
1198
1121
|
{
|
|
1199
1122
|
"kind": "field",
|
|
1200
|
-
"name": "
|
|
1201
|
-
"privacy": "private",
|
|
1202
|
-
"inheritedFrom": {
|
|
1203
|
-
"name": "Accordion",
|
|
1204
|
-
"module": "src/accordion/accordion.ts"
|
|
1205
|
-
}
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
"kind": "method",
|
|
1209
|
-
"name": "adjust",
|
|
1123
|
+
"name": "change",
|
|
1210
1124
|
"privacy": "private",
|
|
1211
|
-
"return": {
|
|
1212
|
-
"type": {
|
|
1213
|
-
"text": "void"
|
|
1214
|
-
}
|
|
1215
|
-
},
|
|
1216
|
-
"parameters": [
|
|
1217
|
-
{
|
|
1218
|
-
"name": "adjustment",
|
|
1219
|
-
"type": {
|
|
1220
|
-
"text": "number"
|
|
1221
|
-
}
|
|
1222
|
-
}
|
|
1223
|
-
],
|
|
1224
1125
|
"inheritedFrom": {
|
|
1225
|
-
"name": "
|
|
1226
|
-
"module": "src/accordion/accordion.ts"
|
|
1227
|
-
}
|
|
1228
|
-
},
|
|
1229
|
-
{
|
|
1230
|
-
"kind": "method",
|
|
1231
|
-
"name": "focusItem",
|
|
1232
|
-
"privacy": "private",
|
|
1233
|
-
"return": {
|
|
1234
|
-
"type": {
|
|
1235
|
-
"text": "void"
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
"inheritedFrom": {
|
|
1239
|
-
"name": "Accordion",
|
|
1240
|
-
"module": "src/accordion/accordion.ts"
|
|
1126
|
+
"name": "AccordionItem",
|
|
1127
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1241
1128
|
}
|
|
1242
1129
|
},
|
|
1243
1130
|
{
|
|
@@ -1249,8 +1136,8 @@
|
|
|
1249
1136
|
"privacy": "private",
|
|
1250
1137
|
"default": "void 0",
|
|
1251
1138
|
"inheritedFrom": {
|
|
1252
|
-
"name": "
|
|
1253
|
-
"module": "src/accordion/accordion.ts"
|
|
1139
|
+
"name": "AccordionItem",
|
|
1140
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1254
1141
|
}
|
|
1255
1142
|
},
|
|
1256
1143
|
{
|
|
@@ -1262,8 +1149,8 @@
|
|
|
1262
1149
|
"privacy": "public",
|
|
1263
1150
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1264
1151
|
"inheritedFrom": {
|
|
1265
|
-
"name": "
|
|
1266
|
-
"module": "src/accordion/accordion.ts"
|
|
1152
|
+
"name": "AccordionItem",
|
|
1153
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1267
1154
|
}
|
|
1268
1155
|
},
|
|
1269
1156
|
{
|
|
@@ -1275,8 +1162,8 @@
|
|
|
1275
1162
|
"privacy": "public",
|
|
1276
1163
|
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
1277
1164
|
"inheritedFrom": {
|
|
1278
|
-
"name": "
|
|
1279
|
-
"module": "src/accordion/accordion.ts"
|
|
1165
|
+
"name": "AccordionItem",
|
|
1166
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1280
1167
|
}
|
|
1281
1168
|
},
|
|
1282
1169
|
{
|
|
@@ -1289,8 +1176,8 @@
|
|
|
1289
1176
|
}
|
|
1290
1177
|
},
|
|
1291
1178
|
"inheritedFrom": {
|
|
1292
|
-
"name": "
|
|
1293
|
-
"module": "src/accordion/accordion.ts"
|
|
1179
|
+
"name": "AccordionItem",
|
|
1180
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1294
1181
|
}
|
|
1295
1182
|
},
|
|
1296
1183
|
{
|
|
@@ -1302,8 +1189,8 @@
|
|
|
1302
1189
|
"privacy": "public",
|
|
1303
1190
|
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
1304
1191
|
"inheritedFrom": {
|
|
1305
|
-
"name": "
|
|
1306
|
-
"module": "src/accordion/accordion.ts"
|
|
1192
|
+
"name": "AccordionItem",
|
|
1193
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1307
1194
|
}
|
|
1308
1195
|
},
|
|
1309
1196
|
{
|
|
@@ -1316,8 +1203,8 @@
|
|
|
1316
1203
|
}
|
|
1317
1204
|
},
|
|
1318
1205
|
"inheritedFrom": {
|
|
1319
|
-
"name": "
|
|
1320
|
-
"module": "src/accordion/accordion.ts"
|
|
1206
|
+
"name": "AccordionItem",
|
|
1207
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1321
1208
|
}
|
|
1322
1209
|
},
|
|
1323
1210
|
{
|
|
@@ -1347,49 +1234,49 @@
|
|
|
1347
1234
|
],
|
|
1348
1235
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1349
1236
|
"inheritedFrom": {
|
|
1350
|
-
"name": "
|
|
1351
|
-
"module": "src/accordion/accordion.ts"
|
|
1237
|
+
"name": "AccordionItem",
|
|
1238
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1352
1239
|
}
|
|
1353
1240
|
}
|
|
1354
1241
|
],
|
|
1355
1242
|
"events": [
|
|
1356
1243
|
{
|
|
1357
|
-
"description": "Fires a custom 'change' event when the
|
|
1244
|
+
"description": "Fires a custom 'change' event when the button is invoked",
|
|
1358
1245
|
"name": "change",
|
|
1359
1246
|
"inheritedFrom": {
|
|
1360
|
-
"name": "
|
|
1361
|
-
"module": "src/accordion/accordion.ts"
|
|
1247
|
+
"name": "AccordionItem",
|
|
1248
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1362
1249
|
}
|
|
1363
1250
|
}
|
|
1364
1251
|
]
|
|
1365
1252
|
},
|
|
1366
1253
|
{
|
|
1367
1254
|
"kind": "variable",
|
|
1368
|
-
"name": "
|
|
1255
|
+
"name": "zeroAccordionItem"
|
|
1369
1256
|
}
|
|
1370
1257
|
],
|
|
1371
1258
|
"exports": [
|
|
1372
1259
|
{
|
|
1373
1260
|
"kind": "js",
|
|
1374
|
-
"name": "
|
|
1261
|
+
"name": "AccordionItem",
|
|
1375
1262
|
"declaration": {
|
|
1376
|
-
"name": "
|
|
1377
|
-
"module": "src/accordion/accordion.ts"
|
|
1263
|
+
"name": "AccordionItem",
|
|
1264
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1378
1265
|
}
|
|
1379
1266
|
},
|
|
1380
1267
|
{
|
|
1381
1268
|
"kind": "js",
|
|
1382
|
-
"name": "
|
|
1269
|
+
"name": "zeroAccordionItem",
|
|
1383
1270
|
"declaration": {
|
|
1384
|
-
"name": "
|
|
1385
|
-
"module": "src/accordion/accordion.ts"
|
|
1271
|
+
"name": "zeroAccordionItem",
|
|
1272
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1386
1273
|
}
|
|
1387
1274
|
}
|
|
1388
1275
|
]
|
|
1389
1276
|
},
|
|
1390
1277
|
{
|
|
1391
1278
|
"kind": "javascript-module",
|
|
1392
|
-
"path": "src/accordion/index.ts",
|
|
1279
|
+
"path": "src/accordion-item/index.ts",
|
|
1393
1280
|
"declarations": [],
|
|
1394
1281
|
"exports": [
|
|
1395
1282
|
{
|
|
@@ -1397,7 +1284,7 @@
|
|
|
1397
1284
|
"name": "*",
|
|
1398
1285
|
"declaration": {
|
|
1399
1286
|
"name": "*",
|
|
1400
|
-
"package": "./accordion"
|
|
1287
|
+
"package": "./accordion-item"
|
|
1401
1288
|
}
|
|
1402
1289
|
},
|
|
1403
1290
|
{
|
|
@@ -1405,7 +1292,7 @@
|
|
|
1405
1292
|
"name": "*",
|
|
1406
1293
|
"declaration": {
|
|
1407
1294
|
"name": "*",
|
|
1408
|
-
"package": "./accordion.styles"
|
|
1295
|
+
"package": "./accordion-item.styles"
|
|
1409
1296
|
}
|
|
1410
1297
|
},
|
|
1411
1298
|
{
|
|
@@ -1413,18 +1300,18 @@
|
|
|
1413
1300
|
"name": "*",
|
|
1414
1301
|
"declaration": {
|
|
1415
1302
|
"name": "*",
|
|
1416
|
-
"package": "./accordion.template"
|
|
1303
|
+
"package": "./accordion-item.template"
|
|
1417
1304
|
}
|
|
1418
1305
|
}
|
|
1419
1306
|
]
|
|
1420
1307
|
},
|
|
1421
1308
|
{
|
|
1422
1309
|
"kind": "javascript-module",
|
|
1423
|
-
"path": "src/accordion
|
|
1310
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
1424
1311
|
"declarations": [
|
|
1425
1312
|
{
|
|
1426
1313
|
"kind": "function",
|
|
1427
|
-
"name": "
|
|
1314
|
+
"name": "zeroAccordionStyles",
|
|
1428
1315
|
"return": {
|
|
1429
1316
|
"type": {
|
|
1430
1317
|
"text": "ElementStyles"
|
|
@@ -1449,24 +1336,24 @@
|
|
|
1449
1336
|
"exports": [
|
|
1450
1337
|
{
|
|
1451
1338
|
"kind": "js",
|
|
1452
|
-
"name": "
|
|
1339
|
+
"name": "zeroAccordionStyles",
|
|
1453
1340
|
"declaration": {
|
|
1454
|
-
"name": "
|
|
1455
|
-
"module": "src/accordion
|
|
1341
|
+
"name": "zeroAccordionStyles",
|
|
1342
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
1456
1343
|
}
|
|
1457
1344
|
}
|
|
1458
1345
|
]
|
|
1459
1346
|
},
|
|
1460
1347
|
{
|
|
1461
1348
|
"kind": "javascript-module",
|
|
1462
|
-
"path": "src/accordion
|
|
1349
|
+
"path": "src/accordion/accordion.template.ts",
|
|
1463
1350
|
"declarations": [
|
|
1464
1351
|
{
|
|
1465
1352
|
"kind": "function",
|
|
1466
|
-
"name": "
|
|
1353
|
+
"name": "zeroAccordionTemplate",
|
|
1467
1354
|
"return": {
|
|
1468
1355
|
"type": {
|
|
1469
|
-
"text": "ViewTemplate<
|
|
1356
|
+
"text": "ViewTemplate<Accordion>"
|
|
1470
1357
|
}
|
|
1471
1358
|
},
|
|
1472
1359
|
"parameters": [
|
|
@@ -1488,116 +1375,237 @@
|
|
|
1488
1375
|
"exports": [
|
|
1489
1376
|
{
|
|
1490
1377
|
"kind": "js",
|
|
1491
|
-
"name": "
|
|
1378
|
+
"name": "zeroAccordionTemplate",
|
|
1492
1379
|
"declaration": {
|
|
1493
|
-
"name": "
|
|
1494
|
-
"module": "src/accordion
|
|
1380
|
+
"name": "zeroAccordionTemplate",
|
|
1381
|
+
"module": "src/accordion/accordion.template.ts"
|
|
1495
1382
|
}
|
|
1496
1383
|
}
|
|
1497
1384
|
]
|
|
1498
1385
|
},
|
|
1499
1386
|
{
|
|
1500
1387
|
"kind": "javascript-module",
|
|
1501
|
-
"path": "src/accordion
|
|
1388
|
+
"path": "src/accordion/accordion.ts",
|
|
1502
1389
|
"declarations": [
|
|
1503
1390
|
{
|
|
1504
1391
|
"kind": "class",
|
|
1505
1392
|
"description": "",
|
|
1506
|
-
"name": "
|
|
1393
|
+
"name": "Accordion",
|
|
1507
1394
|
"superclass": {
|
|
1508
|
-
"name": "
|
|
1395
|
+
"name": "FoundationAccordion",
|
|
1509
1396
|
"package": "@genesislcap/foundation-ui"
|
|
1510
1397
|
},
|
|
1511
1398
|
"tagName": "%%prefix%%-card",
|
|
1512
1399
|
"customElement": true,
|
|
1513
1400
|
"attributes": [
|
|
1514
1401
|
{
|
|
1515
|
-
"name": "
|
|
1402
|
+
"name": "expand-mode",
|
|
1516
1403
|
"type": {
|
|
1517
|
-
"text": "
|
|
1404
|
+
"text": "AccordionExpandMode"
|
|
1518
1405
|
},
|
|
1519
|
-
"
|
|
1520
|
-
"
|
|
1521
|
-
"fieldName": "headinglevel",
|
|
1406
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
1407
|
+
"fieldName": "expandmode",
|
|
1522
1408
|
"inheritedFrom": {
|
|
1523
|
-
"name": "
|
|
1524
|
-
"module": "src/accordion
|
|
1409
|
+
"name": "Accordion",
|
|
1410
|
+
"module": "src/accordion/accordion.ts"
|
|
1525
1411
|
}
|
|
1526
|
-
}
|
|
1412
|
+
}
|
|
1413
|
+
],
|
|
1414
|
+
"members": [
|
|
1527
1415
|
{
|
|
1416
|
+
"kind": "field",
|
|
1417
|
+
"name": "expandmode",
|
|
1528
1418
|
"type": {
|
|
1529
|
-
"text": "
|
|
1419
|
+
"text": "AccordionExpandMode"
|
|
1530
1420
|
},
|
|
1531
|
-
"
|
|
1532
|
-
"description": "
|
|
1533
|
-
"fieldName": "expanded",
|
|
1421
|
+
"privacy": "public",
|
|
1422
|
+
"description": "Controls the expand mode of the Accordion, either allowing\nsingle or multiple item expansion.",
|
|
1534
1423
|
"inheritedFrom": {
|
|
1535
|
-
"name": "
|
|
1536
|
-
"module": "src/accordion
|
|
1424
|
+
"name": "Accordion",
|
|
1425
|
+
"module": "src/accordion/accordion.ts"
|
|
1537
1426
|
}
|
|
1538
1427
|
},
|
|
1539
1428
|
{
|
|
1540
|
-
"
|
|
1429
|
+
"kind": "field",
|
|
1430
|
+
"name": "activeid",
|
|
1541
1431
|
"type": {
|
|
1542
|
-
"text": "string"
|
|
1432
|
+
"text": "string | null"
|
|
1543
1433
|
},
|
|
1544
|
-
"
|
|
1545
|
-
"fieldName": "id",
|
|
1434
|
+
"privacy": "private",
|
|
1546
1435
|
"inheritedFrom": {
|
|
1547
|
-
"name": "
|
|
1548
|
-
"module": "src/accordion
|
|
1436
|
+
"name": "Accordion",
|
|
1437
|
+
"module": "src/accordion/accordion.ts"
|
|
1549
1438
|
}
|
|
1550
|
-
}
|
|
1551
|
-
],
|
|
1552
|
-
"members": [
|
|
1439
|
+
},
|
|
1553
1440
|
{
|
|
1554
1441
|
"kind": "field",
|
|
1555
|
-
"name": "
|
|
1442
|
+
"name": "activeItemIndex",
|
|
1556
1443
|
"type": {
|
|
1557
|
-
"text": "
|
|
1444
|
+
"text": "number"
|
|
1558
1445
|
},
|
|
1559
|
-
"privacy": "
|
|
1560
|
-
"default": "
|
|
1561
|
-
"description": "Configures the {@link https://www.w3.org/TR/wai-aria-1.1/#aria-level | level} of the heading element.",
|
|
1446
|
+
"privacy": "private",
|
|
1447
|
+
"default": "0",
|
|
1562
1448
|
"inheritedFrom": {
|
|
1563
|
-
"name": "
|
|
1564
|
-
"module": "src/accordion
|
|
1449
|
+
"name": "Accordion",
|
|
1450
|
+
"module": "src/accordion/accordion.ts"
|
|
1565
1451
|
}
|
|
1566
1452
|
},
|
|
1567
1453
|
{
|
|
1568
1454
|
"kind": "field",
|
|
1569
|
-
"name": "
|
|
1455
|
+
"name": "accordionIds",
|
|
1570
1456
|
"type": {
|
|
1571
|
-
"text": "
|
|
1457
|
+
"text": "Array<string | null>"
|
|
1572
1458
|
},
|
|
1573
|
-
"privacy": "
|
|
1574
|
-
"default": "false",
|
|
1575
|
-
"description": "Expands or collapses the item.",
|
|
1459
|
+
"privacy": "private",
|
|
1576
1460
|
"inheritedFrom": {
|
|
1577
|
-
"name": "
|
|
1578
|
-
"module": "src/accordion
|
|
1461
|
+
"name": "Accordion",
|
|
1462
|
+
"module": "src/accordion/accordion.ts"
|
|
1579
1463
|
}
|
|
1580
1464
|
},
|
|
1581
1465
|
{
|
|
1582
1466
|
"kind": "field",
|
|
1583
|
-
"name": "
|
|
1584
|
-
"
|
|
1585
|
-
|
|
1467
|
+
"name": "change",
|
|
1468
|
+
"privacy": "private",
|
|
1469
|
+
"inheritedFrom": {
|
|
1470
|
+
"name": "Accordion",
|
|
1471
|
+
"module": "src/accordion/accordion.ts"
|
|
1472
|
+
}
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"kind": "method",
|
|
1476
|
+
"name": "findExpandedItem",
|
|
1477
|
+
"privacy": "private",
|
|
1478
|
+
"return": {
|
|
1479
|
+
"type": {
|
|
1480
|
+
"text": "AccordionItem | null"
|
|
1481
|
+
}
|
|
1586
1482
|
},
|
|
1587
|
-
"privacy": "public",
|
|
1588
|
-
"description": "The item ID",
|
|
1589
1483
|
"inheritedFrom": {
|
|
1590
|
-
"name": "
|
|
1591
|
-
"module": "src/accordion
|
|
1484
|
+
"name": "Accordion",
|
|
1485
|
+
"module": "src/accordion/accordion.ts"
|
|
1592
1486
|
}
|
|
1593
1487
|
},
|
|
1594
1488
|
{
|
|
1595
1489
|
"kind": "field",
|
|
1596
|
-
"name": "
|
|
1490
|
+
"name": "setItems",
|
|
1597
1491
|
"privacy": "private",
|
|
1598
1492
|
"inheritedFrom": {
|
|
1599
|
-
"name": "
|
|
1600
|
-
"module": "src/accordion
|
|
1493
|
+
"name": "Accordion",
|
|
1494
|
+
"module": "src/accordion/accordion.ts"
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"kind": "method",
|
|
1499
|
+
"name": "resetItems",
|
|
1500
|
+
"privacy": "private",
|
|
1501
|
+
"return": {
|
|
1502
|
+
"type": {
|
|
1503
|
+
"text": "void"
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
"inheritedFrom": {
|
|
1507
|
+
"name": "Accordion",
|
|
1508
|
+
"module": "src/accordion/accordion.ts"
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"kind": "field",
|
|
1513
|
+
"name": "removeItemListeners",
|
|
1514
|
+
"privacy": "private",
|
|
1515
|
+
"inheritedFrom": {
|
|
1516
|
+
"name": "Accordion",
|
|
1517
|
+
"module": "src/accordion/accordion.ts"
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"kind": "field",
|
|
1522
|
+
"name": "activeItemChange",
|
|
1523
|
+
"privacy": "private",
|
|
1524
|
+
"inheritedFrom": {
|
|
1525
|
+
"name": "Accordion",
|
|
1526
|
+
"module": "src/accordion/accordion.ts"
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"kind": "method",
|
|
1531
|
+
"name": "getItemIds",
|
|
1532
|
+
"privacy": "private",
|
|
1533
|
+
"return": {
|
|
1534
|
+
"type": {
|
|
1535
|
+
"text": "Array<string | null>"
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1538
|
+
"inheritedFrom": {
|
|
1539
|
+
"name": "Accordion",
|
|
1540
|
+
"module": "src/accordion/accordion.ts"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
"kind": "method",
|
|
1545
|
+
"name": "isSingleExpandMode",
|
|
1546
|
+
"privacy": "private",
|
|
1547
|
+
"return": {
|
|
1548
|
+
"type": {
|
|
1549
|
+
"text": "boolean"
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
"inheritedFrom": {
|
|
1553
|
+
"name": "Accordion",
|
|
1554
|
+
"module": "src/accordion/accordion.ts"
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"kind": "field",
|
|
1559
|
+
"name": "handleItemKeyDown",
|
|
1560
|
+
"privacy": "private",
|
|
1561
|
+
"inheritedFrom": {
|
|
1562
|
+
"name": "Accordion",
|
|
1563
|
+
"module": "src/accordion/accordion.ts"
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"kind": "field",
|
|
1568
|
+
"name": "handleItemFocus",
|
|
1569
|
+
"privacy": "private",
|
|
1570
|
+
"inheritedFrom": {
|
|
1571
|
+
"name": "Accordion",
|
|
1572
|
+
"module": "src/accordion/accordion.ts"
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"kind": "method",
|
|
1577
|
+
"name": "adjust",
|
|
1578
|
+
"privacy": "private",
|
|
1579
|
+
"return": {
|
|
1580
|
+
"type": {
|
|
1581
|
+
"text": "void"
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"parameters": [
|
|
1585
|
+
{
|
|
1586
|
+
"name": "adjustment",
|
|
1587
|
+
"type": {
|
|
1588
|
+
"text": "number"
|
|
1589
|
+
}
|
|
1590
|
+
}
|
|
1591
|
+
],
|
|
1592
|
+
"inheritedFrom": {
|
|
1593
|
+
"name": "Accordion",
|
|
1594
|
+
"module": "src/accordion/accordion.ts"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"kind": "method",
|
|
1599
|
+
"name": "focusItem",
|
|
1600
|
+
"privacy": "private",
|
|
1601
|
+
"return": {
|
|
1602
|
+
"type": {
|
|
1603
|
+
"text": "void"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"inheritedFrom": {
|
|
1607
|
+
"name": "Accordion",
|
|
1608
|
+
"module": "src/accordion/accordion.ts"
|
|
1601
1609
|
}
|
|
1602
1610
|
},
|
|
1603
1611
|
{
|
|
@@ -1609,8 +1617,8 @@
|
|
|
1609
1617
|
"privacy": "private",
|
|
1610
1618
|
"default": "void 0",
|
|
1611
1619
|
"inheritedFrom": {
|
|
1612
|
-
"name": "
|
|
1613
|
-
"module": "src/accordion
|
|
1620
|
+
"name": "Accordion",
|
|
1621
|
+
"module": "src/accordion/accordion.ts"
|
|
1614
1622
|
}
|
|
1615
1623
|
},
|
|
1616
1624
|
{
|
|
@@ -1622,8 +1630,8 @@
|
|
|
1622
1630
|
"privacy": "public",
|
|
1623
1631
|
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1624
1632
|
"inheritedFrom": {
|
|
1625
|
-
"name": "
|
|
1626
|
-
"module": "src/accordion
|
|
1633
|
+
"name": "Accordion",
|
|
1634
|
+
"module": "src/accordion/accordion.ts"
|
|
1627
1635
|
}
|
|
1628
1636
|
},
|
|
1629
1637
|
{
|
|
@@ -1635,8 +1643,8 @@
|
|
|
1635
1643
|
"privacy": "public",
|
|
1636
1644
|
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
1637
1645
|
"inheritedFrom": {
|
|
1638
|
-
"name": "
|
|
1639
|
-
"module": "src/accordion
|
|
1646
|
+
"name": "Accordion",
|
|
1647
|
+
"module": "src/accordion/accordion.ts"
|
|
1640
1648
|
}
|
|
1641
1649
|
},
|
|
1642
1650
|
{
|
|
@@ -1649,8 +1657,8 @@
|
|
|
1649
1657
|
}
|
|
1650
1658
|
},
|
|
1651
1659
|
"inheritedFrom": {
|
|
1652
|
-
"name": "
|
|
1653
|
-
"module": "src/accordion
|
|
1660
|
+
"name": "Accordion",
|
|
1661
|
+
"module": "src/accordion/accordion.ts"
|
|
1654
1662
|
}
|
|
1655
1663
|
},
|
|
1656
1664
|
{
|
|
@@ -1662,8 +1670,8 @@
|
|
|
1662
1670
|
"privacy": "public",
|
|
1663
1671
|
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
1664
1672
|
"inheritedFrom": {
|
|
1665
|
-
"name": "
|
|
1666
|
-
"module": "src/accordion
|
|
1673
|
+
"name": "Accordion",
|
|
1674
|
+
"module": "src/accordion/accordion.ts"
|
|
1667
1675
|
}
|
|
1668
1676
|
},
|
|
1669
1677
|
{
|
|
@@ -1676,8 +1684,8 @@
|
|
|
1676
1684
|
}
|
|
1677
1685
|
},
|
|
1678
1686
|
"inheritedFrom": {
|
|
1679
|
-
"name": "
|
|
1680
|
-
"module": "src/accordion
|
|
1687
|
+
"name": "Accordion",
|
|
1688
|
+
"module": "src/accordion/accordion.ts"
|
|
1681
1689
|
}
|
|
1682
1690
|
},
|
|
1683
1691
|
{
|
|
@@ -1707,49 +1715,49 @@
|
|
|
1707
1715
|
],
|
|
1708
1716
|
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
1709
1717
|
"inheritedFrom": {
|
|
1710
|
-
"name": "
|
|
1711
|
-
"module": "src/accordion
|
|
1718
|
+
"name": "Accordion",
|
|
1719
|
+
"module": "src/accordion/accordion.ts"
|
|
1712
1720
|
}
|
|
1713
1721
|
}
|
|
1714
1722
|
],
|
|
1715
1723
|
"events": [
|
|
1716
1724
|
{
|
|
1717
|
-
"description": "Fires a custom 'change' event when the
|
|
1725
|
+
"description": "Fires a custom 'change' event when the active item changes",
|
|
1718
1726
|
"name": "change",
|
|
1719
1727
|
"inheritedFrom": {
|
|
1720
|
-
"name": "
|
|
1721
|
-
"module": "src/accordion
|
|
1728
|
+
"name": "Accordion",
|
|
1729
|
+
"module": "src/accordion/accordion.ts"
|
|
1722
1730
|
}
|
|
1723
1731
|
}
|
|
1724
1732
|
]
|
|
1725
1733
|
},
|
|
1726
1734
|
{
|
|
1727
1735
|
"kind": "variable",
|
|
1728
|
-
"name": "
|
|
1736
|
+
"name": "zeroAccordion"
|
|
1729
1737
|
}
|
|
1730
1738
|
],
|
|
1731
1739
|
"exports": [
|
|
1732
1740
|
{
|
|
1733
1741
|
"kind": "js",
|
|
1734
|
-
"name": "
|
|
1742
|
+
"name": "Accordion",
|
|
1735
1743
|
"declaration": {
|
|
1736
|
-
"name": "
|
|
1737
|
-
"module": "src/accordion
|
|
1744
|
+
"name": "Accordion",
|
|
1745
|
+
"module": "src/accordion/accordion.ts"
|
|
1738
1746
|
}
|
|
1739
1747
|
},
|
|
1740
1748
|
{
|
|
1741
1749
|
"kind": "js",
|
|
1742
|
-
"name": "
|
|
1750
|
+
"name": "zeroAccordion",
|
|
1743
1751
|
"declaration": {
|
|
1744
|
-
"name": "
|
|
1745
|
-
"module": "src/accordion
|
|
1752
|
+
"name": "zeroAccordion",
|
|
1753
|
+
"module": "src/accordion/accordion.ts"
|
|
1746
1754
|
}
|
|
1747
1755
|
}
|
|
1748
1756
|
]
|
|
1749
1757
|
},
|
|
1750
1758
|
{
|
|
1751
1759
|
"kind": "javascript-module",
|
|
1752
|
-
"path": "src/accordion
|
|
1760
|
+
"path": "src/accordion/index.ts",
|
|
1753
1761
|
"declarations": [],
|
|
1754
1762
|
"exports": [
|
|
1755
1763
|
{
|
|
@@ -1757,7 +1765,7 @@
|
|
|
1757
1765
|
"name": "*",
|
|
1758
1766
|
"declaration": {
|
|
1759
1767
|
"name": "*",
|
|
1760
|
-
"package": "./accordion
|
|
1768
|
+
"package": "./accordion"
|
|
1761
1769
|
}
|
|
1762
1770
|
},
|
|
1763
1771
|
{
|
|
@@ -1765,7 +1773,7 @@
|
|
|
1765
1773
|
"name": "*",
|
|
1766
1774
|
"declaration": {
|
|
1767
1775
|
"name": "*",
|
|
1768
|
-
"package": "./accordion
|
|
1776
|
+
"package": "./accordion.styles"
|
|
1769
1777
|
}
|
|
1770
1778
|
},
|
|
1771
1779
|
{
|
|
@@ -1773,7 +1781,7 @@
|
|
|
1773
1781
|
"name": "*",
|
|
1774
1782
|
"declaration": {
|
|
1775
1783
|
"name": "*",
|
|
1776
|
-
"package": "./accordion
|
|
1784
|
+
"package": "./accordion.template"
|
|
1777
1785
|
}
|
|
1778
1786
|
}
|
|
1779
1787
|
]
|
|
@@ -46603,6 +46611,949 @@
|
|
|
46603
46611
|
}
|
|
46604
46612
|
]
|
|
46605
46613
|
},
|
|
46614
|
+
{
|
|
46615
|
+
"kind": "javascript-module",
|
|
46616
|
+
"path": "src/verification-code-input/index.ts",
|
|
46617
|
+
"declarations": [],
|
|
46618
|
+
"exports": [
|
|
46619
|
+
{
|
|
46620
|
+
"kind": "js",
|
|
46621
|
+
"name": "*",
|
|
46622
|
+
"declaration": {
|
|
46623
|
+
"name": "*",
|
|
46624
|
+
"package": "./verification-code-input"
|
|
46625
|
+
}
|
|
46626
|
+
},
|
|
46627
|
+
{
|
|
46628
|
+
"kind": "js",
|
|
46629
|
+
"name": "*",
|
|
46630
|
+
"declaration": {
|
|
46631
|
+
"name": "*",
|
|
46632
|
+
"package": "./verification-code-input.styles"
|
|
46633
|
+
}
|
|
46634
|
+
},
|
|
46635
|
+
{
|
|
46636
|
+
"kind": "js",
|
|
46637
|
+
"name": "*",
|
|
46638
|
+
"declaration": {
|
|
46639
|
+
"name": "*",
|
|
46640
|
+
"package": "./verification-code-input.template"
|
|
46641
|
+
}
|
|
46642
|
+
}
|
|
46643
|
+
]
|
|
46644
|
+
},
|
|
46645
|
+
{
|
|
46646
|
+
"kind": "javascript-module",
|
|
46647
|
+
"path": "src/verification-code-input/verification-code-input.styles.ts",
|
|
46648
|
+
"declarations": [
|
|
46649
|
+
{
|
|
46650
|
+
"kind": "variable",
|
|
46651
|
+
"name": "verificationCodeInputStyles",
|
|
46652
|
+
"type": {
|
|
46653
|
+
"text": "ElementStyles"
|
|
46654
|
+
},
|
|
46655
|
+
"default": "css`\n ${foundationVerificationCodeInputStyles}\n\n :host {\n --primary-gradient-angle: -113.5deg;\n }\n\n .digit .control {\n height: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n }\n\n .digit .root {\n border: calc(var(--stroke-width) * 1px) solid ${defaultRapidBorderUnfocusedColor};\n background-color: ${defaultRapidBGColor};\n }\n\n .digit:hover:not(.disabled) .root {\n border-color: ${defaultRapidTextColor};\n background: none;\n }\n\n .digit:focus-within:not(.disabled) .root {\n background:\n linear-gradient(\n var(--primary-gradient-angle),\n ${PrimaryRapidColorHEX.blue} 0%,\n ${PrimaryRapidColorHEX.purple} 100%\n )\n top/100% 1px,\n linear-gradient(\n var(--primary-gradient-angle),\n ${PrimaryRapidColorHEX.blue} 0%,\n ${PrimaryRapidColorHEX.purple} 100%\n )\n bottom/100% 1px;\n background-color: ${defaultRapidActiveBGColor};\n background-origin: border-box;\n background-repeat: no-repeat;\n border: 1px solid transparent;\n border-right-color: ${PrimaryRapidColorHEX.blue};\n border-left-color: ${PrimaryRapidColorHEX.purple};\n box-shadow: none;\n }\n\n .label {\n color: ${defaultRapidLabelColor};\n margin: calc(var(--design-unit) * 2px) 0;\n }\n\n .label-hidden {\n margin: 0;\n }\n`"
|
|
46656
|
+
}
|
|
46657
|
+
],
|
|
46658
|
+
"exports": [
|
|
46659
|
+
{
|
|
46660
|
+
"kind": "js",
|
|
46661
|
+
"name": "verificationCodeInputStyles",
|
|
46662
|
+
"declaration": {
|
|
46663
|
+
"name": "verificationCodeInputStyles",
|
|
46664
|
+
"module": "src/verification-code-input/verification-code-input.styles.ts"
|
|
46665
|
+
}
|
|
46666
|
+
}
|
|
46667
|
+
]
|
|
46668
|
+
},
|
|
46669
|
+
{
|
|
46670
|
+
"kind": "javascript-module",
|
|
46671
|
+
"path": "src/verification-code-input/verification-code-input.template.ts",
|
|
46672
|
+
"declarations": [
|
|
46673
|
+
{
|
|
46674
|
+
"kind": "variable",
|
|
46675
|
+
"name": "verificationCodeInputTemplate",
|
|
46676
|
+
"default": "foundationVerificationCodeInputTemplate"
|
|
46677
|
+
}
|
|
46678
|
+
],
|
|
46679
|
+
"exports": [
|
|
46680
|
+
{
|
|
46681
|
+
"kind": "js",
|
|
46682
|
+
"name": "verificationCodeInputTemplate",
|
|
46683
|
+
"declaration": {
|
|
46684
|
+
"name": "verificationCodeInputTemplate",
|
|
46685
|
+
"module": "src/verification-code-input/verification-code-input.template.ts"
|
|
46686
|
+
}
|
|
46687
|
+
}
|
|
46688
|
+
]
|
|
46689
|
+
},
|
|
46690
|
+
{
|
|
46691
|
+
"kind": "javascript-module",
|
|
46692
|
+
"path": "src/verification-code-input/verification-code-input.ts",
|
|
46693
|
+
"declarations": [
|
|
46694
|
+
{
|
|
46695
|
+
"kind": "class",
|
|
46696
|
+
"description": "",
|
|
46697
|
+
"name": "VerificationCodeInput",
|
|
46698
|
+
"superclass": {
|
|
46699
|
+
"name": "FoundationVerificationCodeInput",
|
|
46700
|
+
"package": "@genesislcap/foundation-ui"
|
|
46701
|
+
},
|
|
46702
|
+
"tagName": "%%prefix%%-verification-code-input",
|
|
46703
|
+
"customElement": true,
|
|
46704
|
+
"attributes": [
|
|
46705
|
+
{
|
|
46706
|
+
"name": "id",
|
|
46707
|
+
"type": {
|
|
46708
|
+
"text": "string"
|
|
46709
|
+
},
|
|
46710
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
46711
|
+
"fieldName": "id",
|
|
46712
|
+
"inheritedFrom": {
|
|
46713
|
+
"name": "VerificationCodeInput",
|
|
46714
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46715
|
+
}
|
|
46716
|
+
},
|
|
46717
|
+
{
|
|
46718
|
+
"name": "appearance",
|
|
46719
|
+
"type": {
|
|
46720
|
+
"text": "string"
|
|
46721
|
+
},
|
|
46722
|
+
"default": "'outline'",
|
|
46723
|
+
"description": "Visual treatment applied to each digit field.",
|
|
46724
|
+
"fieldName": "appearance",
|
|
46725
|
+
"inheritedFrom": {
|
|
46726
|
+
"name": "VerificationCodeInput",
|
|
46727
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46728
|
+
}
|
|
46729
|
+
},
|
|
46730
|
+
{
|
|
46731
|
+
"name": "digits",
|
|
46732
|
+
"type": {
|
|
46733
|
+
"text": "number"
|
|
46734
|
+
},
|
|
46735
|
+
"default": "DEFAULT_DIGITS",
|
|
46736
|
+
"description": "Number of single-character digit fields to render.",
|
|
46737
|
+
"resolveInitializer": {
|
|
46738
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46739
|
+
},
|
|
46740
|
+
"fieldName": "digits",
|
|
46741
|
+
"inheritedFrom": {
|
|
46742
|
+
"name": "VerificationCodeInput",
|
|
46743
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46744
|
+
}
|
|
46745
|
+
},
|
|
46746
|
+
{
|
|
46747
|
+
"name": "readonly",
|
|
46748
|
+
"type": {
|
|
46749
|
+
"text": "boolean"
|
|
46750
|
+
},
|
|
46751
|
+
"default": "false",
|
|
46752
|
+
"description": "When true, digit fields are non-interactive.",
|
|
46753
|
+
"fieldName": "readOnly",
|
|
46754
|
+
"inheritedFrom": {
|
|
46755
|
+
"name": "VerificationCodeInput",
|
|
46756
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46757
|
+
}
|
|
46758
|
+
},
|
|
46759
|
+
{
|
|
46760
|
+
"type": {
|
|
46761
|
+
"text": "boolean"
|
|
46762
|
+
},
|
|
46763
|
+
"default": "false",
|
|
46764
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
46765
|
+
"fieldName": "autofocus",
|
|
46766
|
+
"inheritedFrom": {
|
|
46767
|
+
"name": "VerificationCodeInput",
|
|
46768
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46769
|
+
}
|
|
46770
|
+
}
|
|
46771
|
+
],
|
|
46772
|
+
"members": [
|
|
46773
|
+
{
|
|
46774
|
+
"kind": "field",
|
|
46775
|
+
"name": "values",
|
|
46776
|
+
"type": {
|
|
46777
|
+
"text": "string[]"
|
|
46778
|
+
},
|
|
46779
|
+
"default": "[]",
|
|
46780
|
+
"description": "Per-digit values indexed from `0` to `digits - 1`.",
|
|
46781
|
+
"inheritedFrom": {
|
|
46782
|
+
"name": "VerificationCodeInput",
|
|
46783
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46784
|
+
}
|
|
46785
|
+
},
|
|
46786
|
+
{
|
|
46787
|
+
"kind": "field",
|
|
46788
|
+
"name": "defaultSlottedNodes",
|
|
46789
|
+
"description": "Slotted label content; when empty the label is visually hidden.",
|
|
46790
|
+
"inheritedFrom": {
|
|
46791
|
+
"name": "VerificationCodeInput",
|
|
46792
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46793
|
+
}
|
|
46794
|
+
},
|
|
46795
|
+
{
|
|
46796
|
+
"kind": "field",
|
|
46797
|
+
"name": "controlListeners",
|
|
46798
|
+
"type": {
|
|
46799
|
+
"text": "Map<HTMLInputElement, ControlListeners>"
|
|
46800
|
+
},
|
|
46801
|
+
"privacy": "private",
|
|
46802
|
+
"readonly": true,
|
|
46803
|
+
"default": "new Map()",
|
|
46804
|
+
"inheritedFrom": {
|
|
46805
|
+
"name": "VerificationCodeInput",
|
|
46806
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46807
|
+
}
|
|
46808
|
+
},
|
|
46809
|
+
{
|
|
46810
|
+
"kind": "field",
|
|
46811
|
+
"name": "syncingFromDigits",
|
|
46812
|
+
"type": {
|
|
46813
|
+
"text": "boolean"
|
|
46814
|
+
},
|
|
46815
|
+
"privacy": "private",
|
|
46816
|
+
"default": "false",
|
|
46817
|
+
"description": "Skip digit re-sync when `value` is updated from digit entry (`commitValues`).",
|
|
46818
|
+
"inheritedFrom": {
|
|
46819
|
+
"name": "VerificationCodeInput",
|
|
46820
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46821
|
+
}
|
|
46822
|
+
},
|
|
46823
|
+
{
|
|
46824
|
+
"kind": "field",
|
|
46825
|
+
"name": "id",
|
|
46826
|
+
"type": {
|
|
46827
|
+
"text": "string"
|
|
46828
|
+
},
|
|
46829
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
46830
|
+
"inheritedFrom": {
|
|
46831
|
+
"name": "VerificationCodeInput",
|
|
46832
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46833
|
+
}
|
|
46834
|
+
},
|
|
46835
|
+
{
|
|
46836
|
+
"kind": "field",
|
|
46837
|
+
"name": "appearance",
|
|
46838
|
+
"type": {
|
|
46839
|
+
"text": "string"
|
|
46840
|
+
},
|
|
46841
|
+
"default": "'outline'",
|
|
46842
|
+
"description": "Visual treatment applied to each digit field.",
|
|
46843
|
+
"privacy": "public",
|
|
46844
|
+
"inheritedFrom": {
|
|
46845
|
+
"name": "VerificationCodeInput",
|
|
46846
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46847
|
+
}
|
|
46848
|
+
},
|
|
46849
|
+
{
|
|
46850
|
+
"kind": "field",
|
|
46851
|
+
"name": "digits",
|
|
46852
|
+
"type": {
|
|
46853
|
+
"text": "number"
|
|
46854
|
+
},
|
|
46855
|
+
"default": "6",
|
|
46856
|
+
"description": "Number of single-character digit fields to render.",
|
|
46857
|
+
"privacy": "public",
|
|
46858
|
+
"inheritedFrom": {
|
|
46859
|
+
"name": "VerificationCodeInput",
|
|
46860
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46861
|
+
}
|
|
46862
|
+
},
|
|
46863
|
+
{
|
|
46864
|
+
"kind": "field",
|
|
46865
|
+
"name": "readOnly",
|
|
46866
|
+
"type": {
|
|
46867
|
+
"text": "boolean"
|
|
46868
|
+
},
|
|
46869
|
+
"default": "false",
|
|
46870
|
+
"description": "When true, digit fields are non-interactive.",
|
|
46871
|
+
"privacy": "public",
|
|
46872
|
+
"inheritedFrom": {
|
|
46873
|
+
"name": "VerificationCodeInput",
|
|
46874
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46875
|
+
}
|
|
46876
|
+
},
|
|
46877
|
+
{
|
|
46878
|
+
"kind": "field",
|
|
46879
|
+
"name": "autofocus",
|
|
46880
|
+
"type": {
|
|
46881
|
+
"text": "boolean"
|
|
46882
|
+
},
|
|
46883
|
+
"default": "false",
|
|
46884
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
46885
|
+
"privacy": "public",
|
|
46886
|
+
"inheritedFrom": {
|
|
46887
|
+
"name": "VerificationCodeInput",
|
|
46888
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46889
|
+
}
|
|
46890
|
+
},
|
|
46891
|
+
{
|
|
46892
|
+
"kind": "field",
|
|
46893
|
+
"name": "error",
|
|
46894
|
+
"type": {
|
|
46895
|
+
"text": "boolean"
|
|
46896
|
+
},
|
|
46897
|
+
"default": "false",
|
|
46898
|
+
"description": "When true, applies the error visual state to each digit field.",
|
|
46899
|
+
"privacy": "public",
|
|
46900
|
+
"inheritedFrom": {
|
|
46901
|
+
"name": "VerificationCodeInput",
|
|
46902
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46903
|
+
}
|
|
46904
|
+
},
|
|
46905
|
+
{
|
|
46906
|
+
"kind": "field",
|
|
46907
|
+
"name": "digitsIndexes",
|
|
46908
|
+
"type": {
|
|
46909
|
+
"text": "number[]"
|
|
46910
|
+
},
|
|
46911
|
+
"privacy": "public",
|
|
46912
|
+
"readonly": true,
|
|
46913
|
+
"inheritedFrom": {
|
|
46914
|
+
"name": "VerificationCodeInput",
|
|
46915
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46916
|
+
}
|
|
46917
|
+
},
|
|
46918
|
+
{
|
|
46919
|
+
"kind": "field",
|
|
46920
|
+
"name": "controlIdPrefix",
|
|
46921
|
+
"type": {
|
|
46922
|
+
"text": "string"
|
|
46923
|
+
},
|
|
46924
|
+
"privacy": "public",
|
|
46925
|
+
"readonly": true,
|
|
46926
|
+
"inheritedFrom": {
|
|
46927
|
+
"name": "VerificationCodeInput",
|
|
46928
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46929
|
+
}
|
|
46930
|
+
},
|
|
46931
|
+
{
|
|
46932
|
+
"kind": "field",
|
|
46933
|
+
"name": "labelId",
|
|
46934
|
+
"type": {
|
|
46935
|
+
"text": "string"
|
|
46936
|
+
},
|
|
46937
|
+
"privacy": "public",
|
|
46938
|
+
"readonly": true,
|
|
46939
|
+
"inheritedFrom": {
|
|
46940
|
+
"name": "VerificationCodeInput",
|
|
46941
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46942
|
+
}
|
|
46943
|
+
},
|
|
46944
|
+
{
|
|
46945
|
+
"kind": "field",
|
|
46946
|
+
"name": "hasLabel",
|
|
46947
|
+
"type": {
|
|
46948
|
+
"text": "boolean"
|
|
46949
|
+
},
|
|
46950
|
+
"privacy": "public",
|
|
46951
|
+
"readonly": true,
|
|
46952
|
+
"inheritedFrom": {
|
|
46953
|
+
"name": "VerificationCodeInput",
|
|
46954
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46955
|
+
}
|
|
46956
|
+
},
|
|
46957
|
+
{
|
|
46958
|
+
"kind": "method",
|
|
46959
|
+
"name": "getControlId",
|
|
46960
|
+
"privacy": "public",
|
|
46961
|
+
"return": {
|
|
46962
|
+
"type": {
|
|
46963
|
+
"text": "string"
|
|
46964
|
+
}
|
|
46965
|
+
},
|
|
46966
|
+
"parameters": [
|
|
46967
|
+
{
|
|
46968
|
+
"name": "index",
|
|
46969
|
+
"type": {
|
|
46970
|
+
"text": "number"
|
|
46971
|
+
}
|
|
46972
|
+
}
|
|
46973
|
+
],
|
|
46974
|
+
"inheritedFrom": {
|
|
46975
|
+
"name": "VerificationCodeInput",
|
|
46976
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46977
|
+
}
|
|
46978
|
+
},
|
|
46979
|
+
{
|
|
46980
|
+
"kind": "method",
|
|
46981
|
+
"name": "clear",
|
|
46982
|
+
"privacy": "public",
|
|
46983
|
+
"return": {
|
|
46984
|
+
"type": {
|
|
46985
|
+
"text": "void"
|
|
46986
|
+
}
|
|
46987
|
+
},
|
|
46988
|
+
"description": "Clears digits, emits `change`, and focuses the first field when connected.",
|
|
46989
|
+
"inheritedFrom": {
|
|
46990
|
+
"name": "VerificationCodeInput",
|
|
46991
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46992
|
+
}
|
|
46993
|
+
},
|
|
46994
|
+
{
|
|
46995
|
+
"kind": "method",
|
|
46996
|
+
"name": "focus",
|
|
46997
|
+
"privacy": "public",
|
|
46998
|
+
"return": {
|
|
46999
|
+
"type": {
|
|
47000
|
+
"text": "void"
|
|
47001
|
+
}
|
|
47002
|
+
},
|
|
47003
|
+
"inheritedFrom": {
|
|
47004
|
+
"name": "VerificationCodeInput",
|
|
47005
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47006
|
+
}
|
|
47007
|
+
},
|
|
47008
|
+
{
|
|
47009
|
+
"kind": "method",
|
|
47010
|
+
"name": "digitsChanged",
|
|
47011
|
+
"return": {
|
|
47012
|
+
"type": {
|
|
47013
|
+
"text": "void"
|
|
47014
|
+
}
|
|
47015
|
+
},
|
|
47016
|
+
"inheritedFrom": {
|
|
47017
|
+
"name": "VerificationCodeInput",
|
|
47018
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47019
|
+
}
|
|
47020
|
+
},
|
|
47021
|
+
{
|
|
47022
|
+
"kind": "field",
|
|
47023
|
+
"name": "digitClassnames",
|
|
47024
|
+
"type": {
|
|
47025
|
+
"text": "string"
|
|
47026
|
+
},
|
|
47027
|
+
"privacy": "public",
|
|
47028
|
+
"readonly": true,
|
|
47029
|
+
"inheritedFrom": {
|
|
47030
|
+
"name": "VerificationCodeInput",
|
|
47031
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47032
|
+
}
|
|
47033
|
+
},
|
|
47034
|
+
{
|
|
47035
|
+
"kind": "method",
|
|
47036
|
+
"name": "sanitizeCode",
|
|
47037
|
+
"privacy": "private",
|
|
47038
|
+
"return": {
|
|
47039
|
+
"type": {
|
|
47040
|
+
"text": "string"
|
|
47041
|
+
}
|
|
47042
|
+
},
|
|
47043
|
+
"parameters": [
|
|
47044
|
+
{
|
|
47045
|
+
"name": "raw",
|
|
47046
|
+
"type": {
|
|
47047
|
+
"text": "unknown"
|
|
47048
|
+
}
|
|
47049
|
+
}
|
|
47050
|
+
],
|
|
47051
|
+
"inheritedFrom": {
|
|
47052
|
+
"name": "VerificationCodeInput",
|
|
47053
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47054
|
+
}
|
|
47055
|
+
},
|
|
47056
|
+
{
|
|
47057
|
+
"kind": "method",
|
|
47058
|
+
"name": "bindControlListeners",
|
|
47059
|
+
"privacy": "private",
|
|
47060
|
+
"return": {
|
|
47061
|
+
"type": {
|
|
47062
|
+
"text": "void"
|
|
47063
|
+
}
|
|
47064
|
+
},
|
|
47065
|
+
"inheritedFrom": {
|
|
47066
|
+
"name": "VerificationCodeInput",
|
|
47067
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47068
|
+
}
|
|
47069
|
+
},
|
|
47070
|
+
{
|
|
47071
|
+
"kind": "method",
|
|
47072
|
+
"name": "unbindControlListeners",
|
|
47073
|
+
"privacy": "private",
|
|
47074
|
+
"return": {
|
|
47075
|
+
"type": {
|
|
47076
|
+
"text": "void"
|
|
47077
|
+
}
|
|
47078
|
+
},
|
|
47079
|
+
"inheritedFrom": {
|
|
47080
|
+
"name": "VerificationCodeInput",
|
|
47081
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47082
|
+
}
|
|
47083
|
+
},
|
|
47084
|
+
{
|
|
47085
|
+
"kind": "method",
|
|
47086
|
+
"name": "onKeyDown",
|
|
47087
|
+
"privacy": "private",
|
|
47088
|
+
"return": {
|
|
47089
|
+
"type": {
|
|
47090
|
+
"text": "void"
|
|
47091
|
+
}
|
|
47092
|
+
},
|
|
47093
|
+
"parameters": [
|
|
47094
|
+
{
|
|
47095
|
+
"name": "event",
|
|
47096
|
+
"type": {
|
|
47097
|
+
"text": "KeyboardEvent"
|
|
47098
|
+
}
|
|
47099
|
+
},
|
|
47100
|
+
{
|
|
47101
|
+
"name": "index",
|
|
47102
|
+
"type": {
|
|
47103
|
+
"text": "number"
|
|
47104
|
+
}
|
|
47105
|
+
}
|
|
47106
|
+
],
|
|
47107
|
+
"inheritedFrom": {
|
|
47108
|
+
"name": "VerificationCodeInput",
|
|
47109
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47110
|
+
}
|
|
47111
|
+
},
|
|
47112
|
+
{
|
|
47113
|
+
"kind": "method",
|
|
47114
|
+
"name": "isBlockedCharacter",
|
|
47115
|
+
"privacy": "private",
|
|
47116
|
+
"return": {
|
|
47117
|
+
"type": {
|
|
47118
|
+
"text": "boolean"
|
|
47119
|
+
}
|
|
47120
|
+
},
|
|
47121
|
+
"parameters": [
|
|
47122
|
+
{
|
|
47123
|
+
"name": "event",
|
|
47124
|
+
"type": {
|
|
47125
|
+
"text": "KeyboardEvent"
|
|
47126
|
+
}
|
|
47127
|
+
}
|
|
47128
|
+
],
|
|
47129
|
+
"inheritedFrom": {
|
|
47130
|
+
"name": "VerificationCodeInput",
|
|
47131
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47132
|
+
}
|
|
47133
|
+
},
|
|
47134
|
+
{
|
|
47135
|
+
"kind": "method",
|
|
47136
|
+
"name": "onInput",
|
|
47137
|
+
"privacy": "private",
|
|
47138
|
+
"return": {
|
|
47139
|
+
"type": {
|
|
47140
|
+
"text": "void"
|
|
47141
|
+
}
|
|
47142
|
+
},
|
|
47143
|
+
"parameters": [
|
|
47144
|
+
{
|
|
47145
|
+
"name": "event",
|
|
47146
|
+
"type": {
|
|
47147
|
+
"text": "InputEvent"
|
|
47148
|
+
}
|
|
47149
|
+
},
|
|
47150
|
+
{
|
|
47151
|
+
"name": "index",
|
|
47152
|
+
"type": {
|
|
47153
|
+
"text": "number"
|
|
47154
|
+
}
|
|
47155
|
+
}
|
|
47156
|
+
],
|
|
47157
|
+
"inheritedFrom": {
|
|
47158
|
+
"name": "VerificationCodeInput",
|
|
47159
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47160
|
+
}
|
|
47161
|
+
},
|
|
47162
|
+
{
|
|
47163
|
+
"kind": "method",
|
|
47164
|
+
"name": "onPaste",
|
|
47165
|
+
"privacy": "private",
|
|
47166
|
+
"return": {
|
|
47167
|
+
"type": {
|
|
47168
|
+
"text": "void"
|
|
47169
|
+
}
|
|
47170
|
+
},
|
|
47171
|
+
"parameters": [
|
|
47172
|
+
{
|
|
47173
|
+
"name": "event",
|
|
47174
|
+
"type": {
|
|
47175
|
+
"text": "ClipboardEvent"
|
|
47176
|
+
}
|
|
47177
|
+
},
|
|
47178
|
+
{
|
|
47179
|
+
"name": "index",
|
|
47180
|
+
"type": {
|
|
47181
|
+
"text": "number"
|
|
47182
|
+
}
|
|
47183
|
+
}
|
|
47184
|
+
],
|
|
47185
|
+
"inheritedFrom": {
|
|
47186
|
+
"name": "VerificationCodeInput",
|
|
47187
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47188
|
+
}
|
|
47189
|
+
},
|
|
47190
|
+
{
|
|
47191
|
+
"kind": "method",
|
|
47192
|
+
"name": "handleBackspace",
|
|
47193
|
+
"privacy": "private",
|
|
47194
|
+
"return": {
|
|
47195
|
+
"type": {
|
|
47196
|
+
"text": "void"
|
|
47197
|
+
}
|
|
47198
|
+
},
|
|
47199
|
+
"parameters": [
|
|
47200
|
+
{
|
|
47201
|
+
"name": "index",
|
|
47202
|
+
"type": {
|
|
47203
|
+
"text": "number"
|
|
47204
|
+
}
|
|
47205
|
+
}
|
|
47206
|
+
],
|
|
47207
|
+
"inheritedFrom": {
|
|
47208
|
+
"name": "VerificationCodeInput",
|
|
47209
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47210
|
+
}
|
|
47211
|
+
},
|
|
47212
|
+
{
|
|
47213
|
+
"kind": "method",
|
|
47214
|
+
"name": "handleDelete",
|
|
47215
|
+
"privacy": "private",
|
|
47216
|
+
"return": {
|
|
47217
|
+
"type": {
|
|
47218
|
+
"text": "void"
|
|
47219
|
+
}
|
|
47220
|
+
},
|
|
47221
|
+
"parameters": [
|
|
47222
|
+
{
|
|
47223
|
+
"name": "index",
|
|
47224
|
+
"type": {
|
|
47225
|
+
"text": "number"
|
|
47226
|
+
}
|
|
47227
|
+
}
|
|
47228
|
+
],
|
|
47229
|
+
"inheritedFrom": {
|
|
47230
|
+
"name": "VerificationCodeInput",
|
|
47231
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47232
|
+
}
|
|
47233
|
+
},
|
|
47234
|
+
{
|
|
47235
|
+
"kind": "method",
|
|
47236
|
+
"name": "getIndexFromInput",
|
|
47237
|
+
"privacy": "private",
|
|
47238
|
+
"return": {
|
|
47239
|
+
"type": {
|
|
47240
|
+
"text": "number | null"
|
|
47241
|
+
}
|
|
47242
|
+
},
|
|
47243
|
+
"parameters": [
|
|
47244
|
+
{
|
|
47245
|
+
"name": "input",
|
|
47246
|
+
"type": {
|
|
47247
|
+
"text": "HTMLInputElement"
|
|
47248
|
+
}
|
|
47249
|
+
}
|
|
47250
|
+
],
|
|
47251
|
+
"inheritedFrom": {
|
|
47252
|
+
"name": "VerificationCodeInput",
|
|
47253
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47254
|
+
}
|
|
47255
|
+
},
|
|
47256
|
+
{
|
|
47257
|
+
"kind": "method",
|
|
47258
|
+
"name": "syncDigitsFromValue",
|
|
47259
|
+
"privacy": "private",
|
|
47260
|
+
"return": {
|
|
47261
|
+
"type": {
|
|
47262
|
+
"text": "void"
|
|
47263
|
+
}
|
|
47264
|
+
},
|
|
47265
|
+
"parameters": [
|
|
47266
|
+
{
|
|
47267
|
+
"name": "cleaned",
|
|
47268
|
+
"type": {
|
|
47269
|
+
"text": "string"
|
|
47270
|
+
}
|
|
47271
|
+
}
|
|
47272
|
+
],
|
|
47273
|
+
"description": "Maps a sanitized code string into per-digit `values` and syncs the DOM when connected.",
|
|
47274
|
+
"inheritedFrom": {
|
|
47275
|
+
"name": "VerificationCodeInput",
|
|
47276
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47277
|
+
}
|
|
47278
|
+
},
|
|
47279
|
+
{
|
|
47280
|
+
"kind": "method",
|
|
47281
|
+
"name": "updateDigit",
|
|
47282
|
+
"privacy": "private",
|
|
47283
|
+
"return": {
|
|
47284
|
+
"type": {
|
|
47285
|
+
"text": "void"
|
|
47286
|
+
}
|
|
47287
|
+
},
|
|
47288
|
+
"parameters": [
|
|
47289
|
+
{
|
|
47290
|
+
"name": "index",
|
|
47291
|
+
"type": {
|
|
47292
|
+
"text": "number"
|
|
47293
|
+
}
|
|
47294
|
+
},
|
|
47295
|
+
{
|
|
47296
|
+
"name": "digit",
|
|
47297
|
+
"type": {
|
|
47298
|
+
"text": "string"
|
|
47299
|
+
}
|
|
47300
|
+
}
|
|
47301
|
+
],
|
|
47302
|
+
"inheritedFrom": {
|
|
47303
|
+
"name": "VerificationCodeInput",
|
|
47304
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47305
|
+
}
|
|
47306
|
+
},
|
|
47307
|
+
{
|
|
47308
|
+
"kind": "method",
|
|
47309
|
+
"name": "applyDigits",
|
|
47310
|
+
"privacy": "private",
|
|
47311
|
+
"return": {
|
|
47312
|
+
"type": {
|
|
47313
|
+
"text": "void"
|
|
47314
|
+
}
|
|
47315
|
+
},
|
|
47316
|
+
"parameters": [
|
|
47317
|
+
{
|
|
47318
|
+
"name": "raw",
|
|
47319
|
+
"type": {
|
|
47320
|
+
"text": "string"
|
|
47321
|
+
}
|
|
47322
|
+
},
|
|
47323
|
+
{
|
|
47324
|
+
"name": "startIndex",
|
|
47325
|
+
"type": {
|
|
47326
|
+
"text": "number"
|
|
47327
|
+
}
|
|
47328
|
+
}
|
|
47329
|
+
],
|
|
47330
|
+
"inheritedFrom": {
|
|
47331
|
+
"name": "VerificationCodeInput",
|
|
47332
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47333
|
+
}
|
|
47334
|
+
},
|
|
47335
|
+
{
|
|
47336
|
+
"kind": "method",
|
|
47337
|
+
"name": "commitValues",
|
|
47338
|
+
"privacy": "private",
|
|
47339
|
+
"return": {
|
|
47340
|
+
"type": {
|
|
47341
|
+
"text": "void"
|
|
47342
|
+
}
|
|
47343
|
+
},
|
|
47344
|
+
"parameters": [
|
|
47345
|
+
{
|
|
47346
|
+
"name": "nextValues",
|
|
47347
|
+
"type": {
|
|
47348
|
+
"text": "string[]"
|
|
47349
|
+
}
|
|
47350
|
+
}
|
|
47351
|
+
],
|
|
47352
|
+
"description": "Pushes digit state into the form-associated `value` and emits change / complete.",
|
|
47353
|
+
"inheritedFrom": {
|
|
47354
|
+
"name": "VerificationCodeInput",
|
|
47355
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47356
|
+
}
|
|
47357
|
+
},
|
|
47358
|
+
{
|
|
47359
|
+
"kind": "method",
|
|
47360
|
+
"name": "syncFieldValues",
|
|
47361
|
+
"privacy": "private",
|
|
47362
|
+
"return": {
|
|
47363
|
+
"type": {
|
|
47364
|
+
"text": "void"
|
|
47365
|
+
}
|
|
47366
|
+
},
|
|
47367
|
+
"inheritedFrom": {
|
|
47368
|
+
"name": "VerificationCodeInput",
|
|
47369
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47370
|
+
}
|
|
47371
|
+
},
|
|
47372
|
+
{
|
|
47373
|
+
"kind": "method",
|
|
47374
|
+
"name": "syncFieldValue",
|
|
47375
|
+
"privacy": "private",
|
|
47376
|
+
"return": {
|
|
47377
|
+
"type": {
|
|
47378
|
+
"text": "void"
|
|
47379
|
+
}
|
|
47380
|
+
},
|
|
47381
|
+
"parameters": [
|
|
47382
|
+
{
|
|
47383
|
+
"name": "index",
|
|
47384
|
+
"type": {
|
|
47385
|
+
"text": "number"
|
|
47386
|
+
}
|
|
47387
|
+
}
|
|
47388
|
+
],
|
|
47389
|
+
"inheritedFrom": {
|
|
47390
|
+
"name": "VerificationCodeInput",
|
|
47391
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47392
|
+
}
|
|
47393
|
+
},
|
|
47394
|
+
{
|
|
47395
|
+
"kind": "method",
|
|
47396
|
+
"name": "focusDigit",
|
|
47397
|
+
"privacy": "private",
|
|
47398
|
+
"return": {
|
|
47399
|
+
"type": {
|
|
47400
|
+
"text": "void"
|
|
47401
|
+
}
|
|
47402
|
+
},
|
|
47403
|
+
"parameters": [
|
|
47404
|
+
{
|
|
47405
|
+
"name": "index",
|
|
47406
|
+
"type": {
|
|
47407
|
+
"text": "number"
|
|
47408
|
+
}
|
|
47409
|
+
}
|
|
47410
|
+
],
|
|
47411
|
+
"inheritedFrom": {
|
|
47412
|
+
"name": "VerificationCodeInput",
|
|
47413
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47414
|
+
}
|
|
47415
|
+
},
|
|
47416
|
+
{
|
|
47417
|
+
"kind": "field",
|
|
47418
|
+
"name": "rootNode",
|
|
47419
|
+
"type": {
|
|
47420
|
+
"text": "ParentNode"
|
|
47421
|
+
},
|
|
47422
|
+
"privacy": "private",
|
|
47423
|
+
"readonly": true,
|
|
47424
|
+
"inheritedFrom": {
|
|
47425
|
+
"name": "VerificationCodeInput",
|
|
47426
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47427
|
+
}
|
|
47428
|
+
},
|
|
47429
|
+
{
|
|
47430
|
+
"kind": "method",
|
|
47431
|
+
"name": "getControlElement",
|
|
47432
|
+
"privacy": "private",
|
|
47433
|
+
"return": {
|
|
47434
|
+
"type": {
|
|
47435
|
+
"text": "HTMLInputElement | null"
|
|
47436
|
+
}
|
|
47437
|
+
},
|
|
47438
|
+
"parameters": [
|
|
47439
|
+
{
|
|
47440
|
+
"name": "index",
|
|
47441
|
+
"type": {
|
|
47442
|
+
"text": "number"
|
|
47443
|
+
}
|
|
47444
|
+
}
|
|
47445
|
+
],
|
|
47446
|
+
"inheritedFrom": {
|
|
47447
|
+
"name": "VerificationCodeInput",
|
|
47448
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47449
|
+
}
|
|
47450
|
+
},
|
|
47451
|
+
{
|
|
47452
|
+
"kind": "method",
|
|
47453
|
+
"name": "isComplete",
|
|
47454
|
+
"privacy": "private",
|
|
47455
|
+
"return": {
|
|
47456
|
+
"type": {
|
|
47457
|
+
"text": "boolean"
|
|
47458
|
+
}
|
|
47459
|
+
},
|
|
47460
|
+
"inheritedFrom": {
|
|
47461
|
+
"name": "VerificationCodeInput",
|
|
47462
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47463
|
+
}
|
|
47464
|
+
},
|
|
47465
|
+
{
|
|
47466
|
+
"kind": "method",
|
|
47467
|
+
"name": "emitChange",
|
|
47468
|
+
"privacy": "private",
|
|
47469
|
+
"return": {
|
|
47470
|
+
"type": {
|
|
47471
|
+
"text": "void"
|
|
47472
|
+
}
|
|
47473
|
+
},
|
|
47474
|
+
"inheritedFrom": {
|
|
47475
|
+
"name": "VerificationCodeInput",
|
|
47476
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47477
|
+
}
|
|
47478
|
+
},
|
|
47479
|
+
{
|
|
47480
|
+
"kind": "field",
|
|
47481
|
+
"name": "proxy",
|
|
47482
|
+
"inheritedFrom": {
|
|
47483
|
+
"name": "VerificationCodeInput",
|
|
47484
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47485
|
+
}
|
|
47486
|
+
}
|
|
47487
|
+
],
|
|
47488
|
+
"events": [
|
|
47489
|
+
{
|
|
47490
|
+
"description": "Fired when any digit changes. detail: `VerificationCodeInputEventDetail`",
|
|
47491
|
+
"name": "change",
|
|
47492
|
+
"inheritedFrom": {
|
|
47493
|
+
"name": "VerificationCodeInput",
|
|
47494
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47495
|
+
}
|
|
47496
|
+
},
|
|
47497
|
+
{
|
|
47498
|
+
"description": "Fired when all digits are filled. detail: `VerificationCodeInputEventDetail`",
|
|
47499
|
+
"name": "complete",
|
|
47500
|
+
"inheritedFrom": {
|
|
47501
|
+
"name": "VerificationCodeInput",
|
|
47502
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47503
|
+
}
|
|
47504
|
+
}
|
|
47505
|
+
]
|
|
47506
|
+
},
|
|
47507
|
+
{
|
|
47508
|
+
"kind": "variable",
|
|
47509
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
47510
|
+
"default": "foundationVerificationCodeInputConfig"
|
|
47511
|
+
},
|
|
47512
|
+
{
|
|
47513
|
+
"kind": "variable",
|
|
47514
|
+
"name": "zeroVerificationCodeInputShadowOptions",
|
|
47515
|
+
"default": "foundationVerificationCodeInputShadowOptions"
|
|
47516
|
+
},
|
|
47517
|
+
{
|
|
47518
|
+
"kind": "variable",
|
|
47519
|
+
"name": "zeroVerificationCodeInput"
|
|
47520
|
+
}
|
|
47521
|
+
],
|
|
47522
|
+
"exports": [
|
|
47523
|
+
{
|
|
47524
|
+
"kind": "js",
|
|
47525
|
+
"name": "VerificationCodeInput",
|
|
47526
|
+
"declaration": {
|
|
47527
|
+
"name": "VerificationCodeInput",
|
|
47528
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47529
|
+
}
|
|
47530
|
+
},
|
|
47531
|
+
{
|
|
47532
|
+
"kind": "js",
|
|
47533
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
47534
|
+
"declaration": {
|
|
47535
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
47536
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47537
|
+
}
|
|
47538
|
+
},
|
|
47539
|
+
{
|
|
47540
|
+
"kind": "js",
|
|
47541
|
+
"name": "zeroVerificationCodeInputShadowOptions",
|
|
47542
|
+
"declaration": {
|
|
47543
|
+
"name": "zeroVerificationCodeInputShadowOptions",
|
|
47544
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47545
|
+
}
|
|
47546
|
+
},
|
|
47547
|
+
{
|
|
47548
|
+
"kind": "js",
|
|
47549
|
+
"name": "zeroVerificationCodeInput",
|
|
47550
|
+
"declaration": {
|
|
47551
|
+
"name": "zeroVerificationCodeInput",
|
|
47552
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
47553
|
+
}
|
|
47554
|
+
}
|
|
47555
|
+
]
|
|
47556
|
+
},
|
|
46606
47557
|
{
|
|
46607
47558
|
"kind": "javascript-module",
|
|
46608
47559
|
"path": "src/_config/styles/colors.ts",
|