@genesislcap/rapid-design-system 14.490.0 → 14.491.0-FUI-2567.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 +1018 -53
- 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 +19 -8
- 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 +51 -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 designSystemProvider,\n rapidAccordion,\n rapidAccordionItem,\n rapidAiCriteriaSearch,\n rapidAiIndicator,\n rapidActionsMenu,\n rapidAnchor,\n rapidSectionNavigator,\n rapidAnchoredRegion,\n rapidAvatar,\n rapidBadge,\n rapidBanner,\n rapidBreadcrumb,\n rapidBreadcrumbItem,\n rapidButton,\n rapidCalendar,\n rapidCard,\n rapidCategorizedMultiselect,\n rapidCheckbox,\n rapidCombobox,\n rapidConnectionIndicator,\n rapidDataGrid,\n rapidDataGridCell,\n rapidDataGridRow,\n rapidDatePicker,\n rapidDialog,\n rapidDisclosure,\n rapidDivider,\n rapidDropdownMenu,\n rapidEnvironmentIndicator,\n rapidErrorBoundary,\n rapidFileReader,\n rapidFileUpload,\n rapidFilter,\n rapidFilterBar,\n rapidFlexLayout,\n rapidFlipper,\n rapidFlyout,\n rapidGridLayout,\n rapidGridLayoutItem,\n rapidHorizontalScroll,\n rapidIcon,\n rapidListbox,\n rapidListboxOption,\n rapidMenu,\n rapidMenuItem,\n rapidModal,\n rapidMultiselect,\n rapidNotificationListener,\n rapidNumberField,\n rapidOptgroup,\n rapidProgress,\n rapidProgressRing,\n rapidRadio,\n rapidRadioGroup,\n rapidScheduler,\n rapidSchedulerCronBuilder,\n rapidSchedulerTimezone,\n rapidSearchBar,\n rapidSearchBarCombobox,\n rapidSegmentedControl,\n rapidSegmentedItem,\n rapidSelect,\n rapidSkeleton,\n rapidSlider,\n rapidSliderLabel,\n rapidSnackbar,\n rapidStackingIcons,\n rapidStatusPill,\n rapidStepper,\n rapidStepperTab,\n rapidStepperTabPanel,\n rapidSwitch,\n rapidSystemHealthOverlay,\n rapidTab,\n rapidTabPanel,\n rapidTabs,\n rapidTextArea,\n rapidTextField,\n rapidToast,\n rapidToolbar,\n rapidTooltip,\n rapidTreeItem,\n rapidTreeView,\n rapidUrlInput,\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 designSystemProvider,\n rapidAccordion,\n rapidAccordionItem,\n rapidAiCriteriaSearch,\n rapidAiIndicator,\n rapidActionsMenu,\n rapidAnchor,\n rapidSectionNavigator,\n rapidAnchoredRegion,\n rapidAvatar,\n rapidBadge,\n rapidBanner,\n rapidBreadcrumb,\n rapidBreadcrumbItem,\n rapidButton,\n rapidCalendar,\n rapidCard,\n rapidCategorizedMultiselect,\n rapidCheckbox,\n rapidCombobox,\n rapidConnectionIndicator,\n rapidDataGrid,\n rapidDataGridCell,\n rapidDataGridRow,\n rapidDatePicker,\n rapidDialog,\n rapidDisclosure,\n rapidDivider,\n rapidDropdownMenu,\n rapidEnvironmentIndicator,\n rapidErrorBoundary,\n rapidFileReader,\n rapidFileUpload,\n rapidFilter,\n rapidFilterBar,\n rapidFlexLayout,\n rapidFlipper,\n rapidFlyout,\n rapidGridLayout,\n rapidGridLayoutItem,\n rapidHorizontalScroll,\n rapidIcon,\n rapidListbox,\n rapidListboxOption,\n rapidMenu,\n rapidMenuItem,\n rapidModal,\n rapidMultiselect,\n rapidNotificationListener,\n rapidNumberField,\n rapidOptgroup,\n rapidProgress,\n rapidProgressRing,\n rapidRadio,\n rapidRadioGroup,\n rapidScheduler,\n rapidSchedulerCronBuilder,\n rapidSchedulerTimezone,\n rapidSearchBar,\n rapidSearchBarCombobox,\n rapidSegmentedControl,\n rapidSegmentedItem,\n rapidSelect,\n rapidSkeleton,\n rapidSlider,\n rapidSliderLabel,\n rapidSnackbar,\n rapidStackingIcons,\n rapidStatusPill,\n rapidStepper,\n rapidStepperTab,\n rapidStepperTabPanel,\n rapidSwitch,\n rapidSystemHealthOverlay,\n rapidTab,\n rapidTabPanel,\n rapidTabs,\n rapidTextArea,\n rapidTextField,\n rapidToast,\n rapidToolbar,\n rapidTooltip,\n rapidTreeItem,\n rapidTreeView,\n rapidUrlInput,\n rapidVerificationCodeInput,\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
|
},
|
|
@@ -870,11 +878,11 @@
|
|
|
870
878
|
},
|
|
871
879
|
{
|
|
872
880
|
"kind": "javascript-module",
|
|
873
|
-
"path": "src/accordion
|
|
881
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
874
882
|
"declarations": [
|
|
875
883
|
{
|
|
876
884
|
"kind": "function",
|
|
877
|
-
"name": "
|
|
885
|
+
"name": "rapidAccordionStyles",
|
|
878
886
|
"return": {
|
|
879
887
|
"type": {
|
|
880
888
|
"text": "ElementStyles"
|
|
@@ -899,24 +907,24 @@
|
|
|
899
907
|
"exports": [
|
|
900
908
|
{
|
|
901
909
|
"kind": "js",
|
|
902
|
-
"name": "
|
|
910
|
+
"name": "rapidAccordionStyles",
|
|
903
911
|
"declaration": {
|
|
904
|
-
"name": "
|
|
905
|
-
"module": "src/accordion
|
|
912
|
+
"name": "rapidAccordionStyles",
|
|
913
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
906
914
|
}
|
|
907
915
|
}
|
|
908
916
|
]
|
|
909
917
|
},
|
|
910
918
|
{
|
|
911
919
|
"kind": "javascript-module",
|
|
912
|
-
"path": "src/accordion
|
|
920
|
+
"path": "src/accordion/accordion.template.ts",
|
|
913
921
|
"declarations": [
|
|
914
922
|
{
|
|
915
923
|
"kind": "function",
|
|
916
|
-
"name": "
|
|
924
|
+
"name": "rapidAccordionTemplate",
|
|
917
925
|
"return": {
|
|
918
926
|
"type": {
|
|
919
|
-
"text": "ViewTemplate<
|
|
927
|
+
"text": "ViewTemplate<Accordion>"
|
|
920
928
|
}
|
|
921
929
|
},
|
|
922
930
|
"parameters": [
|
|
@@ -938,56 +946,56 @@
|
|
|
938
946
|
"exports": [
|
|
939
947
|
{
|
|
940
948
|
"kind": "js",
|
|
941
|
-
"name": "
|
|
949
|
+
"name": "rapidAccordionTemplate",
|
|
942
950
|
"declaration": {
|
|
943
|
-
"name": "
|
|
944
|
-
"module": "src/accordion
|
|
951
|
+
"name": "rapidAccordionTemplate",
|
|
952
|
+
"module": "src/accordion/accordion.template.ts"
|
|
945
953
|
}
|
|
946
954
|
}
|
|
947
955
|
]
|
|
948
956
|
},
|
|
949
957
|
{
|
|
950
958
|
"kind": "javascript-module",
|
|
951
|
-
"path": "src/accordion
|
|
959
|
+
"path": "src/accordion/accordion.ts",
|
|
952
960
|
"declarations": [
|
|
953
961
|
{
|
|
954
962
|
"kind": "class",
|
|
955
963
|
"description": "",
|
|
956
|
-
"name": "
|
|
964
|
+
"name": "Accordion",
|
|
957
965
|
"superclass": {
|
|
958
|
-
"name": "
|
|
966
|
+
"name": "foundationAccordion",
|
|
959
967
|
"package": "@genesislcap/foundation-ui"
|
|
960
968
|
},
|
|
961
|
-
"tagName": "%%prefix%%-accordion
|
|
969
|
+
"tagName": "%%prefix%%-accordion",
|
|
962
970
|
"customElement": true
|
|
963
971
|
},
|
|
964
972
|
{
|
|
965
973
|
"kind": "variable",
|
|
966
|
-
"name": "
|
|
974
|
+
"name": "rapidAccordion"
|
|
967
975
|
}
|
|
968
976
|
],
|
|
969
977
|
"exports": [
|
|
970
978
|
{
|
|
971
979
|
"kind": "js",
|
|
972
|
-
"name": "
|
|
980
|
+
"name": "Accordion",
|
|
973
981
|
"declaration": {
|
|
974
|
-
"name": "
|
|
975
|
-
"module": "src/accordion
|
|
982
|
+
"name": "Accordion",
|
|
983
|
+
"module": "src/accordion/accordion.ts"
|
|
976
984
|
}
|
|
977
985
|
},
|
|
978
986
|
{
|
|
979
987
|
"kind": "js",
|
|
980
|
-
"name": "
|
|
988
|
+
"name": "rapidAccordion",
|
|
981
989
|
"declaration": {
|
|
982
|
-
"name": "
|
|
983
|
-
"module": "src/accordion
|
|
990
|
+
"name": "rapidAccordion",
|
|
991
|
+
"module": "src/accordion/accordion.ts"
|
|
984
992
|
}
|
|
985
993
|
}
|
|
986
994
|
]
|
|
987
995
|
},
|
|
988
996
|
{
|
|
989
997
|
"kind": "javascript-module",
|
|
990
|
-
"path": "src/accordion
|
|
998
|
+
"path": "src/accordion/index.ts",
|
|
991
999
|
"declarations": [],
|
|
992
1000
|
"exports": [
|
|
993
1001
|
{
|
|
@@ -995,7 +1003,7 @@
|
|
|
995
1003
|
"name": "*",
|
|
996
1004
|
"declaration": {
|
|
997
1005
|
"name": "*",
|
|
998
|
-
"package": "./accordion
|
|
1006
|
+
"package": "./accordion"
|
|
999
1007
|
}
|
|
1000
1008
|
},
|
|
1001
1009
|
{
|
|
@@ -1003,7 +1011,7 @@
|
|
|
1003
1011
|
"name": "*",
|
|
1004
1012
|
"declaration": {
|
|
1005
1013
|
"name": "*",
|
|
1006
|
-
"package": "./accordion
|
|
1014
|
+
"package": "./accordion.styles"
|
|
1007
1015
|
}
|
|
1008
1016
|
},
|
|
1009
1017
|
{
|
|
@@ -1011,18 +1019,18 @@
|
|
|
1011
1019
|
"name": "*",
|
|
1012
1020
|
"declaration": {
|
|
1013
1021
|
"name": "*",
|
|
1014
|
-
"package": "./accordion
|
|
1022
|
+
"package": "./accordion.template"
|
|
1015
1023
|
}
|
|
1016
1024
|
}
|
|
1017
1025
|
]
|
|
1018
1026
|
},
|
|
1019
1027
|
{
|
|
1020
1028
|
"kind": "javascript-module",
|
|
1021
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
1029
|
+
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
1022
1030
|
"declarations": [
|
|
1023
1031
|
{
|
|
1024
1032
|
"kind": "function",
|
|
1025
|
-
"name": "
|
|
1033
|
+
"name": "rapidAccordionItemStyles",
|
|
1026
1034
|
"return": {
|
|
1027
1035
|
"type": {
|
|
1028
1036
|
"text": "ElementStyles"
|
|
@@ -1047,24 +1055,24 @@
|
|
|
1047
1055
|
"exports": [
|
|
1048
1056
|
{
|
|
1049
1057
|
"kind": "js",
|
|
1050
|
-
"name": "
|
|
1058
|
+
"name": "rapidAccordionItemStyles",
|
|
1051
1059
|
"declaration": {
|
|
1052
|
-
"name": "
|
|
1053
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
1060
|
+
"name": "rapidAccordionItemStyles",
|
|
1061
|
+
"module": "src/accordion-item/accordion-item.styles.ts"
|
|
1054
1062
|
}
|
|
1055
1063
|
}
|
|
1056
1064
|
]
|
|
1057
1065
|
},
|
|
1058
1066
|
{
|
|
1059
1067
|
"kind": "javascript-module",
|
|
1060
|
-
"path": "src/accordion/accordion.template.ts",
|
|
1068
|
+
"path": "src/accordion-item/accordion-item.template.ts",
|
|
1061
1069
|
"declarations": [
|
|
1062
1070
|
{
|
|
1063
1071
|
"kind": "function",
|
|
1064
|
-
"name": "
|
|
1072
|
+
"name": "rapidAccordionItemTemplate",
|
|
1065
1073
|
"return": {
|
|
1066
1074
|
"type": {
|
|
1067
|
-
"text": "ViewTemplate<
|
|
1075
|
+
"text": "ViewTemplate<AccordionItem>"
|
|
1068
1076
|
}
|
|
1069
1077
|
},
|
|
1070
1078
|
"parameters": [
|
|
@@ -1086,56 +1094,56 @@
|
|
|
1086
1094
|
"exports": [
|
|
1087
1095
|
{
|
|
1088
1096
|
"kind": "js",
|
|
1089
|
-
"name": "
|
|
1097
|
+
"name": "rapidAccordionItemTemplate",
|
|
1090
1098
|
"declaration": {
|
|
1091
|
-
"name": "
|
|
1092
|
-
"module": "src/accordion/accordion.template.ts"
|
|
1099
|
+
"name": "rapidAccordionItemTemplate",
|
|
1100
|
+
"module": "src/accordion-item/accordion-item.template.ts"
|
|
1093
1101
|
}
|
|
1094
1102
|
}
|
|
1095
1103
|
]
|
|
1096
1104
|
},
|
|
1097
1105
|
{
|
|
1098
1106
|
"kind": "javascript-module",
|
|
1099
|
-
"path": "src/accordion/accordion.ts",
|
|
1107
|
+
"path": "src/accordion-item/accordion-item.ts",
|
|
1100
1108
|
"declarations": [
|
|
1101
1109
|
{
|
|
1102
1110
|
"kind": "class",
|
|
1103
1111
|
"description": "",
|
|
1104
|
-
"name": "
|
|
1112
|
+
"name": "AccordionItem",
|
|
1105
1113
|
"superclass": {
|
|
1106
|
-
"name": "
|
|
1114
|
+
"name": "foundationAccordionItem",
|
|
1107
1115
|
"package": "@genesislcap/foundation-ui"
|
|
1108
1116
|
},
|
|
1109
|
-
"tagName": "%%prefix%%-accordion",
|
|
1117
|
+
"tagName": "%%prefix%%-accordion-item",
|
|
1110
1118
|
"customElement": true
|
|
1111
1119
|
},
|
|
1112
1120
|
{
|
|
1113
1121
|
"kind": "variable",
|
|
1114
|
-
"name": "
|
|
1122
|
+
"name": "rapidAccordionItem"
|
|
1115
1123
|
}
|
|
1116
1124
|
],
|
|
1117
1125
|
"exports": [
|
|
1118
1126
|
{
|
|
1119
1127
|
"kind": "js",
|
|
1120
|
-
"name": "
|
|
1128
|
+
"name": "AccordionItem",
|
|
1121
1129
|
"declaration": {
|
|
1122
|
-
"name": "
|
|
1123
|
-
"module": "src/accordion/accordion.ts"
|
|
1130
|
+
"name": "AccordionItem",
|
|
1131
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1124
1132
|
}
|
|
1125
1133
|
},
|
|
1126
1134
|
{
|
|
1127
1135
|
"kind": "js",
|
|
1128
|
-
"name": "
|
|
1136
|
+
"name": "rapidAccordionItem",
|
|
1129
1137
|
"declaration": {
|
|
1130
|
-
"name": "
|
|
1131
|
-
"module": "src/accordion/accordion.ts"
|
|
1138
|
+
"name": "rapidAccordionItem",
|
|
1139
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
1132
1140
|
}
|
|
1133
1141
|
}
|
|
1134
1142
|
]
|
|
1135
1143
|
},
|
|
1136
1144
|
{
|
|
1137
1145
|
"kind": "javascript-module",
|
|
1138
|
-
"path": "src/accordion/index.ts",
|
|
1146
|
+
"path": "src/accordion-item/index.ts",
|
|
1139
1147
|
"declarations": [],
|
|
1140
1148
|
"exports": [
|
|
1141
1149
|
{
|
|
@@ -1143,7 +1151,7 @@
|
|
|
1143
1151
|
"name": "*",
|
|
1144
1152
|
"declaration": {
|
|
1145
1153
|
"name": "*",
|
|
1146
|
-
"package": "./accordion"
|
|
1154
|
+
"package": "./accordion-item"
|
|
1147
1155
|
}
|
|
1148
1156
|
},
|
|
1149
1157
|
{
|
|
@@ -1151,7 +1159,7 @@
|
|
|
1151
1159
|
"name": "*",
|
|
1152
1160
|
"declaration": {
|
|
1153
1161
|
"name": "*",
|
|
1154
|
-
"package": "./accordion.styles"
|
|
1162
|
+
"package": "./accordion-item.styles"
|
|
1155
1163
|
}
|
|
1156
1164
|
},
|
|
1157
1165
|
{
|
|
@@ -1159,7 +1167,7 @@
|
|
|
1159
1167
|
"name": "*",
|
|
1160
1168
|
"declaration": {
|
|
1161
1169
|
"name": "*",
|
|
1162
|
-
"package": "./accordion.template"
|
|
1170
|
+
"package": "./accordion-item.template"
|
|
1163
1171
|
}
|
|
1164
1172
|
}
|
|
1165
1173
|
]
|
|
@@ -42577,6 +42585,963 @@
|
|
|
42577
42585
|
}
|
|
42578
42586
|
]
|
|
42579
42587
|
},
|
|
42588
|
+
{
|
|
42589
|
+
"kind": "javascript-module",
|
|
42590
|
+
"path": "src/verification-code-input/index.ts",
|
|
42591
|
+
"declarations": [],
|
|
42592
|
+
"exports": [
|
|
42593
|
+
{
|
|
42594
|
+
"kind": "js",
|
|
42595
|
+
"name": "*",
|
|
42596
|
+
"declaration": {
|
|
42597
|
+
"name": "*",
|
|
42598
|
+
"package": "./verification-code-input"
|
|
42599
|
+
}
|
|
42600
|
+
},
|
|
42601
|
+
{
|
|
42602
|
+
"kind": "js",
|
|
42603
|
+
"name": "*",
|
|
42604
|
+
"declaration": {
|
|
42605
|
+
"name": "*",
|
|
42606
|
+
"package": "./verification-code-input.styles"
|
|
42607
|
+
}
|
|
42608
|
+
},
|
|
42609
|
+
{
|
|
42610
|
+
"kind": "js",
|
|
42611
|
+
"name": "*",
|
|
42612
|
+
"declaration": {
|
|
42613
|
+
"name": "*",
|
|
42614
|
+
"package": "./verification-code-input.template"
|
|
42615
|
+
}
|
|
42616
|
+
}
|
|
42617
|
+
]
|
|
42618
|
+
},
|
|
42619
|
+
{
|
|
42620
|
+
"kind": "javascript-module",
|
|
42621
|
+
"path": "src/verification-code-input/verification-code-input.styles.ts",
|
|
42622
|
+
"declarations": [
|
|
42623
|
+
{
|
|
42624
|
+
"kind": "variable",
|
|
42625
|
+
"name": "verificationCodeInputStyles",
|
|
42626
|
+
"type": {
|
|
42627
|
+
"text": "ElementStyles"
|
|
42628
|
+
},
|
|
42629
|
+
"default": "css`\n ${foundationVerificationCodeInputStyles}\n\n .digit .control {\n height: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n padding: 0 calc(var(--design-unit) * 2px);\n }\n\n .digit .control-field .control {\n width: 100%;\n }\n\n .digit .root {\n border-style: solid;\n border-width: var(--neutral-stroke-width-rest, 1px 1px 1px 1px);\n border-color: var(--neutral-stroke-fill-rest, var(--focus-stroke-outer));\n background-color: var(--neutral-fill-input-rest);\n height: calc(\n (((var(--base-height-multiplier) + var(--density)) * var(--design-unit)) - 4) * 1px\n );\n }\n\n .digit:hover:not(.disabled) .root {\n border-style: solid;\n border-width: var(--neutral-stroke-width-hover, 1px 1px 1px 1px);\n border-color: var(--neutral-stroke-fill-hover, var(--neutral-foreground-rest));\n background: var(--neutral-fill-input-hover);\n box-shadow: none;\n }\n\n .digit:focus-within:not(.disabled) .root {\n border-style: solid;\n border-width: var(--neutral-stroke-width-focus, 1px 1px 1px 1px);\n border-color: var(--neutral-stroke-fill-focus, var(--accent-fill-rest));\n background-color: var(--neutral-fill-input-focus);\n box-shadow: none;\n }\n\n .label {\n color: var(--neutral-foreground-hint);\n font-weight: 700;\n margin: calc(var(--design-unit) * 2px) 0;\n }\n\n .label-hidden {\n margin: 0;\n }\n`"
|
|
42630
|
+
}
|
|
42631
|
+
],
|
|
42632
|
+
"exports": [
|
|
42633
|
+
{
|
|
42634
|
+
"kind": "js",
|
|
42635
|
+
"name": "verificationCodeInputStyles",
|
|
42636
|
+
"declaration": {
|
|
42637
|
+
"name": "verificationCodeInputStyles",
|
|
42638
|
+
"module": "src/verification-code-input/verification-code-input.styles.ts"
|
|
42639
|
+
}
|
|
42640
|
+
}
|
|
42641
|
+
]
|
|
42642
|
+
},
|
|
42643
|
+
{
|
|
42644
|
+
"kind": "javascript-module",
|
|
42645
|
+
"path": "src/verification-code-input/verification-code-input.template.ts",
|
|
42646
|
+
"declarations": [
|
|
42647
|
+
{
|
|
42648
|
+
"kind": "variable",
|
|
42649
|
+
"name": "verificationCodeInputTemplate",
|
|
42650
|
+
"default": "foundationVerificationCodeInputTemplate"
|
|
42651
|
+
}
|
|
42652
|
+
],
|
|
42653
|
+
"exports": [
|
|
42654
|
+
{
|
|
42655
|
+
"kind": "js",
|
|
42656
|
+
"name": "verificationCodeInputTemplate",
|
|
42657
|
+
"declaration": {
|
|
42658
|
+
"name": "verificationCodeInputTemplate",
|
|
42659
|
+
"module": "src/verification-code-input/verification-code-input.template.ts"
|
|
42660
|
+
}
|
|
42661
|
+
}
|
|
42662
|
+
]
|
|
42663
|
+
},
|
|
42664
|
+
{
|
|
42665
|
+
"kind": "javascript-module",
|
|
42666
|
+
"path": "src/verification-code-input/verification-code-input.ts",
|
|
42667
|
+
"declarations": [
|
|
42668
|
+
{
|
|
42669
|
+
"kind": "class",
|
|
42670
|
+
"description": "",
|
|
42671
|
+
"name": "VerificationCodeInput",
|
|
42672
|
+
"superclass": {
|
|
42673
|
+
"name": "FoundationVerificationCodeInput",
|
|
42674
|
+
"package": "@genesislcap/foundation-ui"
|
|
42675
|
+
},
|
|
42676
|
+
"tagName": "%%prefix%%-code-input",
|
|
42677
|
+
"customElement": true,
|
|
42678
|
+
"attributes": [
|
|
42679
|
+
{
|
|
42680
|
+
"name": "id",
|
|
42681
|
+
"type": {
|
|
42682
|
+
"text": "string"
|
|
42683
|
+
},
|
|
42684
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
42685
|
+
"fieldName": "id",
|
|
42686
|
+
"inheritedFrom": {
|
|
42687
|
+
"name": "VerificationCodeInput",
|
|
42688
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42689
|
+
}
|
|
42690
|
+
},
|
|
42691
|
+
{
|
|
42692
|
+
"name": "appearance",
|
|
42693
|
+
"type": {
|
|
42694
|
+
"text": "string"
|
|
42695
|
+
},
|
|
42696
|
+
"default": "'outline'",
|
|
42697
|
+
"description": "Visual treatment applied to each digit field.",
|
|
42698
|
+
"fieldName": "appearance",
|
|
42699
|
+
"inheritedFrom": {
|
|
42700
|
+
"name": "VerificationCodeInput",
|
|
42701
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42702
|
+
}
|
|
42703
|
+
},
|
|
42704
|
+
{
|
|
42705
|
+
"name": "digits",
|
|
42706
|
+
"type": {
|
|
42707
|
+
"text": "number"
|
|
42708
|
+
},
|
|
42709
|
+
"default": "DEFAULT_DIGITS",
|
|
42710
|
+
"description": "Number of single-character digit fields to render.",
|
|
42711
|
+
"resolveInitializer": {
|
|
42712
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42713
|
+
},
|
|
42714
|
+
"fieldName": "digits",
|
|
42715
|
+
"inheritedFrom": {
|
|
42716
|
+
"name": "VerificationCodeInput",
|
|
42717
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42718
|
+
}
|
|
42719
|
+
},
|
|
42720
|
+
{
|
|
42721
|
+
"name": "readonly",
|
|
42722
|
+
"type": {
|
|
42723
|
+
"text": "boolean"
|
|
42724
|
+
},
|
|
42725
|
+
"default": "false",
|
|
42726
|
+
"description": "When true, digit fields are non-interactive.",
|
|
42727
|
+
"fieldName": "readOnly",
|
|
42728
|
+
"inheritedFrom": {
|
|
42729
|
+
"name": "VerificationCodeInput",
|
|
42730
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42731
|
+
}
|
|
42732
|
+
},
|
|
42733
|
+
{
|
|
42734
|
+
"type": {
|
|
42735
|
+
"text": "boolean"
|
|
42736
|
+
},
|
|
42737
|
+
"default": "false",
|
|
42738
|
+
"description": "When true, digit fields are non-interactive.",
|
|
42739
|
+
"fieldName": "disabled",
|
|
42740
|
+
"inheritedFrom": {
|
|
42741
|
+
"name": "VerificationCodeInput",
|
|
42742
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42743
|
+
}
|
|
42744
|
+
}
|
|
42745
|
+
],
|
|
42746
|
+
"members": [
|
|
42747
|
+
{
|
|
42748
|
+
"kind": "field",
|
|
42749
|
+
"name": "values",
|
|
42750
|
+
"type": {
|
|
42751
|
+
"text": "string[]"
|
|
42752
|
+
},
|
|
42753
|
+
"default": "[]",
|
|
42754
|
+
"description": "Per-digit values indexed from `0` to `digits - 1`.",
|
|
42755
|
+
"inheritedFrom": {
|
|
42756
|
+
"name": "VerificationCodeInput",
|
|
42757
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42758
|
+
}
|
|
42759
|
+
},
|
|
42760
|
+
{
|
|
42761
|
+
"kind": "field",
|
|
42762
|
+
"name": "defaultSlottedNodes",
|
|
42763
|
+
"description": "Slotted label content; when empty the label is visually hidden.",
|
|
42764
|
+
"inheritedFrom": {
|
|
42765
|
+
"name": "VerificationCodeInput",
|
|
42766
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42767
|
+
}
|
|
42768
|
+
},
|
|
42769
|
+
{
|
|
42770
|
+
"kind": "field",
|
|
42771
|
+
"name": "controlListeners",
|
|
42772
|
+
"type": {
|
|
42773
|
+
"text": "Map<HTMLInputElement, ControlListeners>"
|
|
42774
|
+
},
|
|
42775
|
+
"privacy": "private",
|
|
42776
|
+
"readonly": true,
|
|
42777
|
+
"default": "new Map()",
|
|
42778
|
+
"inheritedFrom": {
|
|
42779
|
+
"name": "VerificationCodeInput",
|
|
42780
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42781
|
+
}
|
|
42782
|
+
},
|
|
42783
|
+
{
|
|
42784
|
+
"kind": "field",
|
|
42785
|
+
"name": "syncingFromDigits",
|
|
42786
|
+
"type": {
|
|
42787
|
+
"text": "boolean"
|
|
42788
|
+
},
|
|
42789
|
+
"privacy": "private",
|
|
42790
|
+
"default": "false",
|
|
42791
|
+
"description": "Skip digit re-sync when `value` is updated from digit entry (`commitValues`).",
|
|
42792
|
+
"inheritedFrom": {
|
|
42793
|
+
"name": "VerificationCodeInput",
|
|
42794
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42795
|
+
}
|
|
42796
|
+
},
|
|
42797
|
+
{
|
|
42798
|
+
"kind": "field",
|
|
42799
|
+
"name": "id",
|
|
42800
|
+
"type": {
|
|
42801
|
+
"text": "string"
|
|
42802
|
+
},
|
|
42803
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
42804
|
+
"inheritedFrom": {
|
|
42805
|
+
"name": "VerificationCodeInput",
|
|
42806
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42807
|
+
}
|
|
42808
|
+
},
|
|
42809
|
+
{
|
|
42810
|
+
"kind": "field",
|
|
42811
|
+
"name": "appearance",
|
|
42812
|
+
"type": {
|
|
42813
|
+
"text": "string"
|
|
42814
|
+
},
|
|
42815
|
+
"default": "'outline'",
|
|
42816
|
+
"description": "Visual treatment applied to each digit field.",
|
|
42817
|
+
"privacy": "public",
|
|
42818
|
+
"inheritedFrom": {
|
|
42819
|
+
"name": "VerificationCodeInput",
|
|
42820
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42821
|
+
}
|
|
42822
|
+
},
|
|
42823
|
+
{
|
|
42824
|
+
"kind": "field",
|
|
42825
|
+
"name": "digits",
|
|
42826
|
+
"type": {
|
|
42827
|
+
"text": "number"
|
|
42828
|
+
},
|
|
42829
|
+
"default": "6",
|
|
42830
|
+
"description": "Number of single-character digit fields to render.",
|
|
42831
|
+
"privacy": "public",
|
|
42832
|
+
"inheritedFrom": {
|
|
42833
|
+
"name": "VerificationCodeInput",
|
|
42834
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42835
|
+
}
|
|
42836
|
+
},
|
|
42837
|
+
{
|
|
42838
|
+
"kind": "field",
|
|
42839
|
+
"name": "readOnly",
|
|
42840
|
+
"type": {
|
|
42841
|
+
"text": "boolean"
|
|
42842
|
+
},
|
|
42843
|
+
"default": "false",
|
|
42844
|
+
"description": "When true, digit fields are non-interactive.",
|
|
42845
|
+
"privacy": "public",
|
|
42846
|
+
"inheritedFrom": {
|
|
42847
|
+
"name": "VerificationCodeInput",
|
|
42848
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42849
|
+
}
|
|
42850
|
+
},
|
|
42851
|
+
{
|
|
42852
|
+
"kind": "field",
|
|
42853
|
+
"name": "disabled",
|
|
42854
|
+
"type": {
|
|
42855
|
+
"text": "boolean"
|
|
42856
|
+
},
|
|
42857
|
+
"default": "false",
|
|
42858
|
+
"description": "When true, digit fields are non-interactive.",
|
|
42859
|
+
"privacy": "public",
|
|
42860
|
+
"inheritedFrom": {
|
|
42861
|
+
"name": "VerificationCodeInput",
|
|
42862
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42863
|
+
}
|
|
42864
|
+
},
|
|
42865
|
+
{
|
|
42866
|
+
"kind": "field",
|
|
42867
|
+
"name": "autofocus",
|
|
42868
|
+
"type": {
|
|
42869
|
+
"text": "boolean"
|
|
42870
|
+
},
|
|
42871
|
+
"default": "false",
|
|
42872
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
42873
|
+
"privacy": "public",
|
|
42874
|
+
"inheritedFrom": {
|
|
42875
|
+
"name": "VerificationCodeInput",
|
|
42876
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42877
|
+
}
|
|
42878
|
+
},
|
|
42879
|
+
{
|
|
42880
|
+
"kind": "field",
|
|
42881
|
+
"name": "error",
|
|
42882
|
+
"type": {
|
|
42883
|
+
"text": "boolean"
|
|
42884
|
+
},
|
|
42885
|
+
"default": "false",
|
|
42886
|
+
"description": "When true, applies the error visual state to each digit field.",
|
|
42887
|
+
"privacy": "public",
|
|
42888
|
+
"inheritedFrom": {
|
|
42889
|
+
"name": "VerificationCodeInput",
|
|
42890
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42891
|
+
}
|
|
42892
|
+
},
|
|
42893
|
+
{
|
|
42894
|
+
"kind": "field",
|
|
42895
|
+
"name": "digitsIndexes",
|
|
42896
|
+
"type": {
|
|
42897
|
+
"text": "number[]"
|
|
42898
|
+
},
|
|
42899
|
+
"privacy": "public",
|
|
42900
|
+
"readonly": true,
|
|
42901
|
+
"inheritedFrom": {
|
|
42902
|
+
"name": "VerificationCodeInput",
|
|
42903
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42904
|
+
}
|
|
42905
|
+
},
|
|
42906
|
+
{
|
|
42907
|
+
"kind": "field",
|
|
42908
|
+
"name": "controlIdPrefix",
|
|
42909
|
+
"type": {
|
|
42910
|
+
"text": "string"
|
|
42911
|
+
},
|
|
42912
|
+
"privacy": "public",
|
|
42913
|
+
"readonly": true,
|
|
42914
|
+
"inheritedFrom": {
|
|
42915
|
+
"name": "VerificationCodeInput",
|
|
42916
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42917
|
+
}
|
|
42918
|
+
},
|
|
42919
|
+
{
|
|
42920
|
+
"kind": "field",
|
|
42921
|
+
"name": "labelId",
|
|
42922
|
+
"type": {
|
|
42923
|
+
"text": "string"
|
|
42924
|
+
},
|
|
42925
|
+
"privacy": "public",
|
|
42926
|
+
"readonly": true,
|
|
42927
|
+
"inheritedFrom": {
|
|
42928
|
+
"name": "VerificationCodeInput",
|
|
42929
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42930
|
+
}
|
|
42931
|
+
},
|
|
42932
|
+
{
|
|
42933
|
+
"kind": "field",
|
|
42934
|
+
"name": "hasLabel",
|
|
42935
|
+
"type": {
|
|
42936
|
+
"text": "boolean"
|
|
42937
|
+
},
|
|
42938
|
+
"privacy": "public",
|
|
42939
|
+
"readonly": true,
|
|
42940
|
+
"inheritedFrom": {
|
|
42941
|
+
"name": "VerificationCodeInput",
|
|
42942
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42943
|
+
}
|
|
42944
|
+
},
|
|
42945
|
+
{
|
|
42946
|
+
"kind": "method",
|
|
42947
|
+
"name": "getControlId",
|
|
42948
|
+
"privacy": "public",
|
|
42949
|
+
"return": {
|
|
42950
|
+
"type": {
|
|
42951
|
+
"text": "string"
|
|
42952
|
+
}
|
|
42953
|
+
},
|
|
42954
|
+
"parameters": [
|
|
42955
|
+
{
|
|
42956
|
+
"name": "index",
|
|
42957
|
+
"type": {
|
|
42958
|
+
"text": "number"
|
|
42959
|
+
}
|
|
42960
|
+
}
|
|
42961
|
+
],
|
|
42962
|
+
"inheritedFrom": {
|
|
42963
|
+
"name": "VerificationCodeInput",
|
|
42964
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42965
|
+
}
|
|
42966
|
+
},
|
|
42967
|
+
{
|
|
42968
|
+
"kind": "method",
|
|
42969
|
+
"name": "clear",
|
|
42970
|
+
"privacy": "public",
|
|
42971
|
+
"return": {
|
|
42972
|
+
"type": {
|
|
42973
|
+
"text": "void"
|
|
42974
|
+
}
|
|
42975
|
+
},
|
|
42976
|
+
"description": "Clears digits, emits `change`, and focuses the first field when connected.",
|
|
42977
|
+
"inheritedFrom": {
|
|
42978
|
+
"name": "VerificationCodeInput",
|
|
42979
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42980
|
+
}
|
|
42981
|
+
},
|
|
42982
|
+
{
|
|
42983
|
+
"kind": "method",
|
|
42984
|
+
"name": "focus",
|
|
42985
|
+
"privacy": "public",
|
|
42986
|
+
"return": {
|
|
42987
|
+
"type": {
|
|
42988
|
+
"text": "void"
|
|
42989
|
+
}
|
|
42990
|
+
},
|
|
42991
|
+
"inheritedFrom": {
|
|
42992
|
+
"name": "VerificationCodeInput",
|
|
42993
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
42994
|
+
}
|
|
42995
|
+
},
|
|
42996
|
+
{
|
|
42997
|
+
"kind": "method",
|
|
42998
|
+
"name": "digitsChanged",
|
|
42999
|
+
"return": {
|
|
43000
|
+
"type": {
|
|
43001
|
+
"text": "void"
|
|
43002
|
+
}
|
|
43003
|
+
},
|
|
43004
|
+
"inheritedFrom": {
|
|
43005
|
+
"name": "VerificationCodeInput",
|
|
43006
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43007
|
+
}
|
|
43008
|
+
},
|
|
43009
|
+
{
|
|
43010
|
+
"kind": "field",
|
|
43011
|
+
"name": "digitClassnames",
|
|
43012
|
+
"type": {
|
|
43013
|
+
"text": "string"
|
|
43014
|
+
},
|
|
43015
|
+
"privacy": "public",
|
|
43016
|
+
"readonly": true,
|
|
43017
|
+
"inheritedFrom": {
|
|
43018
|
+
"name": "VerificationCodeInput",
|
|
43019
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43020
|
+
}
|
|
43021
|
+
},
|
|
43022
|
+
{
|
|
43023
|
+
"kind": "method",
|
|
43024
|
+
"name": "sanitizeCode",
|
|
43025
|
+
"privacy": "private",
|
|
43026
|
+
"return": {
|
|
43027
|
+
"type": {
|
|
43028
|
+
"text": "string"
|
|
43029
|
+
}
|
|
43030
|
+
},
|
|
43031
|
+
"parameters": [
|
|
43032
|
+
{
|
|
43033
|
+
"name": "raw",
|
|
43034
|
+
"type": {
|
|
43035
|
+
"text": "unknown"
|
|
43036
|
+
}
|
|
43037
|
+
}
|
|
43038
|
+
],
|
|
43039
|
+
"inheritedFrom": {
|
|
43040
|
+
"name": "VerificationCodeInput",
|
|
43041
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43042
|
+
}
|
|
43043
|
+
},
|
|
43044
|
+
{
|
|
43045
|
+
"kind": "method",
|
|
43046
|
+
"name": "bindControlListeners",
|
|
43047
|
+
"privacy": "private",
|
|
43048
|
+
"return": {
|
|
43049
|
+
"type": {
|
|
43050
|
+
"text": "void"
|
|
43051
|
+
}
|
|
43052
|
+
},
|
|
43053
|
+
"inheritedFrom": {
|
|
43054
|
+
"name": "VerificationCodeInput",
|
|
43055
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43056
|
+
}
|
|
43057
|
+
},
|
|
43058
|
+
{
|
|
43059
|
+
"kind": "method",
|
|
43060
|
+
"name": "unbindControlListeners",
|
|
43061
|
+
"privacy": "private",
|
|
43062
|
+
"return": {
|
|
43063
|
+
"type": {
|
|
43064
|
+
"text": "void"
|
|
43065
|
+
}
|
|
43066
|
+
},
|
|
43067
|
+
"inheritedFrom": {
|
|
43068
|
+
"name": "VerificationCodeInput",
|
|
43069
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43070
|
+
}
|
|
43071
|
+
},
|
|
43072
|
+
{
|
|
43073
|
+
"kind": "method",
|
|
43074
|
+
"name": "onKeyDown",
|
|
43075
|
+
"privacy": "private",
|
|
43076
|
+
"return": {
|
|
43077
|
+
"type": {
|
|
43078
|
+
"text": "void"
|
|
43079
|
+
}
|
|
43080
|
+
},
|
|
43081
|
+
"parameters": [
|
|
43082
|
+
{
|
|
43083
|
+
"name": "event",
|
|
43084
|
+
"type": {
|
|
43085
|
+
"text": "KeyboardEvent"
|
|
43086
|
+
}
|
|
43087
|
+
},
|
|
43088
|
+
{
|
|
43089
|
+
"name": "index",
|
|
43090
|
+
"type": {
|
|
43091
|
+
"text": "number"
|
|
43092
|
+
}
|
|
43093
|
+
}
|
|
43094
|
+
],
|
|
43095
|
+
"inheritedFrom": {
|
|
43096
|
+
"name": "VerificationCodeInput",
|
|
43097
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43098
|
+
}
|
|
43099
|
+
},
|
|
43100
|
+
{
|
|
43101
|
+
"kind": "method",
|
|
43102
|
+
"name": "isBlockedCharacter",
|
|
43103
|
+
"privacy": "private",
|
|
43104
|
+
"return": {
|
|
43105
|
+
"type": {
|
|
43106
|
+
"text": "boolean"
|
|
43107
|
+
}
|
|
43108
|
+
},
|
|
43109
|
+
"parameters": [
|
|
43110
|
+
{
|
|
43111
|
+
"name": "event",
|
|
43112
|
+
"type": {
|
|
43113
|
+
"text": "KeyboardEvent"
|
|
43114
|
+
}
|
|
43115
|
+
}
|
|
43116
|
+
],
|
|
43117
|
+
"inheritedFrom": {
|
|
43118
|
+
"name": "VerificationCodeInput",
|
|
43119
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43120
|
+
}
|
|
43121
|
+
},
|
|
43122
|
+
{
|
|
43123
|
+
"kind": "method",
|
|
43124
|
+
"name": "onInput",
|
|
43125
|
+
"privacy": "private",
|
|
43126
|
+
"return": {
|
|
43127
|
+
"type": {
|
|
43128
|
+
"text": "void"
|
|
43129
|
+
}
|
|
43130
|
+
},
|
|
43131
|
+
"parameters": [
|
|
43132
|
+
{
|
|
43133
|
+
"name": "event",
|
|
43134
|
+
"type": {
|
|
43135
|
+
"text": "InputEvent"
|
|
43136
|
+
}
|
|
43137
|
+
},
|
|
43138
|
+
{
|
|
43139
|
+
"name": "index",
|
|
43140
|
+
"type": {
|
|
43141
|
+
"text": "number"
|
|
43142
|
+
}
|
|
43143
|
+
}
|
|
43144
|
+
],
|
|
43145
|
+
"inheritedFrom": {
|
|
43146
|
+
"name": "VerificationCodeInput",
|
|
43147
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43148
|
+
}
|
|
43149
|
+
},
|
|
43150
|
+
{
|
|
43151
|
+
"kind": "method",
|
|
43152
|
+
"name": "onPaste",
|
|
43153
|
+
"privacy": "private",
|
|
43154
|
+
"return": {
|
|
43155
|
+
"type": {
|
|
43156
|
+
"text": "void"
|
|
43157
|
+
}
|
|
43158
|
+
},
|
|
43159
|
+
"parameters": [
|
|
43160
|
+
{
|
|
43161
|
+
"name": "event",
|
|
43162
|
+
"type": {
|
|
43163
|
+
"text": "ClipboardEvent"
|
|
43164
|
+
}
|
|
43165
|
+
},
|
|
43166
|
+
{
|
|
43167
|
+
"name": "index",
|
|
43168
|
+
"type": {
|
|
43169
|
+
"text": "number"
|
|
43170
|
+
}
|
|
43171
|
+
}
|
|
43172
|
+
],
|
|
43173
|
+
"inheritedFrom": {
|
|
43174
|
+
"name": "VerificationCodeInput",
|
|
43175
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43176
|
+
}
|
|
43177
|
+
},
|
|
43178
|
+
{
|
|
43179
|
+
"kind": "method",
|
|
43180
|
+
"name": "handleBackspace",
|
|
43181
|
+
"privacy": "private",
|
|
43182
|
+
"return": {
|
|
43183
|
+
"type": {
|
|
43184
|
+
"text": "void"
|
|
43185
|
+
}
|
|
43186
|
+
},
|
|
43187
|
+
"parameters": [
|
|
43188
|
+
{
|
|
43189
|
+
"name": "index",
|
|
43190
|
+
"type": {
|
|
43191
|
+
"text": "number"
|
|
43192
|
+
}
|
|
43193
|
+
}
|
|
43194
|
+
],
|
|
43195
|
+
"inheritedFrom": {
|
|
43196
|
+
"name": "VerificationCodeInput",
|
|
43197
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43198
|
+
}
|
|
43199
|
+
},
|
|
43200
|
+
{
|
|
43201
|
+
"kind": "method",
|
|
43202
|
+
"name": "handleDelete",
|
|
43203
|
+
"privacy": "private",
|
|
43204
|
+
"return": {
|
|
43205
|
+
"type": {
|
|
43206
|
+
"text": "void"
|
|
43207
|
+
}
|
|
43208
|
+
},
|
|
43209
|
+
"parameters": [
|
|
43210
|
+
{
|
|
43211
|
+
"name": "index",
|
|
43212
|
+
"type": {
|
|
43213
|
+
"text": "number"
|
|
43214
|
+
}
|
|
43215
|
+
}
|
|
43216
|
+
],
|
|
43217
|
+
"inheritedFrom": {
|
|
43218
|
+
"name": "VerificationCodeInput",
|
|
43219
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43220
|
+
}
|
|
43221
|
+
},
|
|
43222
|
+
{
|
|
43223
|
+
"kind": "method",
|
|
43224
|
+
"name": "getIndexFromInput",
|
|
43225
|
+
"privacy": "private",
|
|
43226
|
+
"return": {
|
|
43227
|
+
"type": {
|
|
43228
|
+
"text": "number | null"
|
|
43229
|
+
}
|
|
43230
|
+
},
|
|
43231
|
+
"parameters": [
|
|
43232
|
+
{
|
|
43233
|
+
"name": "input",
|
|
43234
|
+
"type": {
|
|
43235
|
+
"text": "HTMLInputElement"
|
|
43236
|
+
}
|
|
43237
|
+
}
|
|
43238
|
+
],
|
|
43239
|
+
"inheritedFrom": {
|
|
43240
|
+
"name": "VerificationCodeInput",
|
|
43241
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43242
|
+
}
|
|
43243
|
+
},
|
|
43244
|
+
{
|
|
43245
|
+
"kind": "method",
|
|
43246
|
+
"name": "syncDigitsFromValue",
|
|
43247
|
+
"privacy": "private",
|
|
43248
|
+
"return": {
|
|
43249
|
+
"type": {
|
|
43250
|
+
"text": "void"
|
|
43251
|
+
}
|
|
43252
|
+
},
|
|
43253
|
+
"parameters": [
|
|
43254
|
+
{
|
|
43255
|
+
"name": "cleaned",
|
|
43256
|
+
"type": {
|
|
43257
|
+
"text": "string"
|
|
43258
|
+
}
|
|
43259
|
+
}
|
|
43260
|
+
],
|
|
43261
|
+
"description": "Maps a sanitized code string into per-digit `values` and syncs the DOM when connected.",
|
|
43262
|
+
"inheritedFrom": {
|
|
43263
|
+
"name": "VerificationCodeInput",
|
|
43264
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43265
|
+
}
|
|
43266
|
+
},
|
|
43267
|
+
{
|
|
43268
|
+
"kind": "method",
|
|
43269
|
+
"name": "updateDigit",
|
|
43270
|
+
"privacy": "private",
|
|
43271
|
+
"return": {
|
|
43272
|
+
"type": {
|
|
43273
|
+
"text": "void"
|
|
43274
|
+
}
|
|
43275
|
+
},
|
|
43276
|
+
"parameters": [
|
|
43277
|
+
{
|
|
43278
|
+
"name": "index",
|
|
43279
|
+
"type": {
|
|
43280
|
+
"text": "number"
|
|
43281
|
+
}
|
|
43282
|
+
},
|
|
43283
|
+
{
|
|
43284
|
+
"name": "digit",
|
|
43285
|
+
"type": {
|
|
43286
|
+
"text": "string"
|
|
43287
|
+
}
|
|
43288
|
+
}
|
|
43289
|
+
],
|
|
43290
|
+
"inheritedFrom": {
|
|
43291
|
+
"name": "VerificationCodeInput",
|
|
43292
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43293
|
+
}
|
|
43294
|
+
},
|
|
43295
|
+
{
|
|
43296
|
+
"kind": "method",
|
|
43297
|
+
"name": "applyDigits",
|
|
43298
|
+
"privacy": "private",
|
|
43299
|
+
"return": {
|
|
43300
|
+
"type": {
|
|
43301
|
+
"text": "void"
|
|
43302
|
+
}
|
|
43303
|
+
},
|
|
43304
|
+
"parameters": [
|
|
43305
|
+
{
|
|
43306
|
+
"name": "raw",
|
|
43307
|
+
"type": {
|
|
43308
|
+
"text": "string"
|
|
43309
|
+
}
|
|
43310
|
+
},
|
|
43311
|
+
{
|
|
43312
|
+
"name": "startIndex",
|
|
43313
|
+
"type": {
|
|
43314
|
+
"text": "number"
|
|
43315
|
+
}
|
|
43316
|
+
}
|
|
43317
|
+
],
|
|
43318
|
+
"inheritedFrom": {
|
|
43319
|
+
"name": "VerificationCodeInput",
|
|
43320
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43321
|
+
}
|
|
43322
|
+
},
|
|
43323
|
+
{
|
|
43324
|
+
"kind": "method",
|
|
43325
|
+
"name": "commitValues",
|
|
43326
|
+
"privacy": "private",
|
|
43327
|
+
"return": {
|
|
43328
|
+
"type": {
|
|
43329
|
+
"text": "void"
|
|
43330
|
+
}
|
|
43331
|
+
},
|
|
43332
|
+
"parameters": [
|
|
43333
|
+
{
|
|
43334
|
+
"name": "nextValues",
|
|
43335
|
+
"type": {
|
|
43336
|
+
"text": "string[]"
|
|
43337
|
+
}
|
|
43338
|
+
}
|
|
43339
|
+
],
|
|
43340
|
+
"description": "Pushes digit state into the form-associated `value` and emits change / complete.",
|
|
43341
|
+
"inheritedFrom": {
|
|
43342
|
+
"name": "VerificationCodeInput",
|
|
43343
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43344
|
+
}
|
|
43345
|
+
},
|
|
43346
|
+
{
|
|
43347
|
+
"kind": "method",
|
|
43348
|
+
"name": "syncFieldValues",
|
|
43349
|
+
"privacy": "private",
|
|
43350
|
+
"return": {
|
|
43351
|
+
"type": {
|
|
43352
|
+
"text": "void"
|
|
43353
|
+
}
|
|
43354
|
+
},
|
|
43355
|
+
"inheritedFrom": {
|
|
43356
|
+
"name": "VerificationCodeInput",
|
|
43357
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43358
|
+
}
|
|
43359
|
+
},
|
|
43360
|
+
{
|
|
43361
|
+
"kind": "method",
|
|
43362
|
+
"name": "syncFieldValue",
|
|
43363
|
+
"privacy": "private",
|
|
43364
|
+
"return": {
|
|
43365
|
+
"type": {
|
|
43366
|
+
"text": "void"
|
|
43367
|
+
}
|
|
43368
|
+
},
|
|
43369
|
+
"parameters": [
|
|
43370
|
+
{
|
|
43371
|
+
"name": "index",
|
|
43372
|
+
"type": {
|
|
43373
|
+
"text": "number"
|
|
43374
|
+
}
|
|
43375
|
+
}
|
|
43376
|
+
],
|
|
43377
|
+
"inheritedFrom": {
|
|
43378
|
+
"name": "VerificationCodeInput",
|
|
43379
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43380
|
+
}
|
|
43381
|
+
},
|
|
43382
|
+
{
|
|
43383
|
+
"kind": "method",
|
|
43384
|
+
"name": "focusDigit",
|
|
43385
|
+
"privacy": "private",
|
|
43386
|
+
"return": {
|
|
43387
|
+
"type": {
|
|
43388
|
+
"text": "void"
|
|
43389
|
+
}
|
|
43390
|
+
},
|
|
43391
|
+
"parameters": [
|
|
43392
|
+
{
|
|
43393
|
+
"name": "index",
|
|
43394
|
+
"type": {
|
|
43395
|
+
"text": "number"
|
|
43396
|
+
}
|
|
43397
|
+
}
|
|
43398
|
+
],
|
|
43399
|
+
"inheritedFrom": {
|
|
43400
|
+
"name": "VerificationCodeInput",
|
|
43401
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43402
|
+
}
|
|
43403
|
+
},
|
|
43404
|
+
{
|
|
43405
|
+
"kind": "field",
|
|
43406
|
+
"name": "rootNode",
|
|
43407
|
+
"type": {
|
|
43408
|
+
"text": "ParentNode"
|
|
43409
|
+
},
|
|
43410
|
+
"privacy": "private",
|
|
43411
|
+
"readonly": true,
|
|
43412
|
+
"inheritedFrom": {
|
|
43413
|
+
"name": "VerificationCodeInput",
|
|
43414
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43415
|
+
}
|
|
43416
|
+
},
|
|
43417
|
+
{
|
|
43418
|
+
"kind": "method",
|
|
43419
|
+
"name": "getControlElement",
|
|
43420
|
+
"privacy": "private",
|
|
43421
|
+
"return": {
|
|
43422
|
+
"type": {
|
|
43423
|
+
"text": "HTMLInputElement | null"
|
|
43424
|
+
}
|
|
43425
|
+
},
|
|
43426
|
+
"parameters": [
|
|
43427
|
+
{
|
|
43428
|
+
"name": "index",
|
|
43429
|
+
"type": {
|
|
43430
|
+
"text": "number"
|
|
43431
|
+
}
|
|
43432
|
+
}
|
|
43433
|
+
],
|
|
43434
|
+
"inheritedFrom": {
|
|
43435
|
+
"name": "VerificationCodeInput",
|
|
43436
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43437
|
+
}
|
|
43438
|
+
},
|
|
43439
|
+
{
|
|
43440
|
+
"kind": "method",
|
|
43441
|
+
"name": "isComplete",
|
|
43442
|
+
"privacy": "private",
|
|
43443
|
+
"return": {
|
|
43444
|
+
"type": {
|
|
43445
|
+
"text": "boolean"
|
|
43446
|
+
}
|
|
43447
|
+
},
|
|
43448
|
+
"inheritedFrom": {
|
|
43449
|
+
"name": "VerificationCodeInput",
|
|
43450
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43451
|
+
}
|
|
43452
|
+
},
|
|
43453
|
+
{
|
|
43454
|
+
"kind": "method",
|
|
43455
|
+
"name": "emitChange",
|
|
43456
|
+
"privacy": "private",
|
|
43457
|
+
"return": {
|
|
43458
|
+
"type": {
|
|
43459
|
+
"text": "void"
|
|
43460
|
+
}
|
|
43461
|
+
},
|
|
43462
|
+
"inheritedFrom": {
|
|
43463
|
+
"name": "VerificationCodeInput",
|
|
43464
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43465
|
+
}
|
|
43466
|
+
},
|
|
43467
|
+
{
|
|
43468
|
+
"kind": "field",
|
|
43469
|
+
"name": "proxy",
|
|
43470
|
+
"inheritedFrom": {
|
|
43471
|
+
"name": "VerificationCodeInput",
|
|
43472
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43473
|
+
}
|
|
43474
|
+
}
|
|
43475
|
+
],
|
|
43476
|
+
"events": [
|
|
43477
|
+
{
|
|
43478
|
+
"description": "Fired when any digit changes. Detail: `{ value: string }`.",
|
|
43479
|
+
"name": "change",
|
|
43480
|
+
"inheritedFrom": {
|
|
43481
|
+
"name": "VerificationCodeInput",
|
|
43482
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43483
|
+
}
|
|
43484
|
+
},
|
|
43485
|
+
{
|
|
43486
|
+
"description": "Fired when all digits are filled. Detail: `{ value: string }`.",
|
|
43487
|
+
"name": "complete",
|
|
43488
|
+
"inheritedFrom": {
|
|
43489
|
+
"name": "VerificationCodeInput",
|
|
43490
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43491
|
+
}
|
|
43492
|
+
}
|
|
43493
|
+
]
|
|
43494
|
+
},
|
|
43495
|
+
{
|
|
43496
|
+
"kind": "variable",
|
|
43497
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43498
|
+
"default": "foundationVerificationCodeInputConfig"
|
|
43499
|
+
},
|
|
43500
|
+
{
|
|
43501
|
+
"kind": "variable",
|
|
43502
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43503
|
+
"default": "foundationVerificationCodeInputShadowOptions"
|
|
43504
|
+
},
|
|
43505
|
+
{
|
|
43506
|
+
"kind": "variable",
|
|
43507
|
+
"name": "rapidVerificationCodeInput"
|
|
43508
|
+
}
|
|
43509
|
+
],
|
|
43510
|
+
"exports": [
|
|
43511
|
+
{
|
|
43512
|
+
"kind": "js",
|
|
43513
|
+
"name": "VerificationCodeInput",
|
|
43514
|
+
"declaration": {
|
|
43515
|
+
"name": "VerificationCodeInput",
|
|
43516
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43517
|
+
}
|
|
43518
|
+
},
|
|
43519
|
+
{
|
|
43520
|
+
"kind": "js",
|
|
43521
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43522
|
+
"declaration": {
|
|
43523
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43524
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43525
|
+
}
|
|
43526
|
+
},
|
|
43527
|
+
{
|
|
43528
|
+
"kind": "js",
|
|
43529
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43530
|
+
"declaration": {
|
|
43531
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43532
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43533
|
+
}
|
|
43534
|
+
},
|
|
43535
|
+
{
|
|
43536
|
+
"kind": "js",
|
|
43537
|
+
"name": "rapidVerificationCodeInput",
|
|
43538
|
+
"declaration": {
|
|
43539
|
+
"name": "rapidVerificationCodeInput",
|
|
43540
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43541
|
+
}
|
|
43542
|
+
}
|
|
43543
|
+
]
|
|
43544
|
+
},
|
|
42580
43545
|
{
|
|
42581
43546
|
"kind": "javascript-module",
|
|
42582
43547
|
"path": "src/_config/styles/colors.ts",
|