@circle-vibe/shared 1.1.3 → 1.1.5
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/build/index.js +1 -1
- package/build/index.js.LICENSE.txt +11 -0
- package/build/src/components/form/form-control-select/form-control-select.d.ts +4 -0
- package/build/src/components/form/form-control-select/form-control-select.js +52 -0
- package/build/src/components/form/form-control-select/form-control-select.js.map +1 -0
- package/build/src/components/form/form-control-select/index.d.ts +1 -0
- package/build/src/components/form/form-control-select/index.js +18 -0
- package/build/src/components/form/form-control-select/index.js.map +1 -0
- package/build/src/components/form/index.d.ts +2 -0
- package/build/src/components/form/index.js +2 -0
- package/build/src/components/form/index.js.map +1 -1
- package/build/src/components/form/select/index.d.ts +1 -0
- package/build/src/components/form/select/index.js +18 -0
- package/build/src/components/form/select/index.js.map +1 -0
- package/build/src/components/form/select/select.d.ts +4 -0
- package/build/src/components/form/select/select.js +11 -0
- package/build/src/components/form/select/select.js.map +1 -0
- package/build/src/components/icon/icon.d.ts +8 -0
- package/build/src/components/icon/icon.js +14 -0
- package/build/src/components/icon/icon.js.map +1 -0
- package/build/src/components/icon/index.d.ts +1 -0
- package/build/src/components/icon/index.js +18 -0
- package/build/src/components/icon/index.js.map +1 -0
- package/build/src/components/index.d.ts +1 -0
- package/build/src/components/index.js +1 -0
- package/build/src/components/index.js.map +1 -1
- package/build/src/components/menu/menu.d.ts +2 -1
- package/build/src/components/menu/menu.js.map +1 -1
- package/build/src/constants/country-code.d.ts +252 -0
- package/build/src/constants/country-code.js +257 -0
- package/build/src/constants/country-code.js.map +1 -0
- package/build/src/constants/country-codes.d.ts +2 -0
- package/build/src/constants/country-codes.js +6 -0
- package/build/src/constants/country-codes.js.map +1 -0
- package/build/src/constants/index.d.ts +4 -0
- package/build/src/constants/index.js +4 -0
- package/build/src/constants/index.js.map +1 -1
- package/build/src/constants/nationality-code.d.ts +221 -0
- package/build/src/constants/nationality-code.js +226 -0
- package/build/src/constants/nationality-code.js.map +1 -0
- package/build/src/constants/nationality-codes.d.ts +2 -0
- package/build/src/constants/nationality-codes.js +6 -0
- package/build/src/constants/nationality-codes.js.map +1 -0
- package/build/src/hooks/index.d.ts +5 -0
- package/build/src/hooks/index.js +5 -0
- package/build/src/hooks/index.js.map +1 -1
- package/build/src/hooks/use-cookies/index.d.ts +1 -0
- package/build/src/hooks/use-cookies/index.js +18 -0
- package/build/src/hooks/use-cookies/index.js.map +1 -0
- package/build/src/hooks/use-cookies/use-cookies.d.ts +5 -0
- package/build/src/hooks/use-cookies/use-cookies.js +25 -0
- package/build/src/hooks/use-cookies/use-cookies.js.map +1 -0
- package/build/src/hooks/use-countries/index.d.ts +1 -0
- package/build/src/hooks/use-countries/index.js +18 -0
- package/build/src/hooks/use-countries/index.js.map +1 -0
- package/build/src/hooks/use-countries/use-countries.d.ts +4 -0
- package/build/src/hooks/use-countries/use-countries.js +14 -0
- package/build/src/hooks/use-countries/use-countries.js.map +1 -0
- package/build/src/hooks/use-format-datetime/index.d.ts +1 -0
- package/build/src/hooks/use-format-datetime/index.js +18 -0
- package/build/src/hooks/use-format-datetime/index.js.map +1 -0
- package/build/src/hooks/use-format-datetime/use-format-datetime.d.ts +6 -0
- package/build/src/hooks/use-format-datetime/use-format-datetime.js +17 -0
- package/build/src/hooks/use-format-datetime/use-format-datetime.js.map +1 -0
- package/build/src/hooks/use-icons/index.d.ts +1 -0
- package/build/src/hooks/use-icons/index.js +18 -0
- package/build/src/hooks/use-icons/index.js.map +1 -0
- package/build/src/hooks/use-icons/use-icons.d.ts +2 -0
- package/build/src/hooks/use-icons/use-icons.js +32 -0
- package/build/src/hooks/use-icons/use-icons.js.map +1 -0
- package/build/src/hooks/use-local-storage/index.d.ts +1 -0
- package/build/src/hooks/use-local-storage/index.js +18 -0
- package/build/src/hooks/use-local-storage/index.js.map +1 -0
- package/build/src/hooks/use-local-storage/use-local-storage.d.ts +6 -0
- package/build/src/hooks/use-local-storage/use-local-storage.js +47 -0
- package/build/src/hooks/use-local-storage/use-local-storage.js.map +1 -0
- package/build/src/utils/get-formik-form-control-value/get-formik-form-control-value.d.ts +1 -1
- package/build/src/utils/get-formik-form-control-value/get-formik-form-control-value.js.map +1 -1
- package/package.json +6 -3
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CountryCode = void 0;
|
|
4
|
+
var CountryCode;
|
|
5
|
+
(function (CountryCode) {
|
|
6
|
+
CountryCode["AD"] = "AD";
|
|
7
|
+
CountryCode["AL"] = "AL";
|
|
8
|
+
CountryCode["AM"] = "AM";
|
|
9
|
+
CountryCode["AT"] = "AT";
|
|
10
|
+
CountryCode["BA"] = "BA";
|
|
11
|
+
CountryCode["BE"] = "BE";
|
|
12
|
+
CountryCode["BG"] = "BG";
|
|
13
|
+
CountryCode["BL"] = "BL";
|
|
14
|
+
CountryCode["BY"] = "BY";
|
|
15
|
+
CountryCode["CH"] = "CH";
|
|
16
|
+
CountryCode["CY"] = "CY";
|
|
17
|
+
CountryCode["CZ"] = "CZ";
|
|
18
|
+
CountryCode["DE"] = "DE";
|
|
19
|
+
CountryCode["DK"] = "DK";
|
|
20
|
+
CountryCode["EE"] = "EE";
|
|
21
|
+
CountryCode["ES"] = "ES";
|
|
22
|
+
CountryCode["FI"] = "FI";
|
|
23
|
+
CountryCode["FO"] = "FO";
|
|
24
|
+
CountryCode["FR"] = "FR";
|
|
25
|
+
CountryCode["GB"] = "GB";
|
|
26
|
+
CountryCode["GE"] = "GE";
|
|
27
|
+
CountryCode["GF"] = "GF";
|
|
28
|
+
CountryCode["GG"] = "GG";
|
|
29
|
+
CountryCode["GI"] = "GI";
|
|
30
|
+
CountryCode["GP"] = "GP";
|
|
31
|
+
CountryCode["GR"] = "GR";
|
|
32
|
+
CountryCode["HR"] = "HR";
|
|
33
|
+
CountryCode["HU"] = "HU";
|
|
34
|
+
CountryCode["IE"] = "IE";
|
|
35
|
+
CountryCode["IM"] = "IM";
|
|
36
|
+
CountryCode["IS"] = "IS";
|
|
37
|
+
CountryCode["IT"] = "IT";
|
|
38
|
+
CountryCode["JE"] = "JE";
|
|
39
|
+
CountryCode["LI"] = "LI";
|
|
40
|
+
CountryCode["LT"] = "LT";
|
|
41
|
+
CountryCode["LU"] = "LU";
|
|
42
|
+
CountryCode["LV"] = "LV";
|
|
43
|
+
CountryCode["MC"] = "MC";
|
|
44
|
+
CountryCode["ME"] = "ME";
|
|
45
|
+
CountryCode["MF"] = "MF";
|
|
46
|
+
CountryCode["MK"] = "MK";
|
|
47
|
+
CountryCode["MQ"] = "MQ";
|
|
48
|
+
CountryCode["MT"] = "MT";
|
|
49
|
+
CountryCode["NL"] = "NL";
|
|
50
|
+
CountryCode["NO"] = "NO";
|
|
51
|
+
CountryCode["PL"] = "PL";
|
|
52
|
+
CountryCode["PM"] = "PM";
|
|
53
|
+
CountryCode["PT"] = "PT";
|
|
54
|
+
CountryCode["RE"] = "RE";
|
|
55
|
+
CountryCode["RO"] = "RO";
|
|
56
|
+
CountryCode["RS"] = "RS";
|
|
57
|
+
CountryCode["RU"] = "RU";
|
|
58
|
+
CountryCode["SE"] = "SE";
|
|
59
|
+
CountryCode["SI"] = "SI";
|
|
60
|
+
CountryCode["SK"] = "SK";
|
|
61
|
+
CountryCode["SM"] = "SM";
|
|
62
|
+
CountryCode["TR"] = "TR";
|
|
63
|
+
CountryCode["UA"] = "UA";
|
|
64
|
+
CountryCode["VA"] = "VA";
|
|
65
|
+
CountryCode["XK"] = "XK";
|
|
66
|
+
CountryCode["YT"] = "YT";
|
|
67
|
+
CountryCode["AR"] = "AR";
|
|
68
|
+
CountryCode["AU"] = "AU";
|
|
69
|
+
CountryCode["CA"] = "CA";
|
|
70
|
+
CountryCode["CO"] = "CO";
|
|
71
|
+
CountryCode["DZ"] = "DZ";
|
|
72
|
+
CountryCode["EG"] = "EG";
|
|
73
|
+
CountryCode["IN"] = "IN";
|
|
74
|
+
CountryCode["JP"] = "JP";
|
|
75
|
+
CountryCode["MA"] = "MA";
|
|
76
|
+
CountryCode["SG"] = "SG";
|
|
77
|
+
CountryCode["TH"] = "TH";
|
|
78
|
+
CountryCode["US"] = "US";
|
|
79
|
+
CountryCode["VN"] = "VN";
|
|
80
|
+
CountryCode["AF"] = "AF";
|
|
81
|
+
CountryCode["AS"] = "AS";
|
|
82
|
+
CountryCode["AO"] = "AO";
|
|
83
|
+
CountryCode["AI"] = "AI";
|
|
84
|
+
CountryCode["AQ"] = "AQ";
|
|
85
|
+
CountryCode["AG"] = "AG";
|
|
86
|
+
CountryCode["AW"] = "AW";
|
|
87
|
+
CountryCode["AZ"] = "AZ";
|
|
88
|
+
CountryCode["BS"] = "BS";
|
|
89
|
+
CountryCode["BH"] = "BH";
|
|
90
|
+
CountryCode["BD"] = "BD";
|
|
91
|
+
CountryCode["BB"] = "BB";
|
|
92
|
+
CountryCode["BZ"] = "BZ";
|
|
93
|
+
CountryCode["BJ"] = "BJ";
|
|
94
|
+
CountryCode["BM"] = "BM";
|
|
95
|
+
CountryCode["BT"] = "BT";
|
|
96
|
+
CountryCode["BO"] = "BO";
|
|
97
|
+
CountryCode["BW"] = "BW";
|
|
98
|
+
CountryCode["BV"] = "BV";
|
|
99
|
+
CountryCode["BR"] = "BR";
|
|
100
|
+
CountryCode["IO"] = "IO";
|
|
101
|
+
CountryCode["BN"] = "BN";
|
|
102
|
+
CountryCode["BF"] = "BF";
|
|
103
|
+
CountryCode["BI"] = "BI";
|
|
104
|
+
CountryCode["KH"] = "KH";
|
|
105
|
+
CountryCode["CM"] = "CM";
|
|
106
|
+
CountryCode["CV"] = "CV";
|
|
107
|
+
CountryCode["KY"] = "KY";
|
|
108
|
+
CountryCode["CF"] = "CF";
|
|
109
|
+
CountryCode["TD"] = "TD";
|
|
110
|
+
CountryCode["CL"] = "CL";
|
|
111
|
+
CountryCode["CN"] = "CN";
|
|
112
|
+
CountryCode["CX"] = "CX";
|
|
113
|
+
CountryCode["CC"] = "CC";
|
|
114
|
+
CountryCode["KM"] = "KM";
|
|
115
|
+
CountryCode["CG"] = "CG";
|
|
116
|
+
CountryCode["CD"] = "CD";
|
|
117
|
+
CountryCode["CK"] = "CK";
|
|
118
|
+
CountryCode["CR"] = "CR";
|
|
119
|
+
CountryCode["CI"] = "CI";
|
|
120
|
+
CountryCode["CU"] = "CU";
|
|
121
|
+
CountryCode["DJ"] = "DJ";
|
|
122
|
+
CountryCode["DM"] = "DM";
|
|
123
|
+
CountryCode["DO"] = "DO";
|
|
124
|
+
CountryCode["EC"] = "EC";
|
|
125
|
+
CountryCode["SV"] = "SV";
|
|
126
|
+
CountryCode["GQ"] = "GQ";
|
|
127
|
+
CountryCode["ER"] = "ER";
|
|
128
|
+
CountryCode["ET"] = "ET";
|
|
129
|
+
CountryCode["FK"] = "FK";
|
|
130
|
+
CountryCode["FJ"] = "FJ";
|
|
131
|
+
CountryCode["PF"] = "PF";
|
|
132
|
+
CountryCode["TF"] = "TF";
|
|
133
|
+
CountryCode["GA"] = "GA";
|
|
134
|
+
CountryCode["GM"] = "GM";
|
|
135
|
+
CountryCode["GH"] = "GH";
|
|
136
|
+
CountryCode["GL"] = "GL";
|
|
137
|
+
CountryCode["GD"] = "GD";
|
|
138
|
+
CountryCode["GU"] = "GU";
|
|
139
|
+
CountryCode["GT"] = "GT";
|
|
140
|
+
CountryCode["GN"] = "GN";
|
|
141
|
+
CountryCode["GW"] = "GW";
|
|
142
|
+
CountryCode["GY"] = "GY";
|
|
143
|
+
CountryCode["HT"] = "HT";
|
|
144
|
+
CountryCode["HM"] = "HM";
|
|
145
|
+
CountryCode["HN"] = "HN";
|
|
146
|
+
CountryCode["HK"] = "HK";
|
|
147
|
+
CountryCode["ID"] = "ID";
|
|
148
|
+
CountryCode["IR"] = "IR";
|
|
149
|
+
CountryCode["IQ"] = "IQ";
|
|
150
|
+
CountryCode["IL"] = "IL";
|
|
151
|
+
CountryCode["JM"] = "JM";
|
|
152
|
+
CountryCode["JO"] = "JO";
|
|
153
|
+
CountryCode["KZ"] = "KZ";
|
|
154
|
+
CountryCode["KE"] = "KE";
|
|
155
|
+
CountryCode["KI"] = "KI";
|
|
156
|
+
CountryCode["KP"] = "KP";
|
|
157
|
+
CountryCode["KR"] = "KR";
|
|
158
|
+
CountryCode["KW"] = "KW";
|
|
159
|
+
CountryCode["KG"] = "KG";
|
|
160
|
+
CountryCode["LA"] = "LA";
|
|
161
|
+
CountryCode["LB"] = "LB";
|
|
162
|
+
CountryCode["LS"] = "LS";
|
|
163
|
+
CountryCode["LR"] = "LR";
|
|
164
|
+
CountryCode["LY"] = "LY";
|
|
165
|
+
CountryCode["MO"] = "MO";
|
|
166
|
+
CountryCode["MG"] = "MG";
|
|
167
|
+
CountryCode["MW"] = "MW";
|
|
168
|
+
CountryCode["MY"] = "MY";
|
|
169
|
+
CountryCode["MV"] = "MV";
|
|
170
|
+
CountryCode["ML"] = "ML";
|
|
171
|
+
CountryCode["MH"] = "MH";
|
|
172
|
+
CountryCode["MR"] = "MR";
|
|
173
|
+
CountryCode["MU"] = "MU";
|
|
174
|
+
CountryCode["MX"] = "MX";
|
|
175
|
+
CountryCode["FM"] = "FM";
|
|
176
|
+
CountryCode["MD"] = "MD";
|
|
177
|
+
CountryCode["MN"] = "MN";
|
|
178
|
+
CountryCode["MS"] = "MS";
|
|
179
|
+
CountryCode["MZ"] = "MZ";
|
|
180
|
+
CountryCode["MM"] = "MM";
|
|
181
|
+
CountryCode["NA"] = "NA";
|
|
182
|
+
CountryCode["NR"] = "NR";
|
|
183
|
+
CountryCode["NP"] = "NP";
|
|
184
|
+
CountryCode["NC"] = "NC";
|
|
185
|
+
CountryCode["NZ"] = "NZ";
|
|
186
|
+
CountryCode["NI"] = "NI";
|
|
187
|
+
CountryCode["NE"] = "NE";
|
|
188
|
+
CountryCode["NG"] = "NG";
|
|
189
|
+
CountryCode["NU"] = "NU";
|
|
190
|
+
CountryCode["NF"] = "NF";
|
|
191
|
+
CountryCode["MP"] = "MP";
|
|
192
|
+
CountryCode["OM"] = "OM";
|
|
193
|
+
CountryCode["PK"] = "PK";
|
|
194
|
+
CountryCode["PW"] = "PW";
|
|
195
|
+
CountryCode["PS"] = "PS";
|
|
196
|
+
CountryCode["PA"] = "PA";
|
|
197
|
+
CountryCode["PG"] = "PG";
|
|
198
|
+
CountryCode["PY"] = "PY";
|
|
199
|
+
CountryCode["PE"] = "PE";
|
|
200
|
+
CountryCode["PH"] = "PH";
|
|
201
|
+
CountryCode["PN"] = "PN";
|
|
202
|
+
CountryCode["PR"] = "PR";
|
|
203
|
+
CountryCode["QA"] = "QA";
|
|
204
|
+
CountryCode["RW"] = "RW";
|
|
205
|
+
CountryCode["SH"] = "SH";
|
|
206
|
+
CountryCode["KN"] = "KN";
|
|
207
|
+
CountryCode["LC"] = "LC";
|
|
208
|
+
CountryCode["VC"] = "VC";
|
|
209
|
+
CountryCode["WS"] = "WS";
|
|
210
|
+
CountryCode["ST"] = "ST";
|
|
211
|
+
CountryCode["SA"] = "SA";
|
|
212
|
+
CountryCode["SN"] = "SN";
|
|
213
|
+
CountryCode["SC"] = "SC";
|
|
214
|
+
CountryCode["SL"] = "SL";
|
|
215
|
+
CountryCode["SB"] = "SB";
|
|
216
|
+
CountryCode["SO"] = "SO";
|
|
217
|
+
CountryCode["ZA"] = "ZA";
|
|
218
|
+
CountryCode["GS"] = "GS";
|
|
219
|
+
CountryCode["LK"] = "LK";
|
|
220
|
+
CountryCode["SD"] = "SD";
|
|
221
|
+
CountryCode["SR"] = "SR";
|
|
222
|
+
CountryCode["SJ"] = "SJ";
|
|
223
|
+
CountryCode["SZ"] = "SZ";
|
|
224
|
+
CountryCode["SY"] = "SY";
|
|
225
|
+
CountryCode["TW"] = "TW";
|
|
226
|
+
CountryCode["TJ"] = "TJ";
|
|
227
|
+
CountryCode["TZ"] = "TZ";
|
|
228
|
+
CountryCode["TL"] = "TL";
|
|
229
|
+
CountryCode["TG"] = "TG";
|
|
230
|
+
CountryCode["TK"] = "TK";
|
|
231
|
+
CountryCode["TO"] = "TO";
|
|
232
|
+
CountryCode["TT"] = "TT";
|
|
233
|
+
CountryCode["TN"] = "TN";
|
|
234
|
+
CountryCode["TM"] = "TM";
|
|
235
|
+
CountryCode["TC"] = "TC";
|
|
236
|
+
CountryCode["TV"] = "TV";
|
|
237
|
+
CountryCode["UG"] = "UG";
|
|
238
|
+
CountryCode["AE"] = "AE";
|
|
239
|
+
CountryCode["UM"] = "UM";
|
|
240
|
+
CountryCode["UY"] = "UY";
|
|
241
|
+
CountryCode["UZ"] = "UZ";
|
|
242
|
+
CountryCode["VU"] = "VU";
|
|
243
|
+
CountryCode["VE"] = "VE";
|
|
244
|
+
CountryCode["VG"] = "VG";
|
|
245
|
+
CountryCode["VI"] = "VI";
|
|
246
|
+
CountryCode["WF"] = "WF";
|
|
247
|
+
CountryCode["EH"] = "EH";
|
|
248
|
+
CountryCode["YE"] = "YE";
|
|
249
|
+
CountryCode["ZM"] = "ZM";
|
|
250
|
+
CountryCode["ZW"] = "ZW";
|
|
251
|
+
CountryCode["AX"] = "AX";
|
|
252
|
+
CountryCode["BQ"] = "BQ";
|
|
253
|
+
CountryCode["CW"] = "CW";
|
|
254
|
+
CountryCode["SX"] = "SX";
|
|
255
|
+
CountryCode["SS"] = "SS";
|
|
256
|
+
})(CountryCode = exports.CountryCode || (exports.CountryCode = {}));
|
|
257
|
+
//# sourceMappingURL=country-code.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"country-code.js","sourceRoot":"","sources":["../../../src/constants/country-code.ts"],"names":[],"mappings":";;;AAAA,IAAY,WA2PX;AA3PD,WAAY,WAAW;IACrB,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;IACX,wBAAW,CAAA;AACb,CAAC,EA3PW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QA2PtB"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.COUNTRY_CODES = void 0;
|
|
4
|
+
const country_code_1 = require("./country-code");
|
|
5
|
+
exports.COUNTRY_CODES = Object.values(country_code_1.CountryCode);
|
|
6
|
+
//# sourceMappingURL=country-codes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"country-codes.js","sourceRoot":"","sources":["../../../src/constants/country-codes.ts"],"names":[],"mappings":";;;AAAA,iDAA6C;AAEhC,QAAA,aAAa,GAAG,MAAM,CAAC,MAAM,CAAC,0BAAW,CAAC,CAAC"}
|
|
@@ -4,3 +4,7 @@ export * from './sha1-regex';
|
|
|
4
4
|
export * from './default-middleware';
|
|
5
5
|
export * from './default-tooltip-animation';
|
|
6
6
|
export * from './animation-in-bottom-position';
|
|
7
|
+
export * from './country-code';
|
|
8
|
+
export * from './country-codes';
|
|
9
|
+
export * from './nationality-code';
|
|
10
|
+
export * from './nationality-codes';
|
|
@@ -20,4 +20,8 @@ __exportStar(require("./sha1-regex"), exports);
|
|
|
20
20
|
__exportStar(require("./default-middleware"), exports);
|
|
21
21
|
__exportStar(require("./default-tooltip-animation"), exports);
|
|
22
22
|
__exportStar(require("./animation-in-bottom-position"), exports);
|
|
23
|
+
__exportStar(require("./country-code"), exports);
|
|
24
|
+
__exportStar(require("./country-codes"), exports);
|
|
25
|
+
__exportStar(require("./nationality-code"), exports);
|
|
26
|
+
__exportStar(require("./nationality-codes"), exports);
|
|
23
27
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,yCAAuB;AACvB,+CAA6B;AAC7B,uDAAqC;AACrC,8DAA4C;AAC5C,iEAA+C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/constants/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,yCAAuB;AACvB,+CAA6B;AAC7B,uDAAqC;AACrC,8DAA4C;AAC5C,iEAA+C;AAC/C,iDAA+B;AAC/B,kDAAgC;AAChC,qDAAmC;AACnC,sDAAoC"}
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
export declare enum NationalityCode {
|
|
2
|
+
'AF' = "AF",
|
|
3
|
+
'AL' = "AL",
|
|
4
|
+
'DZ' = "DZ",
|
|
5
|
+
'AS' = "AS",
|
|
6
|
+
'AD' = "AD",
|
|
7
|
+
'AO' = "AO",
|
|
8
|
+
'AI' = "AI",
|
|
9
|
+
'AR' = "AR",
|
|
10
|
+
'AM' = "AM",
|
|
11
|
+
'AW' = "AW",
|
|
12
|
+
'AU' = "AU",
|
|
13
|
+
'AT' = "AT",
|
|
14
|
+
'AZ' = "AZ",
|
|
15
|
+
'BS' = "BS",
|
|
16
|
+
'BH' = "BH",
|
|
17
|
+
'BD' = "BD",
|
|
18
|
+
'BB' = "BB",
|
|
19
|
+
'BY' = "BY",
|
|
20
|
+
'BE' = "BE",
|
|
21
|
+
'BZ' = "BZ",
|
|
22
|
+
'BJ' = "BJ",
|
|
23
|
+
'BM' = "BM",
|
|
24
|
+
'BT' = "BT",
|
|
25
|
+
'BO' = "BO",
|
|
26
|
+
'BA' = "BA",
|
|
27
|
+
'BW' = "BW",
|
|
28
|
+
'BR' = "BR",
|
|
29
|
+
'BN' = "BN",
|
|
30
|
+
'BG' = "BG",
|
|
31
|
+
'BF' = "BF",
|
|
32
|
+
'BI' = "BI",
|
|
33
|
+
'KH' = "KH",
|
|
34
|
+
'CM' = "CM",
|
|
35
|
+
'CA' = "CA",
|
|
36
|
+
'CV' = "CV",
|
|
37
|
+
'KY' = "KY",
|
|
38
|
+
'CF' = "CF",
|
|
39
|
+
'TD' = "TD",
|
|
40
|
+
'CL' = "CL",
|
|
41
|
+
'CN' = "CN",
|
|
42
|
+
'CO' = "CO",
|
|
43
|
+
'KM' = "KM",
|
|
44
|
+
'CG' = "CG",
|
|
45
|
+
'CD' = "CD",
|
|
46
|
+
'CR' = "CR",
|
|
47
|
+
'HR' = "HR",
|
|
48
|
+
'CU' = "CU",
|
|
49
|
+
'CY' = "CY",
|
|
50
|
+
'CZ' = "CZ",
|
|
51
|
+
'DK' = "DK",
|
|
52
|
+
'DJ' = "DJ",
|
|
53
|
+
'DM' = "DM",
|
|
54
|
+
'DO' = "DO",
|
|
55
|
+
'EC' = "EC",
|
|
56
|
+
'EG' = "EG",
|
|
57
|
+
'SV' = "SV",
|
|
58
|
+
'GQ' = "GQ",
|
|
59
|
+
'ER' = "ER",
|
|
60
|
+
'EE' = "EE",
|
|
61
|
+
'ET' = "ET",
|
|
62
|
+
'FK' = "FK",
|
|
63
|
+
'FO' = "FO",
|
|
64
|
+
'FJ' = "FJ",
|
|
65
|
+
'FI' = "FI",
|
|
66
|
+
'FR' = "FR",
|
|
67
|
+
'GA' = "GA",
|
|
68
|
+
'GB' = "GB",
|
|
69
|
+
'GD' = "GD",
|
|
70
|
+
'GE' = "GE",
|
|
71
|
+
'GH' = "GH",
|
|
72
|
+
'GI' = "GI",
|
|
73
|
+
'GR' = "GR",
|
|
74
|
+
'GL' = "GL",
|
|
75
|
+
'GT' = "GT",
|
|
76
|
+
'GN' = "GN",
|
|
77
|
+
'GW' = "GW",
|
|
78
|
+
'GY' = "GY",
|
|
79
|
+
'HT' = "HT",
|
|
80
|
+
'HM' = "HM",
|
|
81
|
+
'HN' = "HN",
|
|
82
|
+
'HK' = "HK",
|
|
83
|
+
'HU' = "HU",
|
|
84
|
+
'IS' = "IS",
|
|
85
|
+
'IN' = "IN",
|
|
86
|
+
'ID' = "ID",
|
|
87
|
+
'IR' = "IR",
|
|
88
|
+
'IQ' = "IQ",
|
|
89
|
+
'IE' = "IE",
|
|
90
|
+
'IL' = "IL",
|
|
91
|
+
'IT' = "IT",
|
|
92
|
+
'JM' = "JM",
|
|
93
|
+
'JP' = "JP",
|
|
94
|
+
'JO' = "JO",
|
|
95
|
+
'KZ' = "KZ",
|
|
96
|
+
'KE' = "KE",
|
|
97
|
+
'KI' = "KI",
|
|
98
|
+
'KW' = "KW",
|
|
99
|
+
'KG' = "KG",
|
|
100
|
+
'LA' = "LA",
|
|
101
|
+
'LV' = "LV",
|
|
102
|
+
'LB' = "LB",
|
|
103
|
+
'LS' = "LS",
|
|
104
|
+
'LR' = "LR",
|
|
105
|
+
'LY' = "LY",
|
|
106
|
+
'LI' = "LI",
|
|
107
|
+
'LT' = "LT",
|
|
108
|
+
'LU' = "LU",
|
|
109
|
+
'MO' = "MO",
|
|
110
|
+
'MK' = "MK",
|
|
111
|
+
'MG' = "MG",
|
|
112
|
+
'MW' = "MW",
|
|
113
|
+
'MY' = "MY",
|
|
114
|
+
'MV' = "MV",
|
|
115
|
+
'ML' = "ML",
|
|
116
|
+
'MT' = "MT",
|
|
117
|
+
'MH' = "MH",
|
|
118
|
+
'MQ' = "MQ",
|
|
119
|
+
'MR' = "MR",
|
|
120
|
+
'MU' = "MU",
|
|
121
|
+
'YT' = "YT",
|
|
122
|
+
'MX' = "MX",
|
|
123
|
+
'FM' = "FM",
|
|
124
|
+
'MD' = "MD",
|
|
125
|
+
'MC' = "MC",
|
|
126
|
+
'MN' = "MN",
|
|
127
|
+
'ME' = "ME",
|
|
128
|
+
'MS' = "MS",
|
|
129
|
+
'MA' = "MA",
|
|
130
|
+
'MZ' = "MZ",
|
|
131
|
+
'MM' = "MM",
|
|
132
|
+
'NA' = "NA",
|
|
133
|
+
'NR' = "NR",
|
|
134
|
+
'NP' = "NP",
|
|
135
|
+
'NL' = "NL",
|
|
136
|
+
'NC' = "NC",
|
|
137
|
+
'NZ' = "NZ",
|
|
138
|
+
'NI' = "NI",
|
|
139
|
+
'NE' = "NE",
|
|
140
|
+
'NG' = "NG",
|
|
141
|
+
'NU' = "NU",
|
|
142
|
+
'NF' = "NF",
|
|
143
|
+
'MP' = "MP",
|
|
144
|
+
'NO' = "NO",
|
|
145
|
+
'OM' = "OM",
|
|
146
|
+
'PK' = "PK",
|
|
147
|
+
'PW' = "PW",
|
|
148
|
+
'PA' = "PA",
|
|
149
|
+
'PG' = "PG",
|
|
150
|
+
'PY' = "PY",
|
|
151
|
+
'PE' = "PE",
|
|
152
|
+
'PH' = "PH",
|
|
153
|
+
'PN' = "PN",
|
|
154
|
+
'PL' = "PL",
|
|
155
|
+
'PT' = "PT",
|
|
156
|
+
'PR' = "PR",
|
|
157
|
+
'QA' = "QA",
|
|
158
|
+
'RE' = "RE",
|
|
159
|
+
'RO' = "RO",
|
|
160
|
+
'RU' = "RU",
|
|
161
|
+
'RW' = "RW",
|
|
162
|
+
'BL' = "BL",
|
|
163
|
+
'SH' = "SH",
|
|
164
|
+
'KN' = "KN",
|
|
165
|
+
'LC' = "LC",
|
|
166
|
+
'MF' = "MF",
|
|
167
|
+
'PM' = "PM",
|
|
168
|
+
'VC' = "VC",
|
|
169
|
+
'WS' = "WS",
|
|
170
|
+
'SM' = "SM",
|
|
171
|
+
'ST' = "ST",
|
|
172
|
+
'SA' = "SA",
|
|
173
|
+
'SN' = "SN",
|
|
174
|
+
'RS' = "RS",
|
|
175
|
+
'SC' = "SC",
|
|
176
|
+
'SL' = "SL",
|
|
177
|
+
'SG' = "SG",
|
|
178
|
+
'SX' = "SX",
|
|
179
|
+
'SK' = "SK",
|
|
180
|
+
'SI' = "SI",
|
|
181
|
+
'SB' = "SB",
|
|
182
|
+
'SO' = "SO",
|
|
183
|
+
'ZA' = "ZA",
|
|
184
|
+
'GS' = "GS",
|
|
185
|
+
'ES' = "ES",
|
|
186
|
+
'LK' = "LK",
|
|
187
|
+
'SD' = "SD",
|
|
188
|
+
'SR' = "SR",
|
|
189
|
+
'SJ' = "SJ",
|
|
190
|
+
'SE' = "SE",
|
|
191
|
+
'CH' = "CH",
|
|
192
|
+
'SY' = "SY",
|
|
193
|
+
'TW' = "TW",
|
|
194
|
+
'TJ' = "TJ",
|
|
195
|
+
'TZ' = "TZ",
|
|
196
|
+
'TH' = "TH",
|
|
197
|
+
'TL' = "TL",
|
|
198
|
+
'TG' = "TG",
|
|
199
|
+
'TK' = "TK",
|
|
200
|
+
'TO' = "TO",
|
|
201
|
+
'TT' = "TT",
|
|
202
|
+
'TN' = "TN",
|
|
203
|
+
'TR' = "TR",
|
|
204
|
+
'TM' = "TM",
|
|
205
|
+
'TC' = "TC",
|
|
206
|
+
'TV' = "TV",
|
|
207
|
+
'UG' = "UG",
|
|
208
|
+
'UA' = "UA",
|
|
209
|
+
'AE' = "AE",
|
|
210
|
+
'US' = "US",
|
|
211
|
+
'UY' = "UY",
|
|
212
|
+
'UZ' = "UZ",
|
|
213
|
+
'VU' = "VU",
|
|
214
|
+
'VE' = "VE",
|
|
215
|
+
'VN' = "VN",
|
|
216
|
+
'WF' = "WF",
|
|
217
|
+
'EH' = "EH",
|
|
218
|
+
'YE' = "YE",
|
|
219
|
+
'ZM' = "ZM",
|
|
220
|
+
'ZW' = "ZW"
|
|
221
|
+
}
|