@genesislcap/rapid-design-system 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 +1004 -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 +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 +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 rapidPill,\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 rapidPill,\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": [
|
|
@@ -731,6 +731,14 @@
|
|
|
731
731
|
"name": "*",
|
|
732
732
|
"package": "./url-input"
|
|
733
733
|
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"kind": "js",
|
|
737
|
+
"name": "*",
|
|
738
|
+
"declaration": {
|
|
739
|
+
"name": "*",
|
|
740
|
+
"package": "./verification-code-input"
|
|
741
|
+
}
|
|
734
742
|
}
|
|
735
743
|
]
|
|
736
744
|
},
|
|
@@ -878,11 +886,11 @@
|
|
|
878
886
|
},
|
|
879
887
|
{
|
|
880
888
|
"kind": "javascript-module",
|
|
881
|
-
"path": "src/accordion/accordion.styles.ts",
|
|
889
|
+
"path": "src/accordion-item/accordion-item.styles.ts",
|
|
882
890
|
"declarations": [
|
|
883
891
|
{
|
|
884
892
|
"kind": "function",
|
|
885
|
-
"name": "
|
|
893
|
+
"name": "rapidAccordionItemStyles",
|
|
886
894
|
"return": {
|
|
887
895
|
"type": {
|
|
888
896
|
"text": "ElementStyles"
|
|
@@ -907,24 +915,24 @@
|
|
|
907
915
|
"exports": [
|
|
908
916
|
{
|
|
909
917
|
"kind": "js",
|
|
910
|
-
"name": "
|
|
918
|
+
"name": "rapidAccordionItemStyles",
|
|
911
919
|
"declaration": {
|
|
912
|
-
"name": "
|
|
913
|
-
"module": "src/accordion/accordion.styles.ts"
|
|
920
|
+
"name": "rapidAccordionItemStyles",
|
|
921
|
+
"module": "src/accordion-item/accordion-item.styles.ts"
|
|
914
922
|
}
|
|
915
923
|
}
|
|
916
924
|
]
|
|
917
925
|
},
|
|
918
926
|
{
|
|
919
927
|
"kind": "javascript-module",
|
|
920
|
-
"path": "src/accordion/accordion.template.ts",
|
|
928
|
+
"path": "src/accordion-item/accordion-item.template.ts",
|
|
921
929
|
"declarations": [
|
|
922
930
|
{
|
|
923
931
|
"kind": "function",
|
|
924
|
-
"name": "
|
|
932
|
+
"name": "rapidAccordionItemTemplate",
|
|
925
933
|
"return": {
|
|
926
934
|
"type": {
|
|
927
|
-
"text": "ViewTemplate<
|
|
935
|
+
"text": "ViewTemplate<AccordionItem>"
|
|
928
936
|
}
|
|
929
937
|
},
|
|
930
938
|
"parameters": [
|
|
@@ -946,56 +954,56 @@
|
|
|
946
954
|
"exports": [
|
|
947
955
|
{
|
|
948
956
|
"kind": "js",
|
|
949
|
-
"name": "
|
|
957
|
+
"name": "rapidAccordionItemTemplate",
|
|
950
958
|
"declaration": {
|
|
951
|
-
"name": "
|
|
952
|
-
"module": "src/accordion/accordion.template.ts"
|
|
959
|
+
"name": "rapidAccordionItemTemplate",
|
|
960
|
+
"module": "src/accordion-item/accordion-item.template.ts"
|
|
953
961
|
}
|
|
954
962
|
}
|
|
955
963
|
]
|
|
956
964
|
},
|
|
957
965
|
{
|
|
958
966
|
"kind": "javascript-module",
|
|
959
|
-
"path": "src/accordion/accordion.ts",
|
|
967
|
+
"path": "src/accordion-item/accordion-item.ts",
|
|
960
968
|
"declarations": [
|
|
961
969
|
{
|
|
962
970
|
"kind": "class",
|
|
963
971
|
"description": "",
|
|
964
|
-
"name": "
|
|
972
|
+
"name": "AccordionItem",
|
|
965
973
|
"superclass": {
|
|
966
|
-
"name": "
|
|
974
|
+
"name": "foundationAccordionItem",
|
|
967
975
|
"package": "@genesislcap/foundation-ui"
|
|
968
976
|
},
|
|
969
|
-
"tagName": "%%prefix%%-accordion",
|
|
977
|
+
"tagName": "%%prefix%%-accordion-item",
|
|
970
978
|
"customElement": true
|
|
971
979
|
},
|
|
972
980
|
{
|
|
973
981
|
"kind": "variable",
|
|
974
|
-
"name": "
|
|
982
|
+
"name": "rapidAccordionItem"
|
|
975
983
|
}
|
|
976
984
|
],
|
|
977
985
|
"exports": [
|
|
978
986
|
{
|
|
979
987
|
"kind": "js",
|
|
980
|
-
"name": "
|
|
988
|
+
"name": "AccordionItem",
|
|
981
989
|
"declaration": {
|
|
982
|
-
"name": "
|
|
983
|
-
"module": "src/accordion/accordion.ts"
|
|
990
|
+
"name": "AccordionItem",
|
|
991
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
984
992
|
}
|
|
985
993
|
},
|
|
986
994
|
{
|
|
987
995
|
"kind": "js",
|
|
988
|
-
"name": "
|
|
996
|
+
"name": "rapidAccordionItem",
|
|
989
997
|
"declaration": {
|
|
990
|
-
"name": "
|
|
991
|
-
"module": "src/accordion/accordion.ts"
|
|
998
|
+
"name": "rapidAccordionItem",
|
|
999
|
+
"module": "src/accordion-item/accordion-item.ts"
|
|
992
1000
|
}
|
|
993
1001
|
}
|
|
994
1002
|
]
|
|
995
1003
|
},
|
|
996
1004
|
{
|
|
997
1005
|
"kind": "javascript-module",
|
|
998
|
-
"path": "src/accordion/index.ts",
|
|
1006
|
+
"path": "src/accordion-item/index.ts",
|
|
999
1007
|
"declarations": [],
|
|
1000
1008
|
"exports": [
|
|
1001
1009
|
{
|
|
@@ -1003,7 +1011,7 @@
|
|
|
1003
1011
|
"name": "*",
|
|
1004
1012
|
"declaration": {
|
|
1005
1013
|
"name": "*",
|
|
1006
|
-
"package": "./accordion"
|
|
1014
|
+
"package": "./accordion-item"
|
|
1007
1015
|
}
|
|
1008
1016
|
},
|
|
1009
1017
|
{
|
|
@@ -1011,7 +1019,7 @@
|
|
|
1011
1019
|
"name": "*",
|
|
1012
1020
|
"declaration": {
|
|
1013
1021
|
"name": "*",
|
|
1014
|
-
"package": "./accordion.styles"
|
|
1022
|
+
"package": "./accordion-item.styles"
|
|
1015
1023
|
}
|
|
1016
1024
|
},
|
|
1017
1025
|
{
|
|
@@ -1019,18 +1027,18 @@
|
|
|
1019
1027
|
"name": "*",
|
|
1020
1028
|
"declaration": {
|
|
1021
1029
|
"name": "*",
|
|
1022
|
-
"package": "./accordion.template"
|
|
1030
|
+
"package": "./accordion-item.template"
|
|
1023
1031
|
}
|
|
1024
1032
|
}
|
|
1025
1033
|
]
|
|
1026
1034
|
},
|
|
1027
1035
|
{
|
|
1028
1036
|
"kind": "javascript-module",
|
|
1029
|
-
"path": "src/accordion
|
|
1037
|
+
"path": "src/accordion/accordion.styles.ts",
|
|
1030
1038
|
"declarations": [
|
|
1031
1039
|
{
|
|
1032
1040
|
"kind": "function",
|
|
1033
|
-
"name": "
|
|
1041
|
+
"name": "rapidAccordionStyles",
|
|
1034
1042
|
"return": {
|
|
1035
1043
|
"type": {
|
|
1036
1044
|
"text": "ElementStyles"
|
|
@@ -1055,24 +1063,24 @@
|
|
|
1055
1063
|
"exports": [
|
|
1056
1064
|
{
|
|
1057
1065
|
"kind": "js",
|
|
1058
|
-
"name": "
|
|
1066
|
+
"name": "rapidAccordionStyles",
|
|
1059
1067
|
"declaration": {
|
|
1060
|
-
"name": "
|
|
1061
|
-
"module": "src/accordion
|
|
1068
|
+
"name": "rapidAccordionStyles",
|
|
1069
|
+
"module": "src/accordion/accordion.styles.ts"
|
|
1062
1070
|
}
|
|
1063
1071
|
}
|
|
1064
1072
|
]
|
|
1065
1073
|
},
|
|
1066
1074
|
{
|
|
1067
1075
|
"kind": "javascript-module",
|
|
1068
|
-
"path": "src/accordion
|
|
1076
|
+
"path": "src/accordion/accordion.template.ts",
|
|
1069
1077
|
"declarations": [
|
|
1070
1078
|
{
|
|
1071
1079
|
"kind": "function",
|
|
1072
|
-
"name": "
|
|
1080
|
+
"name": "rapidAccordionTemplate",
|
|
1073
1081
|
"return": {
|
|
1074
1082
|
"type": {
|
|
1075
|
-
"text": "ViewTemplate<
|
|
1083
|
+
"text": "ViewTemplate<Accordion>"
|
|
1076
1084
|
}
|
|
1077
1085
|
},
|
|
1078
1086
|
"parameters": [
|
|
@@ -1094,56 +1102,56 @@
|
|
|
1094
1102
|
"exports": [
|
|
1095
1103
|
{
|
|
1096
1104
|
"kind": "js",
|
|
1097
|
-
"name": "
|
|
1105
|
+
"name": "rapidAccordionTemplate",
|
|
1098
1106
|
"declaration": {
|
|
1099
|
-
"name": "
|
|
1100
|
-
"module": "src/accordion
|
|
1107
|
+
"name": "rapidAccordionTemplate",
|
|
1108
|
+
"module": "src/accordion/accordion.template.ts"
|
|
1101
1109
|
}
|
|
1102
1110
|
}
|
|
1103
1111
|
]
|
|
1104
1112
|
},
|
|
1105
1113
|
{
|
|
1106
1114
|
"kind": "javascript-module",
|
|
1107
|
-
"path": "src/accordion
|
|
1115
|
+
"path": "src/accordion/accordion.ts",
|
|
1108
1116
|
"declarations": [
|
|
1109
1117
|
{
|
|
1110
1118
|
"kind": "class",
|
|
1111
1119
|
"description": "",
|
|
1112
|
-
"name": "
|
|
1120
|
+
"name": "Accordion",
|
|
1113
1121
|
"superclass": {
|
|
1114
|
-
"name": "
|
|
1122
|
+
"name": "foundationAccordion",
|
|
1115
1123
|
"package": "@genesislcap/foundation-ui"
|
|
1116
1124
|
},
|
|
1117
|
-
"tagName": "%%prefix%%-accordion
|
|
1125
|
+
"tagName": "%%prefix%%-accordion",
|
|
1118
1126
|
"customElement": true
|
|
1119
1127
|
},
|
|
1120
1128
|
{
|
|
1121
1129
|
"kind": "variable",
|
|
1122
|
-
"name": "
|
|
1130
|
+
"name": "rapidAccordion"
|
|
1123
1131
|
}
|
|
1124
1132
|
],
|
|
1125
1133
|
"exports": [
|
|
1126
1134
|
{
|
|
1127
1135
|
"kind": "js",
|
|
1128
|
-
"name": "
|
|
1136
|
+
"name": "Accordion",
|
|
1129
1137
|
"declaration": {
|
|
1130
|
-
"name": "
|
|
1131
|
-
"module": "src/accordion
|
|
1138
|
+
"name": "Accordion",
|
|
1139
|
+
"module": "src/accordion/accordion.ts"
|
|
1132
1140
|
}
|
|
1133
1141
|
},
|
|
1134
1142
|
{
|
|
1135
1143
|
"kind": "js",
|
|
1136
|
-
"name": "
|
|
1144
|
+
"name": "rapidAccordion",
|
|
1137
1145
|
"declaration": {
|
|
1138
|
-
"name": "
|
|
1139
|
-
"module": "src/accordion
|
|
1146
|
+
"name": "rapidAccordion",
|
|
1147
|
+
"module": "src/accordion/accordion.ts"
|
|
1140
1148
|
}
|
|
1141
1149
|
}
|
|
1142
1150
|
]
|
|
1143
1151
|
},
|
|
1144
1152
|
{
|
|
1145
1153
|
"kind": "javascript-module",
|
|
1146
|
-
"path": "src/accordion
|
|
1154
|
+
"path": "src/accordion/index.ts",
|
|
1147
1155
|
"declarations": [],
|
|
1148
1156
|
"exports": [
|
|
1149
1157
|
{
|
|
@@ -1151,7 +1159,7 @@
|
|
|
1151
1159
|
"name": "*",
|
|
1152
1160
|
"declaration": {
|
|
1153
1161
|
"name": "*",
|
|
1154
|
-
"package": "./accordion
|
|
1162
|
+
"package": "./accordion"
|
|
1155
1163
|
}
|
|
1156
1164
|
},
|
|
1157
1165
|
{
|
|
@@ -1159,7 +1167,7 @@
|
|
|
1159
1167
|
"name": "*",
|
|
1160
1168
|
"declaration": {
|
|
1161
1169
|
"name": "*",
|
|
1162
|
-
"package": "./accordion
|
|
1170
|
+
"package": "./accordion.styles"
|
|
1163
1171
|
}
|
|
1164
1172
|
},
|
|
1165
1173
|
{
|
|
@@ -1167,7 +1175,7 @@
|
|
|
1167
1175
|
"name": "*",
|
|
1168
1176
|
"declaration": {
|
|
1169
1177
|
"name": "*",
|
|
1170
|
-
"package": "./accordion
|
|
1178
|
+
"package": "./accordion.template"
|
|
1171
1179
|
}
|
|
1172
1180
|
}
|
|
1173
1181
|
]
|
|
@@ -42992,6 +43000,949 @@
|
|
|
42992
43000
|
}
|
|
42993
43001
|
]
|
|
42994
43002
|
},
|
|
43003
|
+
{
|
|
43004
|
+
"kind": "javascript-module",
|
|
43005
|
+
"path": "src/verification-code-input/index.ts",
|
|
43006
|
+
"declarations": [],
|
|
43007
|
+
"exports": [
|
|
43008
|
+
{
|
|
43009
|
+
"kind": "js",
|
|
43010
|
+
"name": "*",
|
|
43011
|
+
"declaration": {
|
|
43012
|
+
"name": "*",
|
|
43013
|
+
"package": "./verification-code-input"
|
|
43014
|
+
}
|
|
43015
|
+
},
|
|
43016
|
+
{
|
|
43017
|
+
"kind": "js",
|
|
43018
|
+
"name": "*",
|
|
43019
|
+
"declaration": {
|
|
43020
|
+
"name": "*",
|
|
43021
|
+
"package": "./verification-code-input.styles"
|
|
43022
|
+
}
|
|
43023
|
+
},
|
|
43024
|
+
{
|
|
43025
|
+
"kind": "js",
|
|
43026
|
+
"name": "*",
|
|
43027
|
+
"declaration": {
|
|
43028
|
+
"name": "*",
|
|
43029
|
+
"package": "./verification-code-input.template"
|
|
43030
|
+
}
|
|
43031
|
+
}
|
|
43032
|
+
]
|
|
43033
|
+
},
|
|
43034
|
+
{
|
|
43035
|
+
"kind": "javascript-module",
|
|
43036
|
+
"path": "src/verification-code-input/verification-code-input.styles.ts",
|
|
43037
|
+
"declarations": [
|
|
43038
|
+
{
|
|
43039
|
+
"kind": "variable",
|
|
43040
|
+
"name": "verificationCodeInputStyles",
|
|
43041
|
+
"type": {
|
|
43042
|
+
"text": "ElementStyles"
|
|
43043
|
+
},
|
|
43044
|
+
"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`"
|
|
43045
|
+
}
|
|
43046
|
+
],
|
|
43047
|
+
"exports": [
|
|
43048
|
+
{
|
|
43049
|
+
"kind": "js",
|
|
43050
|
+
"name": "verificationCodeInputStyles",
|
|
43051
|
+
"declaration": {
|
|
43052
|
+
"name": "verificationCodeInputStyles",
|
|
43053
|
+
"module": "src/verification-code-input/verification-code-input.styles.ts"
|
|
43054
|
+
}
|
|
43055
|
+
}
|
|
43056
|
+
]
|
|
43057
|
+
},
|
|
43058
|
+
{
|
|
43059
|
+
"kind": "javascript-module",
|
|
43060
|
+
"path": "src/verification-code-input/verification-code-input.template.ts",
|
|
43061
|
+
"declarations": [
|
|
43062
|
+
{
|
|
43063
|
+
"kind": "variable",
|
|
43064
|
+
"name": "verificationCodeInputTemplate",
|
|
43065
|
+
"default": "foundationVerificationCodeInputTemplate"
|
|
43066
|
+
}
|
|
43067
|
+
],
|
|
43068
|
+
"exports": [
|
|
43069
|
+
{
|
|
43070
|
+
"kind": "js",
|
|
43071
|
+
"name": "verificationCodeInputTemplate",
|
|
43072
|
+
"declaration": {
|
|
43073
|
+
"name": "verificationCodeInputTemplate",
|
|
43074
|
+
"module": "src/verification-code-input/verification-code-input.template.ts"
|
|
43075
|
+
}
|
|
43076
|
+
}
|
|
43077
|
+
]
|
|
43078
|
+
},
|
|
43079
|
+
{
|
|
43080
|
+
"kind": "javascript-module",
|
|
43081
|
+
"path": "src/verification-code-input/verification-code-input.ts",
|
|
43082
|
+
"declarations": [
|
|
43083
|
+
{
|
|
43084
|
+
"kind": "class",
|
|
43085
|
+
"description": "",
|
|
43086
|
+
"name": "VerificationCodeInput",
|
|
43087
|
+
"superclass": {
|
|
43088
|
+
"name": "FoundationVerificationCodeInput",
|
|
43089
|
+
"package": "@genesislcap/foundation-ui"
|
|
43090
|
+
},
|
|
43091
|
+
"tagName": "%%prefix%%-verification-code-input",
|
|
43092
|
+
"customElement": true,
|
|
43093
|
+
"attributes": [
|
|
43094
|
+
{
|
|
43095
|
+
"name": "id",
|
|
43096
|
+
"type": {
|
|
43097
|
+
"text": "string"
|
|
43098
|
+
},
|
|
43099
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
43100
|
+
"fieldName": "id",
|
|
43101
|
+
"inheritedFrom": {
|
|
43102
|
+
"name": "VerificationCodeInput",
|
|
43103
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43104
|
+
}
|
|
43105
|
+
},
|
|
43106
|
+
{
|
|
43107
|
+
"name": "appearance",
|
|
43108
|
+
"type": {
|
|
43109
|
+
"text": "string"
|
|
43110
|
+
},
|
|
43111
|
+
"default": "'outline'",
|
|
43112
|
+
"description": "Visual treatment applied to each digit field.",
|
|
43113
|
+
"fieldName": "appearance",
|
|
43114
|
+
"inheritedFrom": {
|
|
43115
|
+
"name": "VerificationCodeInput",
|
|
43116
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43117
|
+
}
|
|
43118
|
+
},
|
|
43119
|
+
{
|
|
43120
|
+
"name": "digits",
|
|
43121
|
+
"type": {
|
|
43122
|
+
"text": "number"
|
|
43123
|
+
},
|
|
43124
|
+
"default": "DEFAULT_DIGITS",
|
|
43125
|
+
"description": "Number of single-character digit fields to render.",
|
|
43126
|
+
"resolveInitializer": {
|
|
43127
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43128
|
+
},
|
|
43129
|
+
"fieldName": "digits",
|
|
43130
|
+
"inheritedFrom": {
|
|
43131
|
+
"name": "VerificationCodeInput",
|
|
43132
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43133
|
+
}
|
|
43134
|
+
},
|
|
43135
|
+
{
|
|
43136
|
+
"name": "readonly",
|
|
43137
|
+
"type": {
|
|
43138
|
+
"text": "boolean"
|
|
43139
|
+
},
|
|
43140
|
+
"default": "false",
|
|
43141
|
+
"description": "When true, digit fields are non-interactive.",
|
|
43142
|
+
"fieldName": "readOnly",
|
|
43143
|
+
"inheritedFrom": {
|
|
43144
|
+
"name": "VerificationCodeInput",
|
|
43145
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43146
|
+
}
|
|
43147
|
+
},
|
|
43148
|
+
{
|
|
43149
|
+
"type": {
|
|
43150
|
+
"text": "boolean"
|
|
43151
|
+
},
|
|
43152
|
+
"default": "false",
|
|
43153
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
43154
|
+
"fieldName": "autofocus",
|
|
43155
|
+
"inheritedFrom": {
|
|
43156
|
+
"name": "VerificationCodeInput",
|
|
43157
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43158
|
+
}
|
|
43159
|
+
}
|
|
43160
|
+
],
|
|
43161
|
+
"members": [
|
|
43162
|
+
{
|
|
43163
|
+
"kind": "field",
|
|
43164
|
+
"name": "values",
|
|
43165
|
+
"type": {
|
|
43166
|
+
"text": "string[]"
|
|
43167
|
+
},
|
|
43168
|
+
"default": "[]",
|
|
43169
|
+
"description": "Per-digit values indexed from `0` to `digits - 1`.",
|
|
43170
|
+
"inheritedFrom": {
|
|
43171
|
+
"name": "VerificationCodeInput",
|
|
43172
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43173
|
+
}
|
|
43174
|
+
},
|
|
43175
|
+
{
|
|
43176
|
+
"kind": "field",
|
|
43177
|
+
"name": "defaultSlottedNodes",
|
|
43178
|
+
"description": "Slotted label content; when empty the label is visually hidden.",
|
|
43179
|
+
"inheritedFrom": {
|
|
43180
|
+
"name": "VerificationCodeInput",
|
|
43181
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43182
|
+
}
|
|
43183
|
+
},
|
|
43184
|
+
{
|
|
43185
|
+
"kind": "field",
|
|
43186
|
+
"name": "controlListeners",
|
|
43187
|
+
"type": {
|
|
43188
|
+
"text": "Map<HTMLInputElement, ControlListeners>"
|
|
43189
|
+
},
|
|
43190
|
+
"privacy": "private",
|
|
43191
|
+
"readonly": true,
|
|
43192
|
+
"default": "new Map()",
|
|
43193
|
+
"inheritedFrom": {
|
|
43194
|
+
"name": "VerificationCodeInput",
|
|
43195
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43196
|
+
}
|
|
43197
|
+
},
|
|
43198
|
+
{
|
|
43199
|
+
"kind": "field",
|
|
43200
|
+
"name": "syncingFromDigits",
|
|
43201
|
+
"type": {
|
|
43202
|
+
"text": "boolean"
|
|
43203
|
+
},
|
|
43204
|
+
"privacy": "private",
|
|
43205
|
+
"default": "false",
|
|
43206
|
+
"description": "Skip digit re-sync when `value` is updated from digit entry (`commitValues`).",
|
|
43207
|
+
"inheritedFrom": {
|
|
43208
|
+
"name": "VerificationCodeInput",
|
|
43209
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43210
|
+
}
|
|
43211
|
+
},
|
|
43212
|
+
{
|
|
43213
|
+
"kind": "field",
|
|
43214
|
+
"name": "id",
|
|
43215
|
+
"type": {
|
|
43216
|
+
"text": "string"
|
|
43217
|
+
},
|
|
43218
|
+
"description": "Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)\nand the associated label element.",
|
|
43219
|
+
"inheritedFrom": {
|
|
43220
|
+
"name": "VerificationCodeInput",
|
|
43221
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43222
|
+
}
|
|
43223
|
+
},
|
|
43224
|
+
{
|
|
43225
|
+
"kind": "field",
|
|
43226
|
+
"name": "appearance",
|
|
43227
|
+
"type": {
|
|
43228
|
+
"text": "string"
|
|
43229
|
+
},
|
|
43230
|
+
"default": "'outline'",
|
|
43231
|
+
"description": "Visual treatment applied to each digit field.",
|
|
43232
|
+
"privacy": "public",
|
|
43233
|
+
"inheritedFrom": {
|
|
43234
|
+
"name": "VerificationCodeInput",
|
|
43235
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43236
|
+
}
|
|
43237
|
+
},
|
|
43238
|
+
{
|
|
43239
|
+
"kind": "field",
|
|
43240
|
+
"name": "digits",
|
|
43241
|
+
"type": {
|
|
43242
|
+
"text": "number"
|
|
43243
|
+
},
|
|
43244
|
+
"default": "6",
|
|
43245
|
+
"description": "Number of single-character digit fields to render.",
|
|
43246
|
+
"privacy": "public",
|
|
43247
|
+
"inheritedFrom": {
|
|
43248
|
+
"name": "VerificationCodeInput",
|
|
43249
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43250
|
+
}
|
|
43251
|
+
},
|
|
43252
|
+
{
|
|
43253
|
+
"kind": "field",
|
|
43254
|
+
"name": "readOnly",
|
|
43255
|
+
"type": {
|
|
43256
|
+
"text": "boolean"
|
|
43257
|
+
},
|
|
43258
|
+
"default": "false",
|
|
43259
|
+
"description": "When true, digit fields are non-interactive.",
|
|
43260
|
+
"privacy": "public",
|
|
43261
|
+
"inheritedFrom": {
|
|
43262
|
+
"name": "VerificationCodeInput",
|
|
43263
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43264
|
+
}
|
|
43265
|
+
},
|
|
43266
|
+
{
|
|
43267
|
+
"kind": "field",
|
|
43268
|
+
"name": "autofocus",
|
|
43269
|
+
"type": {
|
|
43270
|
+
"text": "boolean"
|
|
43271
|
+
},
|
|
43272
|
+
"default": "false",
|
|
43273
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
43274
|
+
"privacy": "public",
|
|
43275
|
+
"inheritedFrom": {
|
|
43276
|
+
"name": "VerificationCodeInput",
|
|
43277
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43278
|
+
}
|
|
43279
|
+
},
|
|
43280
|
+
{
|
|
43281
|
+
"kind": "field",
|
|
43282
|
+
"name": "error",
|
|
43283
|
+
"type": {
|
|
43284
|
+
"text": "boolean"
|
|
43285
|
+
},
|
|
43286
|
+
"default": "false",
|
|
43287
|
+
"description": "When true, applies the error visual state to each digit field.",
|
|
43288
|
+
"privacy": "public",
|
|
43289
|
+
"inheritedFrom": {
|
|
43290
|
+
"name": "VerificationCodeInput",
|
|
43291
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43292
|
+
}
|
|
43293
|
+
},
|
|
43294
|
+
{
|
|
43295
|
+
"kind": "field",
|
|
43296
|
+
"name": "digitsIndexes",
|
|
43297
|
+
"type": {
|
|
43298
|
+
"text": "number[]"
|
|
43299
|
+
},
|
|
43300
|
+
"privacy": "public",
|
|
43301
|
+
"readonly": true,
|
|
43302
|
+
"inheritedFrom": {
|
|
43303
|
+
"name": "VerificationCodeInput",
|
|
43304
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43305
|
+
}
|
|
43306
|
+
},
|
|
43307
|
+
{
|
|
43308
|
+
"kind": "field",
|
|
43309
|
+
"name": "controlIdPrefix",
|
|
43310
|
+
"type": {
|
|
43311
|
+
"text": "string"
|
|
43312
|
+
},
|
|
43313
|
+
"privacy": "public",
|
|
43314
|
+
"readonly": true,
|
|
43315
|
+
"inheritedFrom": {
|
|
43316
|
+
"name": "VerificationCodeInput",
|
|
43317
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43318
|
+
}
|
|
43319
|
+
},
|
|
43320
|
+
{
|
|
43321
|
+
"kind": "field",
|
|
43322
|
+
"name": "labelId",
|
|
43323
|
+
"type": {
|
|
43324
|
+
"text": "string"
|
|
43325
|
+
},
|
|
43326
|
+
"privacy": "public",
|
|
43327
|
+
"readonly": true,
|
|
43328
|
+
"inheritedFrom": {
|
|
43329
|
+
"name": "VerificationCodeInput",
|
|
43330
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43331
|
+
}
|
|
43332
|
+
},
|
|
43333
|
+
{
|
|
43334
|
+
"kind": "field",
|
|
43335
|
+
"name": "hasLabel",
|
|
43336
|
+
"type": {
|
|
43337
|
+
"text": "boolean"
|
|
43338
|
+
},
|
|
43339
|
+
"privacy": "public",
|
|
43340
|
+
"readonly": true,
|
|
43341
|
+
"inheritedFrom": {
|
|
43342
|
+
"name": "VerificationCodeInput",
|
|
43343
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43344
|
+
}
|
|
43345
|
+
},
|
|
43346
|
+
{
|
|
43347
|
+
"kind": "method",
|
|
43348
|
+
"name": "getControlId",
|
|
43349
|
+
"privacy": "public",
|
|
43350
|
+
"return": {
|
|
43351
|
+
"type": {
|
|
43352
|
+
"text": "string"
|
|
43353
|
+
}
|
|
43354
|
+
},
|
|
43355
|
+
"parameters": [
|
|
43356
|
+
{
|
|
43357
|
+
"name": "index",
|
|
43358
|
+
"type": {
|
|
43359
|
+
"text": "number"
|
|
43360
|
+
}
|
|
43361
|
+
}
|
|
43362
|
+
],
|
|
43363
|
+
"inheritedFrom": {
|
|
43364
|
+
"name": "VerificationCodeInput",
|
|
43365
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43366
|
+
}
|
|
43367
|
+
},
|
|
43368
|
+
{
|
|
43369
|
+
"kind": "method",
|
|
43370
|
+
"name": "clear",
|
|
43371
|
+
"privacy": "public",
|
|
43372
|
+
"return": {
|
|
43373
|
+
"type": {
|
|
43374
|
+
"text": "void"
|
|
43375
|
+
}
|
|
43376
|
+
},
|
|
43377
|
+
"description": "Clears digits, emits `change`, and focuses the first field when connected.",
|
|
43378
|
+
"inheritedFrom": {
|
|
43379
|
+
"name": "VerificationCodeInput",
|
|
43380
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43381
|
+
}
|
|
43382
|
+
},
|
|
43383
|
+
{
|
|
43384
|
+
"kind": "method",
|
|
43385
|
+
"name": "focus",
|
|
43386
|
+
"privacy": "public",
|
|
43387
|
+
"return": {
|
|
43388
|
+
"type": {
|
|
43389
|
+
"text": "void"
|
|
43390
|
+
}
|
|
43391
|
+
},
|
|
43392
|
+
"inheritedFrom": {
|
|
43393
|
+
"name": "VerificationCodeInput",
|
|
43394
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43395
|
+
}
|
|
43396
|
+
},
|
|
43397
|
+
{
|
|
43398
|
+
"kind": "method",
|
|
43399
|
+
"name": "digitsChanged",
|
|
43400
|
+
"return": {
|
|
43401
|
+
"type": {
|
|
43402
|
+
"text": "void"
|
|
43403
|
+
}
|
|
43404
|
+
},
|
|
43405
|
+
"inheritedFrom": {
|
|
43406
|
+
"name": "VerificationCodeInput",
|
|
43407
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43408
|
+
}
|
|
43409
|
+
},
|
|
43410
|
+
{
|
|
43411
|
+
"kind": "field",
|
|
43412
|
+
"name": "digitClassnames",
|
|
43413
|
+
"type": {
|
|
43414
|
+
"text": "string"
|
|
43415
|
+
},
|
|
43416
|
+
"privacy": "public",
|
|
43417
|
+
"readonly": true,
|
|
43418
|
+
"inheritedFrom": {
|
|
43419
|
+
"name": "VerificationCodeInput",
|
|
43420
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43421
|
+
}
|
|
43422
|
+
},
|
|
43423
|
+
{
|
|
43424
|
+
"kind": "method",
|
|
43425
|
+
"name": "sanitizeCode",
|
|
43426
|
+
"privacy": "private",
|
|
43427
|
+
"return": {
|
|
43428
|
+
"type": {
|
|
43429
|
+
"text": "string"
|
|
43430
|
+
}
|
|
43431
|
+
},
|
|
43432
|
+
"parameters": [
|
|
43433
|
+
{
|
|
43434
|
+
"name": "raw",
|
|
43435
|
+
"type": {
|
|
43436
|
+
"text": "unknown"
|
|
43437
|
+
}
|
|
43438
|
+
}
|
|
43439
|
+
],
|
|
43440
|
+
"inheritedFrom": {
|
|
43441
|
+
"name": "VerificationCodeInput",
|
|
43442
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43443
|
+
}
|
|
43444
|
+
},
|
|
43445
|
+
{
|
|
43446
|
+
"kind": "method",
|
|
43447
|
+
"name": "bindControlListeners",
|
|
43448
|
+
"privacy": "private",
|
|
43449
|
+
"return": {
|
|
43450
|
+
"type": {
|
|
43451
|
+
"text": "void"
|
|
43452
|
+
}
|
|
43453
|
+
},
|
|
43454
|
+
"inheritedFrom": {
|
|
43455
|
+
"name": "VerificationCodeInput",
|
|
43456
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43457
|
+
}
|
|
43458
|
+
},
|
|
43459
|
+
{
|
|
43460
|
+
"kind": "method",
|
|
43461
|
+
"name": "unbindControlListeners",
|
|
43462
|
+
"privacy": "private",
|
|
43463
|
+
"return": {
|
|
43464
|
+
"type": {
|
|
43465
|
+
"text": "void"
|
|
43466
|
+
}
|
|
43467
|
+
},
|
|
43468
|
+
"inheritedFrom": {
|
|
43469
|
+
"name": "VerificationCodeInput",
|
|
43470
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43471
|
+
}
|
|
43472
|
+
},
|
|
43473
|
+
{
|
|
43474
|
+
"kind": "method",
|
|
43475
|
+
"name": "onKeyDown",
|
|
43476
|
+
"privacy": "private",
|
|
43477
|
+
"return": {
|
|
43478
|
+
"type": {
|
|
43479
|
+
"text": "void"
|
|
43480
|
+
}
|
|
43481
|
+
},
|
|
43482
|
+
"parameters": [
|
|
43483
|
+
{
|
|
43484
|
+
"name": "event",
|
|
43485
|
+
"type": {
|
|
43486
|
+
"text": "KeyboardEvent"
|
|
43487
|
+
}
|
|
43488
|
+
},
|
|
43489
|
+
{
|
|
43490
|
+
"name": "index",
|
|
43491
|
+
"type": {
|
|
43492
|
+
"text": "number"
|
|
43493
|
+
}
|
|
43494
|
+
}
|
|
43495
|
+
],
|
|
43496
|
+
"inheritedFrom": {
|
|
43497
|
+
"name": "VerificationCodeInput",
|
|
43498
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43499
|
+
}
|
|
43500
|
+
},
|
|
43501
|
+
{
|
|
43502
|
+
"kind": "method",
|
|
43503
|
+
"name": "isBlockedCharacter",
|
|
43504
|
+
"privacy": "private",
|
|
43505
|
+
"return": {
|
|
43506
|
+
"type": {
|
|
43507
|
+
"text": "boolean"
|
|
43508
|
+
}
|
|
43509
|
+
},
|
|
43510
|
+
"parameters": [
|
|
43511
|
+
{
|
|
43512
|
+
"name": "event",
|
|
43513
|
+
"type": {
|
|
43514
|
+
"text": "KeyboardEvent"
|
|
43515
|
+
}
|
|
43516
|
+
}
|
|
43517
|
+
],
|
|
43518
|
+
"inheritedFrom": {
|
|
43519
|
+
"name": "VerificationCodeInput",
|
|
43520
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43521
|
+
}
|
|
43522
|
+
},
|
|
43523
|
+
{
|
|
43524
|
+
"kind": "method",
|
|
43525
|
+
"name": "onInput",
|
|
43526
|
+
"privacy": "private",
|
|
43527
|
+
"return": {
|
|
43528
|
+
"type": {
|
|
43529
|
+
"text": "void"
|
|
43530
|
+
}
|
|
43531
|
+
},
|
|
43532
|
+
"parameters": [
|
|
43533
|
+
{
|
|
43534
|
+
"name": "event",
|
|
43535
|
+
"type": {
|
|
43536
|
+
"text": "InputEvent"
|
|
43537
|
+
}
|
|
43538
|
+
},
|
|
43539
|
+
{
|
|
43540
|
+
"name": "index",
|
|
43541
|
+
"type": {
|
|
43542
|
+
"text": "number"
|
|
43543
|
+
}
|
|
43544
|
+
}
|
|
43545
|
+
],
|
|
43546
|
+
"inheritedFrom": {
|
|
43547
|
+
"name": "VerificationCodeInput",
|
|
43548
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43549
|
+
}
|
|
43550
|
+
},
|
|
43551
|
+
{
|
|
43552
|
+
"kind": "method",
|
|
43553
|
+
"name": "onPaste",
|
|
43554
|
+
"privacy": "private",
|
|
43555
|
+
"return": {
|
|
43556
|
+
"type": {
|
|
43557
|
+
"text": "void"
|
|
43558
|
+
}
|
|
43559
|
+
},
|
|
43560
|
+
"parameters": [
|
|
43561
|
+
{
|
|
43562
|
+
"name": "event",
|
|
43563
|
+
"type": {
|
|
43564
|
+
"text": "ClipboardEvent"
|
|
43565
|
+
}
|
|
43566
|
+
},
|
|
43567
|
+
{
|
|
43568
|
+
"name": "index",
|
|
43569
|
+
"type": {
|
|
43570
|
+
"text": "number"
|
|
43571
|
+
}
|
|
43572
|
+
}
|
|
43573
|
+
],
|
|
43574
|
+
"inheritedFrom": {
|
|
43575
|
+
"name": "VerificationCodeInput",
|
|
43576
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43577
|
+
}
|
|
43578
|
+
},
|
|
43579
|
+
{
|
|
43580
|
+
"kind": "method",
|
|
43581
|
+
"name": "handleBackspace",
|
|
43582
|
+
"privacy": "private",
|
|
43583
|
+
"return": {
|
|
43584
|
+
"type": {
|
|
43585
|
+
"text": "void"
|
|
43586
|
+
}
|
|
43587
|
+
},
|
|
43588
|
+
"parameters": [
|
|
43589
|
+
{
|
|
43590
|
+
"name": "index",
|
|
43591
|
+
"type": {
|
|
43592
|
+
"text": "number"
|
|
43593
|
+
}
|
|
43594
|
+
}
|
|
43595
|
+
],
|
|
43596
|
+
"inheritedFrom": {
|
|
43597
|
+
"name": "VerificationCodeInput",
|
|
43598
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43599
|
+
}
|
|
43600
|
+
},
|
|
43601
|
+
{
|
|
43602
|
+
"kind": "method",
|
|
43603
|
+
"name": "handleDelete",
|
|
43604
|
+
"privacy": "private",
|
|
43605
|
+
"return": {
|
|
43606
|
+
"type": {
|
|
43607
|
+
"text": "void"
|
|
43608
|
+
}
|
|
43609
|
+
},
|
|
43610
|
+
"parameters": [
|
|
43611
|
+
{
|
|
43612
|
+
"name": "index",
|
|
43613
|
+
"type": {
|
|
43614
|
+
"text": "number"
|
|
43615
|
+
}
|
|
43616
|
+
}
|
|
43617
|
+
],
|
|
43618
|
+
"inheritedFrom": {
|
|
43619
|
+
"name": "VerificationCodeInput",
|
|
43620
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43621
|
+
}
|
|
43622
|
+
},
|
|
43623
|
+
{
|
|
43624
|
+
"kind": "method",
|
|
43625
|
+
"name": "getIndexFromInput",
|
|
43626
|
+
"privacy": "private",
|
|
43627
|
+
"return": {
|
|
43628
|
+
"type": {
|
|
43629
|
+
"text": "number | null"
|
|
43630
|
+
}
|
|
43631
|
+
},
|
|
43632
|
+
"parameters": [
|
|
43633
|
+
{
|
|
43634
|
+
"name": "input",
|
|
43635
|
+
"type": {
|
|
43636
|
+
"text": "HTMLInputElement"
|
|
43637
|
+
}
|
|
43638
|
+
}
|
|
43639
|
+
],
|
|
43640
|
+
"inheritedFrom": {
|
|
43641
|
+
"name": "VerificationCodeInput",
|
|
43642
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43643
|
+
}
|
|
43644
|
+
},
|
|
43645
|
+
{
|
|
43646
|
+
"kind": "method",
|
|
43647
|
+
"name": "syncDigitsFromValue",
|
|
43648
|
+
"privacy": "private",
|
|
43649
|
+
"return": {
|
|
43650
|
+
"type": {
|
|
43651
|
+
"text": "void"
|
|
43652
|
+
}
|
|
43653
|
+
},
|
|
43654
|
+
"parameters": [
|
|
43655
|
+
{
|
|
43656
|
+
"name": "cleaned",
|
|
43657
|
+
"type": {
|
|
43658
|
+
"text": "string"
|
|
43659
|
+
}
|
|
43660
|
+
}
|
|
43661
|
+
],
|
|
43662
|
+
"description": "Maps a sanitized code string into per-digit `values` and syncs the DOM when connected.",
|
|
43663
|
+
"inheritedFrom": {
|
|
43664
|
+
"name": "VerificationCodeInput",
|
|
43665
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43666
|
+
}
|
|
43667
|
+
},
|
|
43668
|
+
{
|
|
43669
|
+
"kind": "method",
|
|
43670
|
+
"name": "updateDigit",
|
|
43671
|
+
"privacy": "private",
|
|
43672
|
+
"return": {
|
|
43673
|
+
"type": {
|
|
43674
|
+
"text": "void"
|
|
43675
|
+
}
|
|
43676
|
+
},
|
|
43677
|
+
"parameters": [
|
|
43678
|
+
{
|
|
43679
|
+
"name": "index",
|
|
43680
|
+
"type": {
|
|
43681
|
+
"text": "number"
|
|
43682
|
+
}
|
|
43683
|
+
},
|
|
43684
|
+
{
|
|
43685
|
+
"name": "digit",
|
|
43686
|
+
"type": {
|
|
43687
|
+
"text": "string"
|
|
43688
|
+
}
|
|
43689
|
+
}
|
|
43690
|
+
],
|
|
43691
|
+
"inheritedFrom": {
|
|
43692
|
+
"name": "VerificationCodeInput",
|
|
43693
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43694
|
+
}
|
|
43695
|
+
},
|
|
43696
|
+
{
|
|
43697
|
+
"kind": "method",
|
|
43698
|
+
"name": "applyDigits",
|
|
43699
|
+
"privacy": "private",
|
|
43700
|
+
"return": {
|
|
43701
|
+
"type": {
|
|
43702
|
+
"text": "void"
|
|
43703
|
+
}
|
|
43704
|
+
},
|
|
43705
|
+
"parameters": [
|
|
43706
|
+
{
|
|
43707
|
+
"name": "raw",
|
|
43708
|
+
"type": {
|
|
43709
|
+
"text": "string"
|
|
43710
|
+
}
|
|
43711
|
+
},
|
|
43712
|
+
{
|
|
43713
|
+
"name": "startIndex",
|
|
43714
|
+
"type": {
|
|
43715
|
+
"text": "number"
|
|
43716
|
+
}
|
|
43717
|
+
}
|
|
43718
|
+
],
|
|
43719
|
+
"inheritedFrom": {
|
|
43720
|
+
"name": "VerificationCodeInput",
|
|
43721
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43722
|
+
}
|
|
43723
|
+
},
|
|
43724
|
+
{
|
|
43725
|
+
"kind": "method",
|
|
43726
|
+
"name": "commitValues",
|
|
43727
|
+
"privacy": "private",
|
|
43728
|
+
"return": {
|
|
43729
|
+
"type": {
|
|
43730
|
+
"text": "void"
|
|
43731
|
+
}
|
|
43732
|
+
},
|
|
43733
|
+
"parameters": [
|
|
43734
|
+
{
|
|
43735
|
+
"name": "nextValues",
|
|
43736
|
+
"type": {
|
|
43737
|
+
"text": "string[]"
|
|
43738
|
+
}
|
|
43739
|
+
}
|
|
43740
|
+
],
|
|
43741
|
+
"description": "Pushes digit state into the form-associated `value` and emits change / complete.",
|
|
43742
|
+
"inheritedFrom": {
|
|
43743
|
+
"name": "VerificationCodeInput",
|
|
43744
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43745
|
+
}
|
|
43746
|
+
},
|
|
43747
|
+
{
|
|
43748
|
+
"kind": "method",
|
|
43749
|
+
"name": "syncFieldValues",
|
|
43750
|
+
"privacy": "private",
|
|
43751
|
+
"return": {
|
|
43752
|
+
"type": {
|
|
43753
|
+
"text": "void"
|
|
43754
|
+
}
|
|
43755
|
+
},
|
|
43756
|
+
"inheritedFrom": {
|
|
43757
|
+
"name": "VerificationCodeInput",
|
|
43758
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43759
|
+
}
|
|
43760
|
+
},
|
|
43761
|
+
{
|
|
43762
|
+
"kind": "method",
|
|
43763
|
+
"name": "syncFieldValue",
|
|
43764
|
+
"privacy": "private",
|
|
43765
|
+
"return": {
|
|
43766
|
+
"type": {
|
|
43767
|
+
"text": "void"
|
|
43768
|
+
}
|
|
43769
|
+
},
|
|
43770
|
+
"parameters": [
|
|
43771
|
+
{
|
|
43772
|
+
"name": "index",
|
|
43773
|
+
"type": {
|
|
43774
|
+
"text": "number"
|
|
43775
|
+
}
|
|
43776
|
+
}
|
|
43777
|
+
],
|
|
43778
|
+
"inheritedFrom": {
|
|
43779
|
+
"name": "VerificationCodeInput",
|
|
43780
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43781
|
+
}
|
|
43782
|
+
},
|
|
43783
|
+
{
|
|
43784
|
+
"kind": "method",
|
|
43785
|
+
"name": "focusDigit",
|
|
43786
|
+
"privacy": "private",
|
|
43787
|
+
"return": {
|
|
43788
|
+
"type": {
|
|
43789
|
+
"text": "void"
|
|
43790
|
+
}
|
|
43791
|
+
},
|
|
43792
|
+
"parameters": [
|
|
43793
|
+
{
|
|
43794
|
+
"name": "index",
|
|
43795
|
+
"type": {
|
|
43796
|
+
"text": "number"
|
|
43797
|
+
}
|
|
43798
|
+
}
|
|
43799
|
+
],
|
|
43800
|
+
"inheritedFrom": {
|
|
43801
|
+
"name": "VerificationCodeInput",
|
|
43802
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43803
|
+
}
|
|
43804
|
+
},
|
|
43805
|
+
{
|
|
43806
|
+
"kind": "field",
|
|
43807
|
+
"name": "rootNode",
|
|
43808
|
+
"type": {
|
|
43809
|
+
"text": "ParentNode"
|
|
43810
|
+
},
|
|
43811
|
+
"privacy": "private",
|
|
43812
|
+
"readonly": true,
|
|
43813
|
+
"inheritedFrom": {
|
|
43814
|
+
"name": "VerificationCodeInput",
|
|
43815
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43816
|
+
}
|
|
43817
|
+
},
|
|
43818
|
+
{
|
|
43819
|
+
"kind": "method",
|
|
43820
|
+
"name": "getControlElement",
|
|
43821
|
+
"privacy": "private",
|
|
43822
|
+
"return": {
|
|
43823
|
+
"type": {
|
|
43824
|
+
"text": "HTMLInputElement | null"
|
|
43825
|
+
}
|
|
43826
|
+
},
|
|
43827
|
+
"parameters": [
|
|
43828
|
+
{
|
|
43829
|
+
"name": "index",
|
|
43830
|
+
"type": {
|
|
43831
|
+
"text": "number"
|
|
43832
|
+
}
|
|
43833
|
+
}
|
|
43834
|
+
],
|
|
43835
|
+
"inheritedFrom": {
|
|
43836
|
+
"name": "VerificationCodeInput",
|
|
43837
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43838
|
+
}
|
|
43839
|
+
},
|
|
43840
|
+
{
|
|
43841
|
+
"kind": "method",
|
|
43842
|
+
"name": "isComplete",
|
|
43843
|
+
"privacy": "private",
|
|
43844
|
+
"return": {
|
|
43845
|
+
"type": {
|
|
43846
|
+
"text": "boolean"
|
|
43847
|
+
}
|
|
43848
|
+
},
|
|
43849
|
+
"inheritedFrom": {
|
|
43850
|
+
"name": "VerificationCodeInput",
|
|
43851
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43852
|
+
}
|
|
43853
|
+
},
|
|
43854
|
+
{
|
|
43855
|
+
"kind": "method",
|
|
43856
|
+
"name": "emitChange",
|
|
43857
|
+
"privacy": "private",
|
|
43858
|
+
"return": {
|
|
43859
|
+
"type": {
|
|
43860
|
+
"text": "void"
|
|
43861
|
+
}
|
|
43862
|
+
},
|
|
43863
|
+
"inheritedFrom": {
|
|
43864
|
+
"name": "VerificationCodeInput",
|
|
43865
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43866
|
+
}
|
|
43867
|
+
},
|
|
43868
|
+
{
|
|
43869
|
+
"kind": "field",
|
|
43870
|
+
"name": "proxy",
|
|
43871
|
+
"inheritedFrom": {
|
|
43872
|
+
"name": "VerificationCodeInput",
|
|
43873
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43874
|
+
}
|
|
43875
|
+
}
|
|
43876
|
+
],
|
|
43877
|
+
"events": [
|
|
43878
|
+
{
|
|
43879
|
+
"description": "Fired when any digit changes. detail: `VerificationCodeInputEventDetail`",
|
|
43880
|
+
"name": "change",
|
|
43881
|
+
"inheritedFrom": {
|
|
43882
|
+
"name": "VerificationCodeInput",
|
|
43883
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43884
|
+
}
|
|
43885
|
+
},
|
|
43886
|
+
{
|
|
43887
|
+
"description": "Fired when all digits are filled. detail: `VerificationCodeInputEventDetail`",
|
|
43888
|
+
"name": "complete",
|
|
43889
|
+
"inheritedFrom": {
|
|
43890
|
+
"name": "VerificationCodeInput",
|
|
43891
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43892
|
+
}
|
|
43893
|
+
}
|
|
43894
|
+
]
|
|
43895
|
+
},
|
|
43896
|
+
{
|
|
43897
|
+
"kind": "variable",
|
|
43898
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43899
|
+
"default": "foundationVerificationCodeInputConfig"
|
|
43900
|
+
},
|
|
43901
|
+
{
|
|
43902
|
+
"kind": "variable",
|
|
43903
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43904
|
+
"default": "foundationVerificationCodeInputShadowOptions"
|
|
43905
|
+
},
|
|
43906
|
+
{
|
|
43907
|
+
"kind": "variable",
|
|
43908
|
+
"name": "rapidVerificationCodeInput"
|
|
43909
|
+
}
|
|
43910
|
+
],
|
|
43911
|
+
"exports": [
|
|
43912
|
+
{
|
|
43913
|
+
"kind": "js",
|
|
43914
|
+
"name": "VerificationCodeInput",
|
|
43915
|
+
"declaration": {
|
|
43916
|
+
"name": "VerificationCodeInput",
|
|
43917
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43918
|
+
}
|
|
43919
|
+
},
|
|
43920
|
+
{
|
|
43921
|
+
"kind": "js",
|
|
43922
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43923
|
+
"declaration": {
|
|
43924
|
+
"name": "defaultVerificationCodeInputConfig",
|
|
43925
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43926
|
+
}
|
|
43927
|
+
},
|
|
43928
|
+
{
|
|
43929
|
+
"kind": "js",
|
|
43930
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43931
|
+
"declaration": {
|
|
43932
|
+
"name": "rapidVerificationCodeInputShadowOptions",
|
|
43933
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43934
|
+
}
|
|
43935
|
+
},
|
|
43936
|
+
{
|
|
43937
|
+
"kind": "js",
|
|
43938
|
+
"name": "rapidVerificationCodeInput",
|
|
43939
|
+
"declaration": {
|
|
43940
|
+
"name": "rapidVerificationCodeInput",
|
|
43941
|
+
"module": "src/verification-code-input/verification-code-input.ts"
|
|
43942
|
+
}
|
|
43943
|
+
}
|
|
43944
|
+
]
|
|
43945
|
+
},
|
|
42995
43946
|
{
|
|
42996
43947
|
"kind": "javascript-module",
|
|
42997
43948
|
"path": "src/_config/styles/colors.ts",
|