@sprinklrjs/spaceweb 14.12.0 → 14.12.2
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/asyncSelect/hooks/useAsyncOptionHandlers.js +3 -2
- package/baseui/layer/tether.js +5 -5
- package/esm/asyncSelect/hooks/useAsyncOptionHandlers.js +4 -3
- package/esm/baseui/layer/tether.js +5 -5
- package/esm/input/base-input.js +1 -1
- package/esm/list/divider.js +3 -1
- package/esm/list/list.js +11 -14
- package/esm/list/utils.d.ts +8 -0
- package/esm/list/utils.js +28 -1
- package/esm/phone-input/constants.d.ts +476 -0
- package/esm/phone-input/constants.js +397 -105
- package/esm/phone-input/country-select.js +7 -4
- package/esm/phone-input/types.d.ts +24 -1
- package/esm/phone-input/useStatefulPhoneInput.d.ts +1 -1
- package/esm/phone-input/utils.d.ts +25 -1
- package/esm/phone-input/utils.js +49 -0
- package/input/base-input.js +1 -1
- package/list/divider.js +3 -1
- package/list/list.js +10 -13
- package/list/utils.d.ts +8 -0
- package/list/utils.js +31 -1
- package/package.json +2 -2
- package/phone-input/constants.d.ts +476 -0
- package/phone-input/constants.js +397 -105
- package/phone-input/country-select.js +5 -2
- package/phone-input/types.d.ts +24 -1
- package/phone-input/useStatefulPhoneInput.d.ts +1 -1
- package/phone-input/utils.d.ts +25 -1
- package/phone-input/utils.js +52 -1
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -3,16 +3,22 @@ export declare const COUNTRIES: {
|
|
|
3
3
|
readonly label: "Afghanistan (افغانستان)";
|
|
4
4
|
readonly id: "AF";
|
|
5
5
|
readonly dialCode: "+93";
|
|
6
|
+
readonly nativeName: "افغانستان";
|
|
7
|
+
readonly nativeLang: "ps";
|
|
6
8
|
};
|
|
7
9
|
readonly AL: {
|
|
8
10
|
readonly label: "Albania (Shqipëri)";
|
|
9
11
|
readonly id: "AL";
|
|
10
12
|
readonly dialCode: "+355";
|
|
13
|
+
readonly nativeName: "Shqipëri";
|
|
14
|
+
readonly nativeLang: "sq";
|
|
11
15
|
};
|
|
12
16
|
readonly DZ: {
|
|
13
17
|
readonly label: "Algeria (الجزائر)";
|
|
14
18
|
readonly id: "DZ";
|
|
15
19
|
readonly dialCode: "+213";
|
|
20
|
+
readonly nativeName: "الجزائر";
|
|
21
|
+
readonly nativeLang: "ar";
|
|
16
22
|
};
|
|
17
23
|
readonly AS: {
|
|
18
24
|
readonly label: "American Samoa";
|
|
@@ -48,6 +54,8 @@ export declare const COUNTRIES: {
|
|
|
48
54
|
readonly label: "Armenia (Հայաստան)";
|
|
49
55
|
readonly id: "AM";
|
|
50
56
|
readonly dialCode: "+374";
|
|
57
|
+
readonly nativeName: "Հայաստան";
|
|
58
|
+
readonly nativeLang: "hy";
|
|
51
59
|
};
|
|
52
60
|
readonly AW: {
|
|
53
61
|
readonly label: "Aruba";
|
|
@@ -63,11 +71,15 @@ export declare const COUNTRIES: {
|
|
|
63
71
|
readonly label: "Austria (Österreich)";
|
|
64
72
|
readonly id: "AT";
|
|
65
73
|
readonly dialCode: "+43";
|
|
74
|
+
readonly nativeName: "Österreich";
|
|
75
|
+
readonly nativeLang: "de";
|
|
66
76
|
};
|
|
67
77
|
readonly AZ: {
|
|
68
78
|
readonly label: "Azerbaijan (Azərbaycan)";
|
|
69
79
|
readonly id: "AZ";
|
|
70
80
|
readonly dialCode: "+994";
|
|
81
|
+
readonly nativeName: "Azərbaycan";
|
|
82
|
+
readonly nativeLang: "az";
|
|
71
83
|
};
|
|
72
84
|
readonly BS: {
|
|
73
85
|
readonly label: "Bahamas";
|
|
@@ -78,11 +90,15 @@ export declare const COUNTRIES: {
|
|
|
78
90
|
readonly label: "Bahrain (البحرين)";
|
|
79
91
|
readonly id: "BH";
|
|
80
92
|
readonly dialCode: "+973";
|
|
93
|
+
readonly nativeName: "البحرين";
|
|
94
|
+
readonly nativeLang: "ar";
|
|
81
95
|
};
|
|
82
96
|
readonly BD: {
|
|
83
97
|
readonly label: "Bangladesh (বাংলাদেশ)";
|
|
84
98
|
readonly id: "BD";
|
|
85
99
|
readonly dialCode: "+880";
|
|
100
|
+
readonly nativeName: "বাংলাদেশ";
|
|
101
|
+
readonly nativeLang: "bn";
|
|
86
102
|
};
|
|
87
103
|
readonly BB: {
|
|
88
104
|
readonly label: "Barbados";
|
|
@@ -93,11 +109,15 @@ export declare const COUNTRIES: {
|
|
|
93
109
|
readonly label: "Belarus (Беларусь)";
|
|
94
110
|
readonly id: "BY";
|
|
95
111
|
readonly dialCode: "+375";
|
|
112
|
+
readonly nativeName: "Беларусь";
|
|
113
|
+
readonly nativeLang: "be";
|
|
96
114
|
};
|
|
97
115
|
readonly BE: {
|
|
98
116
|
readonly label: "Belgium (België)";
|
|
99
117
|
readonly id: "BE";
|
|
100
118
|
readonly dialCode: "+32";
|
|
119
|
+
readonly nativeName: "België";
|
|
120
|
+
readonly nativeLang: "nl";
|
|
101
121
|
};
|
|
102
122
|
readonly BZ: {
|
|
103
123
|
readonly label: "Belize";
|
|
@@ -108,6 +128,8 @@ export declare const COUNTRIES: {
|
|
|
108
128
|
readonly label: "Benin (Bénin)";
|
|
109
129
|
readonly id: "BJ";
|
|
110
130
|
readonly dialCode: "+229";
|
|
131
|
+
readonly nativeName: "Bénin";
|
|
132
|
+
readonly nativeLang: "fr";
|
|
111
133
|
};
|
|
112
134
|
readonly BM: {
|
|
113
135
|
readonly label: "Bermuda";
|
|
@@ -118,6 +140,8 @@ export declare const COUNTRIES: {
|
|
|
118
140
|
readonly label: "Bhutan (འབྲུག)";
|
|
119
141
|
readonly id: "BT";
|
|
120
142
|
readonly dialCode: "+975";
|
|
143
|
+
readonly nativeName: "འབྲུག";
|
|
144
|
+
readonly nativeLang: "dz";
|
|
121
145
|
};
|
|
122
146
|
readonly BO: {
|
|
123
147
|
readonly label: "Bolivia";
|
|
@@ -128,6 +152,8 @@ export declare const COUNTRIES: {
|
|
|
128
152
|
readonly label: "Bosnia and Herzegovina (Босна и Херцеговина)";
|
|
129
153
|
readonly id: "BA";
|
|
130
154
|
readonly dialCode: "+387";
|
|
155
|
+
readonly nativeName: "Босна и Херцеговина";
|
|
156
|
+
readonly nativeLang: "sr";
|
|
131
157
|
};
|
|
132
158
|
readonly BW: {
|
|
133
159
|
readonly label: "Botswana";
|
|
@@ -138,6 +164,8 @@ export declare const COUNTRIES: {
|
|
|
138
164
|
readonly label: "Brazil (Brasil)";
|
|
139
165
|
readonly id: "BR";
|
|
140
166
|
readonly dialCode: "+55";
|
|
167
|
+
readonly nativeName: "Brasil";
|
|
168
|
+
readonly nativeLang: "pt";
|
|
141
169
|
};
|
|
142
170
|
readonly IO: {
|
|
143
171
|
readonly label: "British Indian Ocean Territory";
|
|
@@ -158,6 +186,8 @@ export declare const COUNTRIES: {
|
|
|
158
186
|
readonly label: "Bulgaria (България)";
|
|
159
187
|
readonly id: "BG";
|
|
160
188
|
readonly dialCode: "+359";
|
|
189
|
+
readonly nativeName: "България";
|
|
190
|
+
readonly nativeLang: "bg";
|
|
161
191
|
};
|
|
162
192
|
readonly BF: {
|
|
163
193
|
readonly label: "Burkina Faso";
|
|
@@ -168,16 +198,22 @@ export declare const COUNTRIES: {
|
|
|
168
198
|
readonly label: "Burundi (Uburundi)";
|
|
169
199
|
readonly id: "BI";
|
|
170
200
|
readonly dialCode: "+257";
|
|
201
|
+
readonly nativeName: "Uburundi";
|
|
202
|
+
readonly nativeLang: "rn";
|
|
171
203
|
};
|
|
172
204
|
readonly KH: {
|
|
173
205
|
readonly label: "Cambodia (កម្ពុជា)";
|
|
174
206
|
readonly id: "KH";
|
|
175
207
|
readonly dialCode: "+855";
|
|
208
|
+
readonly nativeName: "កម្ពុជា";
|
|
209
|
+
readonly nativeLang: "km";
|
|
176
210
|
};
|
|
177
211
|
readonly CM: {
|
|
178
212
|
readonly label: "Cameroon (Cameroun)";
|
|
179
213
|
readonly id: "CM";
|
|
180
214
|
readonly dialCode: "+237";
|
|
215
|
+
readonly nativeName: "Cameroun";
|
|
216
|
+
readonly nativeLang: "fr";
|
|
181
217
|
};
|
|
182
218
|
readonly CA: {
|
|
183
219
|
readonly label: "Canada";
|
|
@@ -188,6 +224,8 @@ export declare const COUNTRIES: {
|
|
|
188
224
|
readonly label: "Cape Verde (Kabu Verdi)";
|
|
189
225
|
readonly id: "CV";
|
|
190
226
|
readonly dialCode: "+238";
|
|
227
|
+
readonly nativeName: "Kabu Verdi";
|
|
228
|
+
readonly nativeLang: "kea";
|
|
191
229
|
};
|
|
192
230
|
readonly KY: {
|
|
193
231
|
readonly label: "Cayman Islands";
|
|
@@ -198,11 +236,15 @@ export declare const COUNTRIES: {
|
|
|
198
236
|
readonly label: "Central African Republic (République centrafricaine)";
|
|
199
237
|
readonly id: "CF";
|
|
200
238
|
readonly dialCode: "+236";
|
|
239
|
+
readonly nativeName: "République centrafricaine";
|
|
240
|
+
readonly nativeLang: "fr";
|
|
201
241
|
};
|
|
202
242
|
readonly TD: {
|
|
203
243
|
readonly label: "Chad (Tchad)";
|
|
204
244
|
readonly id: "TD";
|
|
205
245
|
readonly dialCode: "+235";
|
|
246
|
+
readonly nativeName: "Tchad";
|
|
247
|
+
readonly nativeLang: "fr";
|
|
206
248
|
};
|
|
207
249
|
readonly CL: {
|
|
208
250
|
readonly label: "Chile";
|
|
@@ -213,6 +255,8 @@ export declare const COUNTRIES: {
|
|
|
213
255
|
readonly label: "China (中国)";
|
|
214
256
|
readonly id: "CN";
|
|
215
257
|
readonly dialCode: "+86";
|
|
258
|
+
readonly nativeName: "中国";
|
|
259
|
+
readonly nativeLang: "zh-Hans";
|
|
216
260
|
};
|
|
217
261
|
readonly CX: {
|
|
218
262
|
readonly label: "Christmas Island";
|
|
@@ -233,11 +277,15 @@ export declare const COUNTRIES: {
|
|
|
233
277
|
readonly label: "Comoros (جزر القمر)";
|
|
234
278
|
readonly id: "KM";
|
|
235
279
|
readonly dialCode: "+269";
|
|
280
|
+
readonly nativeName: "جزر القمر";
|
|
281
|
+
readonly nativeLang: "ar";
|
|
236
282
|
};
|
|
237
283
|
readonly CD: {
|
|
238
284
|
readonly label: "Congo (DRC) (Jamhuri ya Kisoemokrasia ya Kongo)";
|
|
239
285
|
readonly id: "CD";
|
|
240
286
|
readonly dialCode: "+243";
|
|
287
|
+
readonly nativeName: "Jamhuri ya Kisoemokrasia ya Kongo";
|
|
288
|
+
readonly nativeLang: "sw";
|
|
241
289
|
};
|
|
242
290
|
readonly CG: {
|
|
243
291
|
readonly label: "Congo (Republic) (Congo-Brazzaville)";
|
|
@@ -263,6 +311,8 @@ export declare const COUNTRIES: {
|
|
|
263
311
|
readonly label: "Croatia (Hrvatska)";
|
|
264
312
|
readonly id: "HR";
|
|
265
313
|
readonly dialCode: "+385";
|
|
314
|
+
readonly nativeName: "Hrvatska";
|
|
315
|
+
readonly nativeLang: "hr";
|
|
266
316
|
};
|
|
267
317
|
readonly CU: {
|
|
268
318
|
readonly label: "Cuba";
|
|
@@ -278,16 +328,22 @@ export declare const COUNTRIES: {
|
|
|
278
328
|
readonly label: "Cyprus (Κύπρος)";
|
|
279
329
|
readonly id: "CY";
|
|
280
330
|
readonly dialCode: "+357";
|
|
331
|
+
readonly nativeName: "Κύπρος";
|
|
332
|
+
readonly nativeLang: "el";
|
|
281
333
|
};
|
|
282
334
|
readonly CZ: {
|
|
283
335
|
readonly label: "Czech Republic (Česká republika)";
|
|
284
336
|
readonly id: "CZ";
|
|
285
337
|
readonly dialCode: "+420";
|
|
338
|
+
readonly nativeName: "Česká republika";
|
|
339
|
+
readonly nativeLang: "cs";
|
|
286
340
|
};
|
|
287
341
|
readonly DK: {
|
|
288
342
|
readonly label: "Denmark (Danmark)";
|
|
289
343
|
readonly id: "DK";
|
|
290
344
|
readonly dialCode: "+45";
|
|
345
|
+
readonly nativeName: "Danmark";
|
|
346
|
+
readonly nativeLang: "da";
|
|
291
347
|
};
|
|
292
348
|
readonly DJ: {
|
|
293
349
|
readonly label: "Djibouti";
|
|
@@ -303,6 +359,8 @@ export declare const COUNTRIES: {
|
|
|
303
359
|
readonly label: "Dominican Republic (República Dominicana)";
|
|
304
360
|
readonly id: "DO";
|
|
305
361
|
readonly dialCode: "+1";
|
|
362
|
+
readonly nativeName: "República Dominicana";
|
|
363
|
+
readonly nativeLang: "es";
|
|
306
364
|
};
|
|
307
365
|
readonly EC: {
|
|
308
366
|
readonly label: "Ecuador";
|
|
@@ -313,6 +371,8 @@ export declare const COUNTRIES: {
|
|
|
313
371
|
readonly label: "Egypt (مصر)";
|
|
314
372
|
readonly id: "EG";
|
|
315
373
|
readonly dialCode: "+20";
|
|
374
|
+
readonly nativeName: "مصر";
|
|
375
|
+
readonly nativeLang: "ar";
|
|
316
376
|
};
|
|
317
377
|
readonly SV: {
|
|
318
378
|
readonly label: "El Salvador";
|
|
@@ -323,6 +383,8 @@ export declare const COUNTRIES: {
|
|
|
323
383
|
readonly label: "Equatorial Guinea (Guinea Ecuatorial)";
|
|
324
384
|
readonly id: "GQ";
|
|
325
385
|
readonly dialCode: "+240";
|
|
386
|
+
readonly nativeName: "Guinea Ecuatorial";
|
|
387
|
+
readonly nativeLang: "es";
|
|
326
388
|
};
|
|
327
389
|
readonly ER: {
|
|
328
390
|
readonly label: "Eritrea";
|
|
@@ -333,6 +395,8 @@ export declare const COUNTRIES: {
|
|
|
333
395
|
readonly label: "Estonia (Eesti)";
|
|
334
396
|
readonly id: "EE";
|
|
335
397
|
readonly dialCode: "+372";
|
|
398
|
+
readonly nativeName: "Eesti";
|
|
399
|
+
readonly nativeLang: "et";
|
|
336
400
|
};
|
|
337
401
|
readonly ET: {
|
|
338
402
|
readonly label: "Ethiopia";
|
|
@@ -343,11 +407,15 @@ export declare const COUNTRIES: {
|
|
|
343
407
|
readonly label: "Falkland Islands (Islas Malvinas)";
|
|
344
408
|
readonly id: "FK";
|
|
345
409
|
readonly dialCode: "+500";
|
|
410
|
+
readonly nativeName: "Islas Malvinas";
|
|
411
|
+
readonly nativeLang: "es";
|
|
346
412
|
};
|
|
347
413
|
readonly FO: {
|
|
348
414
|
readonly label: "Faroe Islands (Føroyar)";
|
|
349
415
|
readonly id: "FO";
|
|
350
416
|
readonly dialCode: "+298";
|
|
417
|
+
readonly nativeName: "Føroyar";
|
|
418
|
+
readonly nativeLang: "fo";
|
|
351
419
|
};
|
|
352
420
|
readonly FJ: {
|
|
353
421
|
readonly label: "Fiji";
|
|
@@ -358,6 +426,8 @@ export declare const COUNTRIES: {
|
|
|
358
426
|
readonly label: "Finland (Suomi)";
|
|
359
427
|
readonly id: "FI";
|
|
360
428
|
readonly dialCode: "+358";
|
|
429
|
+
readonly nativeName: "Suomi";
|
|
430
|
+
readonly nativeLang: "fi";
|
|
361
431
|
};
|
|
362
432
|
readonly FR: {
|
|
363
433
|
readonly label: "France";
|
|
@@ -368,11 +438,15 @@ export declare const COUNTRIES: {
|
|
|
368
438
|
readonly label: "French Guiana (Guyane française)";
|
|
369
439
|
readonly id: "GF";
|
|
370
440
|
readonly dialCode: "+594";
|
|
441
|
+
readonly nativeName: "Guyane française";
|
|
442
|
+
readonly nativeLang: "fr";
|
|
371
443
|
};
|
|
372
444
|
readonly PF: {
|
|
373
445
|
readonly label: "French Polynesia (Polynésie française)";
|
|
374
446
|
readonly id: "PF";
|
|
375
447
|
readonly dialCode: "+689";
|
|
448
|
+
readonly nativeName: "Polynésie française";
|
|
449
|
+
readonly nativeLang: "fr";
|
|
376
450
|
};
|
|
377
451
|
readonly GA: {
|
|
378
452
|
readonly label: "Gabon";
|
|
@@ -388,16 +462,22 @@ export declare const COUNTRIES: {
|
|
|
388
462
|
readonly label: "Georgia (საქართველო)";
|
|
389
463
|
readonly id: "GE";
|
|
390
464
|
readonly dialCode: "+995";
|
|
465
|
+
readonly nativeName: "საქართველო";
|
|
466
|
+
readonly nativeLang: "ka";
|
|
391
467
|
};
|
|
392
468
|
readonly DE: {
|
|
393
469
|
readonly label: "Germany (Deutschland)";
|
|
394
470
|
readonly id: "DE";
|
|
395
471
|
readonly dialCode: "+49";
|
|
472
|
+
readonly nativeName: "Deutschland";
|
|
473
|
+
readonly nativeLang: "de";
|
|
396
474
|
};
|
|
397
475
|
readonly GH: {
|
|
398
476
|
readonly label: "Ghana (Gaana)";
|
|
399
477
|
readonly id: "GH";
|
|
400
478
|
readonly dialCode: "+233";
|
|
479
|
+
readonly nativeName: "Gaana";
|
|
480
|
+
readonly nativeLang: "ak";
|
|
401
481
|
};
|
|
402
482
|
readonly GI: {
|
|
403
483
|
readonly label: "Gibraltar";
|
|
@@ -408,11 +488,15 @@ export declare const COUNTRIES: {
|
|
|
408
488
|
readonly label: "Greece (Ελλάδα)";
|
|
409
489
|
readonly id: "GR";
|
|
410
490
|
readonly dialCode: "+30";
|
|
491
|
+
readonly nativeName: "Ελλάδα";
|
|
492
|
+
readonly nativeLang: "el";
|
|
411
493
|
};
|
|
412
494
|
readonly GL: {
|
|
413
495
|
readonly label: "Greenland (Kalaallit Nunaat)";
|
|
414
496
|
readonly id: "GL";
|
|
415
497
|
readonly dialCode: "+299";
|
|
498
|
+
readonly nativeName: "Kalaallit Nunaat";
|
|
499
|
+
readonly nativeLang: "kl";
|
|
416
500
|
};
|
|
417
501
|
readonly GD: {
|
|
418
502
|
readonly label: "Grenada";
|
|
@@ -443,11 +527,15 @@ export declare const COUNTRIES: {
|
|
|
443
527
|
readonly label: "Guinea (Guinée)";
|
|
444
528
|
readonly id: "GN";
|
|
445
529
|
readonly dialCode: "+224";
|
|
530
|
+
readonly nativeName: "Guinée";
|
|
531
|
+
readonly nativeLang: "fr";
|
|
446
532
|
};
|
|
447
533
|
readonly GW: {
|
|
448
534
|
readonly label: "Guinea-Bissau (Guiné Bissau)";
|
|
449
535
|
readonly id: "GW";
|
|
450
536
|
readonly dialCode: "+245";
|
|
537
|
+
readonly nativeName: "Guiné Bissau";
|
|
538
|
+
readonly nativeLang: "pt";
|
|
451
539
|
};
|
|
452
540
|
readonly GY: {
|
|
453
541
|
readonly label: "Guyana";
|
|
@@ -468,21 +556,29 @@ export declare const COUNTRIES: {
|
|
|
468
556
|
readonly label: "Hong Kong (香港)";
|
|
469
557
|
readonly id: "HK";
|
|
470
558
|
readonly dialCode: "+852";
|
|
559
|
+
readonly nativeName: "香港";
|
|
560
|
+
readonly nativeLang: "zh-Hant";
|
|
471
561
|
};
|
|
472
562
|
readonly HU: {
|
|
473
563
|
readonly label: "Hungary (Magyarország)";
|
|
474
564
|
readonly id: "HU";
|
|
475
565
|
readonly dialCode: "+36";
|
|
566
|
+
readonly nativeName: "Magyarország";
|
|
567
|
+
readonly nativeLang: "hu";
|
|
476
568
|
};
|
|
477
569
|
readonly IS: {
|
|
478
570
|
readonly label: "Iceland (Ísland)";
|
|
479
571
|
readonly id: "IS";
|
|
480
572
|
readonly dialCode: "+354";
|
|
573
|
+
readonly nativeName: "Ísland";
|
|
574
|
+
readonly nativeLang: "is";
|
|
481
575
|
};
|
|
482
576
|
readonly IN: {
|
|
483
577
|
readonly label: "India (भारत)";
|
|
484
578
|
readonly id: "IN";
|
|
485
579
|
readonly dialCode: "+91";
|
|
580
|
+
readonly nativeName: "भारत";
|
|
581
|
+
readonly nativeLang: "hi";
|
|
486
582
|
};
|
|
487
583
|
readonly ID: {
|
|
488
584
|
readonly label: "Indonesia";
|
|
@@ -493,11 +589,15 @@ export declare const COUNTRIES: {
|
|
|
493
589
|
readonly label: "Iran (ایران)";
|
|
494
590
|
readonly id: "IR";
|
|
495
591
|
readonly dialCode: "+98";
|
|
592
|
+
readonly nativeName: "ایران";
|
|
593
|
+
readonly nativeLang: "fa";
|
|
496
594
|
};
|
|
497
595
|
readonly IQ: {
|
|
498
596
|
readonly label: "Iraq (العراق)";
|
|
499
597
|
readonly id: "IQ";
|
|
500
598
|
readonly dialCode: "+964";
|
|
599
|
+
readonly nativeName: "العراق";
|
|
600
|
+
readonly nativeLang: "ar";
|
|
501
601
|
};
|
|
502
602
|
readonly IE: {
|
|
503
603
|
readonly label: "Ireland";
|
|
@@ -513,11 +613,15 @@ export declare const COUNTRIES: {
|
|
|
513
613
|
readonly label: "Israel (ישראל)";
|
|
514
614
|
readonly id: "IL";
|
|
515
615
|
readonly dialCode: "+972";
|
|
616
|
+
readonly nativeName: "ישראל";
|
|
617
|
+
readonly nativeLang: "he";
|
|
516
618
|
};
|
|
517
619
|
readonly IT: {
|
|
518
620
|
readonly label: "Italy (Italia)";
|
|
519
621
|
readonly id: "IT";
|
|
520
622
|
readonly dialCode: "+39";
|
|
623
|
+
readonly nativeName: "Italia";
|
|
624
|
+
readonly nativeLang: "it";
|
|
521
625
|
};
|
|
522
626
|
readonly JM: {
|
|
523
627
|
readonly label: "Jamaica";
|
|
@@ -528,6 +632,8 @@ export declare const COUNTRIES: {
|
|
|
528
632
|
readonly label: "Japan (日本)";
|
|
529
633
|
readonly id: "JP";
|
|
530
634
|
readonly dialCode: "+81";
|
|
635
|
+
readonly nativeName: "日本";
|
|
636
|
+
readonly nativeLang: "ja";
|
|
531
637
|
};
|
|
532
638
|
readonly JE: {
|
|
533
639
|
readonly label: "Jersey";
|
|
@@ -538,11 +644,15 @@ export declare const COUNTRIES: {
|
|
|
538
644
|
readonly label: "Jordan (الأردن)";
|
|
539
645
|
readonly id: "JO";
|
|
540
646
|
readonly dialCode: "+962";
|
|
647
|
+
readonly nativeName: "الأردن";
|
|
648
|
+
readonly nativeLang: "ar";
|
|
541
649
|
};
|
|
542
650
|
readonly KZ: {
|
|
543
651
|
readonly label: "Kazakhstan (Казахстан)";
|
|
544
652
|
readonly id: "KZ";
|
|
545
653
|
readonly dialCode: "+7";
|
|
654
|
+
readonly nativeName: "Казахстан";
|
|
655
|
+
readonly nativeLang: "kk";
|
|
546
656
|
};
|
|
547
657
|
readonly KE: {
|
|
548
658
|
readonly label: "Kenya";
|
|
@@ -563,26 +673,36 @@ export declare const COUNTRIES: {
|
|
|
563
673
|
readonly label: "Kuwait (الكويت)";
|
|
564
674
|
readonly id: "KW";
|
|
565
675
|
readonly dialCode: "+965";
|
|
676
|
+
readonly nativeName: "الكويت";
|
|
677
|
+
readonly nativeLang: "ar";
|
|
566
678
|
};
|
|
567
679
|
readonly KG: {
|
|
568
680
|
readonly label: "Kyrgyzstan (Кыргызстан)";
|
|
569
681
|
readonly id: "KG";
|
|
570
682
|
readonly dialCode: "+996";
|
|
683
|
+
readonly nativeName: "Кыргызстан";
|
|
684
|
+
readonly nativeLang: "ky";
|
|
571
685
|
};
|
|
572
686
|
readonly LA: {
|
|
573
687
|
readonly label: "Laos (ລາວ)";
|
|
574
688
|
readonly id: "LA";
|
|
575
689
|
readonly dialCode: "+856";
|
|
690
|
+
readonly nativeName: "ລາວ";
|
|
691
|
+
readonly nativeLang: "lo";
|
|
576
692
|
};
|
|
577
693
|
readonly LV: {
|
|
578
694
|
readonly label: "Latvia (Latvija)";
|
|
579
695
|
readonly id: "LV";
|
|
580
696
|
readonly dialCode: "+371";
|
|
697
|
+
readonly nativeName: "Latvija";
|
|
698
|
+
readonly nativeLang: "lv";
|
|
581
699
|
};
|
|
582
700
|
readonly LB: {
|
|
583
701
|
readonly label: "Lebanon (لبنان)";
|
|
584
702
|
readonly id: "LB";
|
|
585
703
|
readonly dialCode: "+961";
|
|
704
|
+
readonly nativeName: "لبنان";
|
|
705
|
+
readonly nativeLang: "ar";
|
|
586
706
|
};
|
|
587
707
|
readonly LS: {
|
|
588
708
|
readonly label: "Lesotho";
|
|
@@ -598,6 +718,8 @@ export declare const COUNTRIES: {
|
|
|
598
718
|
readonly label: "Libya (ليبيا)";
|
|
599
719
|
readonly id: "LY";
|
|
600
720
|
readonly dialCode: "+218";
|
|
721
|
+
readonly nativeName: "ليبيا";
|
|
722
|
+
readonly nativeLang: "ar";
|
|
601
723
|
};
|
|
602
724
|
readonly LI: {
|
|
603
725
|
readonly label: "Liechtenstein";
|
|
@@ -608,6 +730,8 @@ export declare const COUNTRIES: {
|
|
|
608
730
|
readonly label: "Lithuania (Lietuva)";
|
|
609
731
|
readonly id: "LT";
|
|
610
732
|
readonly dialCode: "+370";
|
|
733
|
+
readonly nativeName: "Lietuva";
|
|
734
|
+
readonly nativeLang: "lt";
|
|
611
735
|
};
|
|
612
736
|
readonly LU: {
|
|
613
737
|
readonly label: "Luxembourg";
|
|
@@ -618,16 +742,22 @@ export declare const COUNTRIES: {
|
|
|
618
742
|
readonly label: "Macau (澳門)";
|
|
619
743
|
readonly id: "MO";
|
|
620
744
|
readonly dialCode: "+853";
|
|
745
|
+
readonly nativeName: "澳門";
|
|
746
|
+
readonly nativeLang: "zh-Hant";
|
|
621
747
|
};
|
|
622
748
|
readonly MK: {
|
|
623
749
|
readonly label: "North Macedonia (FYROM) (Македонија)";
|
|
624
750
|
readonly id: "MK";
|
|
625
751
|
readonly dialCode: "+389";
|
|
752
|
+
readonly nativeName: "Македонија";
|
|
753
|
+
readonly nativeLang: "mk";
|
|
626
754
|
};
|
|
627
755
|
readonly MG: {
|
|
628
756
|
readonly label: "Madagascar (Madagasikara)";
|
|
629
757
|
readonly id: "MG";
|
|
630
758
|
readonly dialCode: "+261";
|
|
759
|
+
readonly nativeName: "Madagasikara";
|
|
760
|
+
readonly nativeLang: "mg";
|
|
631
761
|
};
|
|
632
762
|
readonly MW: {
|
|
633
763
|
readonly label: "Malawi";
|
|
@@ -668,11 +798,15 @@ export declare const COUNTRIES: {
|
|
|
668
798
|
readonly label: "Mauritania (موريتانيا)";
|
|
669
799
|
readonly id: "MR";
|
|
670
800
|
readonly dialCode: "+222";
|
|
801
|
+
readonly nativeName: "موريتانيا";
|
|
802
|
+
readonly nativeLang: "ar";
|
|
671
803
|
};
|
|
672
804
|
readonly MU: {
|
|
673
805
|
readonly label: "Mauritius (Moris)";
|
|
674
806
|
readonly id: "MU";
|
|
675
807
|
readonly dialCode: "+230";
|
|
808
|
+
readonly nativeName: "Moris";
|
|
809
|
+
readonly nativeLang: "mfe";
|
|
676
810
|
};
|
|
677
811
|
readonly YT: {
|
|
678
812
|
readonly label: "Mayotte";
|
|
@@ -683,6 +817,8 @@ export declare const COUNTRIES: {
|
|
|
683
817
|
readonly label: "Mexico (México)";
|
|
684
818
|
readonly id: "MX";
|
|
685
819
|
readonly dialCode: "+52";
|
|
820
|
+
readonly nativeName: "México";
|
|
821
|
+
readonly nativeLang: "es";
|
|
686
822
|
};
|
|
687
823
|
readonly FM: {
|
|
688
824
|
readonly label: "Micronesia";
|
|
@@ -693,6 +829,8 @@ export declare const COUNTRIES: {
|
|
|
693
829
|
readonly label: "Moldova (Republica Moldova)";
|
|
694
830
|
readonly id: "MD";
|
|
695
831
|
readonly dialCode: "+373";
|
|
832
|
+
readonly nativeName: "Republica Moldova";
|
|
833
|
+
readonly nativeLang: "ro";
|
|
696
834
|
};
|
|
697
835
|
readonly MC: {
|
|
698
836
|
readonly label: "Monaco";
|
|
@@ -703,11 +841,15 @@ export declare const COUNTRIES: {
|
|
|
703
841
|
readonly label: "Mongolia (Монгол)";
|
|
704
842
|
readonly id: "MN";
|
|
705
843
|
readonly dialCode: "+976";
|
|
844
|
+
readonly nativeName: "Монгол";
|
|
845
|
+
readonly nativeLang: "mn";
|
|
706
846
|
};
|
|
707
847
|
readonly ME: {
|
|
708
848
|
readonly label: "Montenegro (Crna Gora)";
|
|
709
849
|
readonly id: "ME";
|
|
710
850
|
readonly dialCode: "+382";
|
|
851
|
+
readonly nativeName: "Crna Gora";
|
|
852
|
+
readonly nativeLang: "cnr";
|
|
711
853
|
};
|
|
712
854
|
readonly MS: {
|
|
713
855
|
readonly label: "Montserrat";
|
|
@@ -718,21 +860,29 @@ export declare const COUNTRIES: {
|
|
|
718
860
|
readonly label: "Morocco (المغرب)";
|
|
719
861
|
readonly id: "MA";
|
|
720
862
|
readonly dialCode: "+212";
|
|
863
|
+
readonly nativeName: "المغرب";
|
|
864
|
+
readonly nativeLang: "ar";
|
|
721
865
|
};
|
|
722
866
|
readonly MZ: {
|
|
723
867
|
readonly label: "Mozambique (Moçambique)";
|
|
724
868
|
readonly id: "MZ";
|
|
725
869
|
readonly dialCode: "+258";
|
|
870
|
+
readonly nativeName: "Moçambique";
|
|
871
|
+
readonly nativeLang: "pt";
|
|
726
872
|
};
|
|
727
873
|
readonly MM: {
|
|
728
874
|
readonly label: "Myanmar (Burma) (မြန်မာ)";
|
|
729
875
|
readonly id: "MM";
|
|
730
876
|
readonly dialCode: "+95";
|
|
877
|
+
readonly nativeName: "မြန်မာ";
|
|
878
|
+
readonly nativeLang: "my";
|
|
731
879
|
};
|
|
732
880
|
readonly NA: {
|
|
733
881
|
readonly label: "Namibia (Namibië)";
|
|
734
882
|
readonly id: "NA";
|
|
735
883
|
readonly dialCode: "+264";
|
|
884
|
+
readonly nativeName: "Namibië";
|
|
885
|
+
readonly nativeLang: "af";
|
|
736
886
|
};
|
|
737
887
|
readonly NR: {
|
|
738
888
|
readonly label: "Nauru";
|
|
@@ -743,16 +893,22 @@ export declare const COUNTRIES: {
|
|
|
743
893
|
readonly label: "Nepal (नेपाल)";
|
|
744
894
|
readonly id: "NP";
|
|
745
895
|
readonly dialCode: "+977";
|
|
896
|
+
readonly nativeName: "नेपाल";
|
|
897
|
+
readonly nativeLang: "ne";
|
|
746
898
|
};
|
|
747
899
|
readonly NL: {
|
|
748
900
|
readonly label: "Netherlands (Nederland)";
|
|
749
901
|
readonly id: "NL";
|
|
750
902
|
readonly dialCode: "+31";
|
|
903
|
+
readonly nativeName: "Nederland";
|
|
904
|
+
readonly nativeLang: "nl";
|
|
751
905
|
};
|
|
752
906
|
readonly NC: {
|
|
753
907
|
readonly label: "New Caledonia (Nouvelle-Calédonie)";
|
|
754
908
|
readonly id: "NC";
|
|
755
909
|
readonly dialCode: "+687";
|
|
910
|
+
readonly nativeName: "Nouvelle-Calédonie";
|
|
911
|
+
readonly nativeLang: "fr";
|
|
756
912
|
};
|
|
757
913
|
readonly NZ: {
|
|
758
914
|
readonly label: "New Zealand";
|
|
@@ -768,6 +924,8 @@ export declare const COUNTRIES: {
|
|
|
768
924
|
readonly label: "Niger (Nijar)";
|
|
769
925
|
readonly id: "NE";
|
|
770
926
|
readonly dialCode: "+227";
|
|
927
|
+
readonly nativeName: "Nijar";
|
|
928
|
+
readonly nativeLang: "ha";
|
|
771
929
|
};
|
|
772
930
|
readonly NG: {
|
|
773
931
|
readonly label: "Nigeria";
|
|
@@ -788,6 +946,8 @@ export declare const COUNTRIES: {
|
|
|
788
946
|
readonly label: "North Korea (조선 민주주의 인민 공화국)";
|
|
789
947
|
readonly id: "KP";
|
|
790
948
|
readonly dialCode: "+850";
|
|
949
|
+
readonly nativeName: "조선 민주주의 인민 공화국";
|
|
950
|
+
readonly nativeLang: "ko";
|
|
791
951
|
};
|
|
792
952
|
readonly MP: {
|
|
793
953
|
readonly label: "Northern Mariana Islands";
|
|
@@ -798,16 +958,22 @@ export declare const COUNTRIES: {
|
|
|
798
958
|
readonly label: "Norway (Norge)";
|
|
799
959
|
readonly id: "NO";
|
|
800
960
|
readonly dialCode: "+47";
|
|
961
|
+
readonly nativeName: "Norge";
|
|
962
|
+
readonly nativeLang: "no";
|
|
801
963
|
};
|
|
802
964
|
readonly OM: {
|
|
803
965
|
readonly label: "Oman (عُمان)";
|
|
804
966
|
readonly id: "OM";
|
|
805
967
|
readonly dialCode: "+968";
|
|
968
|
+
readonly nativeName: "عُمان";
|
|
969
|
+
readonly nativeLang: "ar";
|
|
806
970
|
};
|
|
807
971
|
readonly PK: {
|
|
808
972
|
readonly label: "Pakistan (پاکستان)";
|
|
809
973
|
readonly id: "PK";
|
|
810
974
|
readonly dialCode: "+92";
|
|
975
|
+
readonly nativeName: "پاکستان";
|
|
976
|
+
readonly nativeLang: "ur";
|
|
811
977
|
};
|
|
812
978
|
readonly PW: {
|
|
813
979
|
readonly label: "Palau";
|
|
@@ -818,11 +984,15 @@ export declare const COUNTRIES: {
|
|
|
818
984
|
readonly label: "Palestine (فلسطين)";
|
|
819
985
|
readonly id: "PS";
|
|
820
986
|
readonly dialCode: "+970";
|
|
987
|
+
readonly nativeName: "فلسطين";
|
|
988
|
+
readonly nativeLang: "ar";
|
|
821
989
|
};
|
|
822
990
|
readonly PA: {
|
|
823
991
|
readonly label: "Panama (Panamá)";
|
|
824
992
|
readonly id: "PA";
|
|
825
993
|
readonly dialCode: "+507";
|
|
994
|
+
readonly nativeName: "Panamá";
|
|
995
|
+
readonly nativeLang: "es";
|
|
826
996
|
};
|
|
827
997
|
readonly PG: {
|
|
828
998
|
readonly label: "Papua New Guinea";
|
|
@@ -838,6 +1008,8 @@ export declare const COUNTRIES: {
|
|
|
838
1008
|
readonly label: "Peru (Perú)";
|
|
839
1009
|
readonly id: "PE";
|
|
840
1010
|
readonly dialCode: "+51";
|
|
1011
|
+
readonly nativeName: "Perú";
|
|
1012
|
+
readonly nativeLang: "es";
|
|
841
1013
|
};
|
|
842
1014
|
readonly PH: {
|
|
843
1015
|
readonly label: "Philippines";
|
|
@@ -848,6 +1020,8 @@ export declare const COUNTRIES: {
|
|
|
848
1020
|
readonly label: "Poland (Polska)";
|
|
849
1021
|
readonly id: "PL";
|
|
850
1022
|
readonly dialCode: "+48";
|
|
1023
|
+
readonly nativeName: "Polska";
|
|
1024
|
+
readonly nativeLang: "pl";
|
|
851
1025
|
};
|
|
852
1026
|
readonly PT: {
|
|
853
1027
|
readonly label: "Portugal";
|
|
@@ -863,21 +1037,29 @@ export declare const COUNTRIES: {
|
|
|
863
1037
|
readonly label: "Qatar (قطر)";
|
|
864
1038
|
readonly id: "QA";
|
|
865
1039
|
readonly dialCode: "+974";
|
|
1040
|
+
readonly nativeName: "قطر";
|
|
1041
|
+
readonly nativeLang: "ar";
|
|
866
1042
|
};
|
|
867
1043
|
readonly RE: {
|
|
868
1044
|
readonly label: "Réunion (La Réunion)";
|
|
869
1045
|
readonly id: "RE";
|
|
870
1046
|
readonly dialCode: "+262";
|
|
1047
|
+
readonly nativeName: "La Réunion";
|
|
1048
|
+
readonly nativeLang: "fr";
|
|
871
1049
|
};
|
|
872
1050
|
readonly RO: {
|
|
873
1051
|
readonly label: "Romania (România)";
|
|
874
1052
|
readonly id: "RO";
|
|
875
1053
|
readonly dialCode: "+40";
|
|
1054
|
+
readonly nativeName: "România";
|
|
1055
|
+
readonly nativeLang: "ro";
|
|
876
1056
|
};
|
|
877
1057
|
readonly RU: {
|
|
878
1058
|
readonly label: "Russia (Россия)";
|
|
879
1059
|
readonly id: "RU";
|
|
880
1060
|
readonly dialCode: "+7";
|
|
1061
|
+
readonly nativeName: "Россия";
|
|
1062
|
+
readonly nativeLang: "ru";
|
|
881
1063
|
};
|
|
882
1064
|
readonly RW: {
|
|
883
1065
|
readonly label: "Rwanda";
|
|
@@ -908,11 +1090,15 @@ export declare const COUNTRIES: {
|
|
|
908
1090
|
readonly label: "Saint Martin (Saint-Martin (partie française))";
|
|
909
1091
|
readonly id: "MF";
|
|
910
1092
|
readonly dialCode: "+590";
|
|
1093
|
+
readonly nativeName: "Saint-Martin (partie française)";
|
|
1094
|
+
readonly nativeLang: "fr";
|
|
911
1095
|
};
|
|
912
1096
|
readonly PM: {
|
|
913
1097
|
readonly label: "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)";
|
|
914
1098
|
readonly id: "PM";
|
|
915
1099
|
readonly dialCode: "+508";
|
|
1100
|
+
readonly nativeName: "Saint-Pierre-et-Miquelon";
|
|
1101
|
+
readonly nativeLang: "fr";
|
|
916
1102
|
};
|
|
917
1103
|
readonly VC: {
|
|
918
1104
|
readonly label: "Saint Vincent and the Grenadines";
|
|
@@ -933,21 +1119,29 @@ export declare const COUNTRIES: {
|
|
|
933
1119
|
readonly label: "São Tomé and Príncipe (São Tomé e Príncipe)";
|
|
934
1120
|
readonly id: "ST";
|
|
935
1121
|
readonly dialCode: "+239";
|
|
1122
|
+
readonly nativeName: "São Tomé e Príncipe";
|
|
1123
|
+
readonly nativeLang: "pt";
|
|
936
1124
|
};
|
|
937
1125
|
readonly SA: {
|
|
938
1126
|
readonly label: "Saudi Arabia (المملكة العربية السعودية)";
|
|
939
1127
|
readonly id: "SA";
|
|
940
1128
|
readonly dialCode: "+966";
|
|
1129
|
+
readonly nativeName: "المملكة العربية السعودية";
|
|
1130
|
+
readonly nativeLang: "ar";
|
|
941
1131
|
};
|
|
942
1132
|
readonly SN: {
|
|
943
1133
|
readonly label: "Senegal (Sénégal)";
|
|
944
1134
|
readonly id: "SN";
|
|
945
1135
|
readonly dialCode: "+221";
|
|
1136
|
+
readonly nativeName: "Sénégal";
|
|
1137
|
+
readonly nativeLang: "fr";
|
|
946
1138
|
};
|
|
947
1139
|
readonly RS: {
|
|
948
1140
|
readonly label: "Serbia (Србија)";
|
|
949
1141
|
readonly id: "RS";
|
|
950
1142
|
readonly dialCode: "+381";
|
|
1143
|
+
readonly nativeName: "Србија";
|
|
1144
|
+
readonly nativeLang: "sr";
|
|
951
1145
|
};
|
|
952
1146
|
readonly SC: {
|
|
953
1147
|
readonly label: "Seychelles";
|
|
@@ -973,11 +1167,15 @@ export declare const COUNTRIES: {
|
|
|
973
1167
|
readonly label: "Slovakia (Slovensko)";
|
|
974
1168
|
readonly id: "SK";
|
|
975
1169
|
readonly dialCode: "+421";
|
|
1170
|
+
readonly nativeName: "Slovensko";
|
|
1171
|
+
readonly nativeLang: "sk";
|
|
976
1172
|
};
|
|
977
1173
|
readonly SI: {
|
|
978
1174
|
readonly label: "Slovenia (Slovenija)";
|
|
979
1175
|
readonly id: "SI";
|
|
980
1176
|
readonly dialCode: "+386";
|
|
1177
|
+
readonly nativeName: "Slovenija";
|
|
1178
|
+
readonly nativeLang: "sl";
|
|
981
1179
|
};
|
|
982
1180
|
readonly SB: {
|
|
983
1181
|
readonly label: "Solomon Islands";
|
|
@@ -988,6 +1186,8 @@ export declare const COUNTRIES: {
|
|
|
988
1186
|
readonly label: "Somalia (Soomaaliya)";
|
|
989
1187
|
readonly id: "SO";
|
|
990
1188
|
readonly dialCode: "+252";
|
|
1189
|
+
readonly nativeName: "Soomaaliya";
|
|
1190
|
+
readonly nativeLang: "so";
|
|
991
1191
|
};
|
|
992
1192
|
readonly ZA: {
|
|
993
1193
|
readonly label: "South Africa";
|
|
@@ -998,26 +1198,36 @@ export declare const COUNTRIES: {
|
|
|
998
1198
|
readonly label: "South Korea (대한민국)";
|
|
999
1199
|
readonly id: "KR";
|
|
1000
1200
|
readonly dialCode: "+82";
|
|
1201
|
+
readonly nativeName: "대한민국";
|
|
1202
|
+
readonly nativeLang: "ko";
|
|
1001
1203
|
};
|
|
1002
1204
|
readonly SS: {
|
|
1003
1205
|
readonly label: "South Sudan (جنوب السودان)";
|
|
1004
1206
|
readonly id: "SS";
|
|
1005
1207
|
readonly dialCode: "+211";
|
|
1208
|
+
readonly nativeName: "جنوب السودان";
|
|
1209
|
+
readonly nativeLang: "ar";
|
|
1006
1210
|
};
|
|
1007
1211
|
readonly ES: {
|
|
1008
1212
|
readonly label: "Spain (España)";
|
|
1009
1213
|
readonly id: "ES";
|
|
1010
1214
|
readonly dialCode: "+34";
|
|
1215
|
+
readonly nativeName: "España";
|
|
1216
|
+
readonly nativeLang: "es";
|
|
1011
1217
|
};
|
|
1012
1218
|
readonly LK: {
|
|
1013
1219
|
readonly label: "Sri Lanka (ශ්රී ලංකාව)";
|
|
1014
1220
|
readonly id: "LK";
|
|
1015
1221
|
readonly dialCode: "+94";
|
|
1222
|
+
readonly nativeName: "ශ්රී ලංකාව";
|
|
1223
|
+
readonly nativeLang: "si";
|
|
1016
1224
|
};
|
|
1017
1225
|
readonly SD: {
|
|
1018
1226
|
readonly label: "Sudan (السودان)";
|
|
1019
1227
|
readonly id: "SD";
|
|
1020
1228
|
readonly dialCode: "+249";
|
|
1229
|
+
readonly nativeName: "السودان";
|
|
1230
|
+
readonly nativeLang: "ar";
|
|
1021
1231
|
};
|
|
1022
1232
|
readonly SR: {
|
|
1023
1233
|
readonly label: "Suriname";
|
|
@@ -1038,21 +1248,29 @@ export declare const COUNTRIES: {
|
|
|
1038
1248
|
readonly label: "Sweden (Sverige)";
|
|
1039
1249
|
readonly id: "SE";
|
|
1040
1250
|
readonly dialCode: "+46";
|
|
1251
|
+
readonly nativeName: "Sverige";
|
|
1252
|
+
readonly nativeLang: "sv";
|
|
1041
1253
|
};
|
|
1042
1254
|
readonly CH: {
|
|
1043
1255
|
readonly label: "Switzerland (Schweiz)";
|
|
1044
1256
|
readonly id: "CH";
|
|
1045
1257
|
readonly dialCode: "+41";
|
|
1258
|
+
readonly nativeName: "Schweiz";
|
|
1259
|
+
readonly nativeLang: "de";
|
|
1046
1260
|
};
|
|
1047
1261
|
readonly SY: {
|
|
1048
1262
|
readonly label: "Syria (سوريا)";
|
|
1049
1263
|
readonly id: "SY";
|
|
1050
1264
|
readonly dialCode: "+963";
|
|
1265
|
+
readonly nativeName: "سوريا";
|
|
1266
|
+
readonly nativeLang: "ar";
|
|
1051
1267
|
};
|
|
1052
1268
|
readonly TW: {
|
|
1053
1269
|
readonly label: "Taiwan (台灣)";
|
|
1054
1270
|
readonly id: "TW";
|
|
1055
1271
|
readonly dialCode: "+886";
|
|
1272
|
+
readonly nativeName: "台灣";
|
|
1273
|
+
readonly nativeLang: "zh-Hant";
|
|
1056
1274
|
};
|
|
1057
1275
|
readonly TJ: {
|
|
1058
1276
|
readonly label: "Tajikistan";
|
|
@@ -1068,6 +1286,8 @@ export declare const COUNTRIES: {
|
|
|
1068
1286
|
readonly label: "Thailand (ไทย)";
|
|
1069
1287
|
readonly id: "TH";
|
|
1070
1288
|
readonly dialCode: "+66";
|
|
1289
|
+
readonly nativeName: "ไทย";
|
|
1290
|
+
readonly nativeLang: "th";
|
|
1071
1291
|
};
|
|
1072
1292
|
readonly TL: {
|
|
1073
1293
|
readonly label: "Timor-Leste";
|
|
@@ -1098,11 +1318,15 @@ export declare const COUNTRIES: {
|
|
|
1098
1318
|
readonly label: "Tunisia (تونس)";
|
|
1099
1319
|
readonly id: "TN";
|
|
1100
1320
|
readonly dialCode: "+216";
|
|
1321
|
+
readonly nativeName: "تونس";
|
|
1322
|
+
readonly nativeLang: "ar";
|
|
1101
1323
|
};
|
|
1102
1324
|
readonly TR: {
|
|
1103
1325
|
readonly label: "Turkey (Türkiye)";
|
|
1104
1326
|
readonly id: "TR";
|
|
1105
1327
|
readonly dialCode: "+90";
|
|
1328
|
+
readonly nativeName: "Türkiye";
|
|
1329
|
+
readonly nativeLang: "tr";
|
|
1106
1330
|
};
|
|
1107
1331
|
readonly TM: {
|
|
1108
1332
|
readonly label: "Turkmenistan";
|
|
@@ -1133,11 +1357,15 @@ export declare const COUNTRIES: {
|
|
|
1133
1357
|
readonly label: "Ukraine (Україна)";
|
|
1134
1358
|
readonly id: "UA";
|
|
1135
1359
|
readonly dialCode: "+380";
|
|
1360
|
+
readonly nativeName: "Україна";
|
|
1361
|
+
readonly nativeLang: "uk";
|
|
1136
1362
|
};
|
|
1137
1363
|
readonly AE: {
|
|
1138
1364
|
readonly label: "United Arab Emirates (الإمارات العربية المتحدة)";
|
|
1139
1365
|
readonly id: "AE";
|
|
1140
1366
|
readonly dialCode: "+971";
|
|
1367
|
+
readonly nativeName: "الإمارات العربية المتحدة";
|
|
1368
|
+
readonly nativeLang: "ar";
|
|
1141
1369
|
};
|
|
1142
1370
|
readonly GB: {
|
|
1143
1371
|
readonly label: "United Kingdom";
|
|
@@ -1158,6 +1386,8 @@ export declare const COUNTRIES: {
|
|
|
1158
1386
|
readonly label: "Uzbekistan (Oʻzbekiston)";
|
|
1159
1387
|
readonly id: "UZ";
|
|
1160
1388
|
readonly dialCode: "+998";
|
|
1389
|
+
readonly nativeName: "Oʻzbekiston";
|
|
1390
|
+
readonly nativeLang: "uz";
|
|
1161
1391
|
};
|
|
1162
1392
|
readonly VU: {
|
|
1163
1393
|
readonly label: "Vanuatu";
|
|
@@ -1168,6 +1398,8 @@ export declare const COUNTRIES: {
|
|
|
1168
1398
|
readonly label: "Vatican City (Città del Vaticano)";
|
|
1169
1399
|
readonly id: "VA";
|
|
1170
1400
|
readonly dialCode: "+39";
|
|
1401
|
+
readonly nativeName: "Città del Vaticano";
|
|
1402
|
+
readonly nativeLang: "it";
|
|
1171
1403
|
};
|
|
1172
1404
|
readonly VE: {
|
|
1173
1405
|
readonly label: "Venezuela";
|
|
@@ -1178,16 +1410,22 @@ export declare const COUNTRIES: {
|
|
|
1178
1410
|
readonly label: "Vietnam (Việt Nam)";
|
|
1179
1411
|
readonly id: "VN";
|
|
1180
1412
|
readonly dialCode: "+84";
|
|
1413
|
+
readonly nativeName: "Việt Nam";
|
|
1414
|
+
readonly nativeLang: "vi";
|
|
1181
1415
|
};
|
|
1182
1416
|
readonly WF: {
|
|
1183
1417
|
readonly label: "Wallis and Futuna (Wallis-et-Futuna)";
|
|
1184
1418
|
readonly id: "WF";
|
|
1185
1419
|
readonly dialCode: "+681";
|
|
1420
|
+
readonly nativeName: "Wallis-et-Futuna";
|
|
1421
|
+
readonly nativeLang: "fr";
|
|
1186
1422
|
};
|
|
1187
1423
|
readonly YE: {
|
|
1188
1424
|
readonly label: "Yemen (اليمن)";
|
|
1189
1425
|
readonly id: "YE";
|
|
1190
1426
|
readonly dialCode: "+967";
|
|
1427
|
+
readonly nativeName: "اليمن";
|
|
1428
|
+
readonly nativeLang: "ar";
|
|
1191
1429
|
};
|
|
1192
1430
|
readonly ZM: {
|
|
1193
1431
|
readonly label: "Zambia";
|
|
@@ -1274,14 +1512,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1274
1512
|
readonly label: "Afghanistan (افغانستان)";
|
|
1275
1513
|
readonly id: "AF";
|
|
1276
1514
|
readonly dialCode: "+93";
|
|
1515
|
+
readonly nativeName: "افغانستان";
|
|
1516
|
+
readonly nativeLang: "ps";
|
|
1277
1517
|
} | {
|
|
1278
1518
|
readonly label: "Albania (Shqipëri)";
|
|
1279
1519
|
readonly id: "AL";
|
|
1280
1520
|
readonly dialCode: "+355";
|
|
1521
|
+
readonly nativeName: "Shqipëri";
|
|
1522
|
+
readonly nativeLang: "sq";
|
|
1281
1523
|
} | {
|
|
1282
1524
|
readonly label: "Algeria (الجزائر)";
|
|
1283
1525
|
readonly id: "DZ";
|
|
1284
1526
|
readonly dialCode: "+213";
|
|
1527
|
+
readonly nativeName: "الجزائر";
|
|
1528
|
+
readonly nativeLang: "ar";
|
|
1285
1529
|
} | {
|
|
1286
1530
|
readonly label: "American Samoa";
|
|
1287
1531
|
readonly id: "AS";
|
|
@@ -1310,6 +1554,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1310
1554
|
readonly label: "Armenia (Հայաստան)";
|
|
1311
1555
|
readonly id: "AM";
|
|
1312
1556
|
readonly dialCode: "+374";
|
|
1557
|
+
readonly nativeName: "Հայաստան";
|
|
1558
|
+
readonly nativeLang: "hy";
|
|
1313
1559
|
} | {
|
|
1314
1560
|
readonly label: "Aruba";
|
|
1315
1561
|
readonly id: "AW";
|
|
@@ -1322,10 +1568,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1322
1568
|
readonly label: "Austria (Österreich)";
|
|
1323
1569
|
readonly id: "AT";
|
|
1324
1570
|
readonly dialCode: "+43";
|
|
1571
|
+
readonly nativeName: "Österreich";
|
|
1572
|
+
readonly nativeLang: "de";
|
|
1325
1573
|
} | {
|
|
1326
1574
|
readonly label: "Azerbaijan (Azərbaycan)";
|
|
1327
1575
|
readonly id: "AZ";
|
|
1328
1576
|
readonly dialCode: "+994";
|
|
1577
|
+
readonly nativeName: "Azərbaycan";
|
|
1578
|
+
readonly nativeLang: "az";
|
|
1329
1579
|
} | {
|
|
1330
1580
|
readonly label: "Bahamas";
|
|
1331
1581
|
readonly id: "BS";
|
|
@@ -1334,10 +1584,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1334
1584
|
readonly label: "Bahrain (البحرين)";
|
|
1335
1585
|
readonly id: "BH";
|
|
1336
1586
|
readonly dialCode: "+973";
|
|
1587
|
+
readonly nativeName: "البحرين";
|
|
1588
|
+
readonly nativeLang: "ar";
|
|
1337
1589
|
} | {
|
|
1338
1590
|
readonly label: "Bangladesh (বাংলাদেশ)";
|
|
1339
1591
|
readonly id: "BD";
|
|
1340
1592
|
readonly dialCode: "+880";
|
|
1593
|
+
readonly nativeName: "বাংলাদেশ";
|
|
1594
|
+
readonly nativeLang: "bn";
|
|
1341
1595
|
} | {
|
|
1342
1596
|
readonly label: "Barbados";
|
|
1343
1597
|
readonly id: "BB";
|
|
@@ -1346,10 +1600,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1346
1600
|
readonly label: "Belarus (Беларусь)";
|
|
1347
1601
|
readonly id: "BY";
|
|
1348
1602
|
readonly dialCode: "+375";
|
|
1603
|
+
readonly nativeName: "Беларусь";
|
|
1604
|
+
readonly nativeLang: "be";
|
|
1349
1605
|
} | {
|
|
1350
1606
|
readonly label: "Belgium (België)";
|
|
1351
1607
|
readonly id: "BE";
|
|
1352
1608
|
readonly dialCode: "+32";
|
|
1609
|
+
readonly nativeName: "België";
|
|
1610
|
+
readonly nativeLang: "nl";
|
|
1353
1611
|
} | {
|
|
1354
1612
|
readonly label: "Belize";
|
|
1355
1613
|
readonly id: "BZ";
|
|
@@ -1358,6 +1616,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1358
1616
|
readonly label: "Benin (Bénin)";
|
|
1359
1617
|
readonly id: "BJ";
|
|
1360
1618
|
readonly dialCode: "+229";
|
|
1619
|
+
readonly nativeName: "Bénin";
|
|
1620
|
+
readonly nativeLang: "fr";
|
|
1361
1621
|
} | {
|
|
1362
1622
|
readonly label: "Bermuda";
|
|
1363
1623
|
readonly id: "BM";
|
|
@@ -1366,6 +1626,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1366
1626
|
readonly label: "Bhutan (འབྲུག)";
|
|
1367
1627
|
readonly id: "BT";
|
|
1368
1628
|
readonly dialCode: "+975";
|
|
1629
|
+
readonly nativeName: "འབྲུག";
|
|
1630
|
+
readonly nativeLang: "dz";
|
|
1369
1631
|
} | {
|
|
1370
1632
|
readonly label: "Bolivia";
|
|
1371
1633
|
readonly id: "BO";
|
|
@@ -1374,6 +1636,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1374
1636
|
readonly label: "Bosnia and Herzegovina (Босна и Херцеговина)";
|
|
1375
1637
|
readonly id: "BA";
|
|
1376
1638
|
readonly dialCode: "+387";
|
|
1639
|
+
readonly nativeName: "Босна и Херцеговина";
|
|
1640
|
+
readonly nativeLang: "sr";
|
|
1377
1641
|
} | {
|
|
1378
1642
|
readonly label: "Botswana";
|
|
1379
1643
|
readonly id: "BW";
|
|
@@ -1382,6 +1646,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1382
1646
|
readonly label: "Brazil (Brasil)";
|
|
1383
1647
|
readonly id: "BR";
|
|
1384
1648
|
readonly dialCode: "+55";
|
|
1649
|
+
readonly nativeName: "Brasil";
|
|
1650
|
+
readonly nativeLang: "pt";
|
|
1385
1651
|
} | {
|
|
1386
1652
|
readonly label: "British Indian Ocean Territory";
|
|
1387
1653
|
readonly id: "IO";
|
|
@@ -1398,6 +1664,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1398
1664
|
readonly label: "Bulgaria (България)";
|
|
1399
1665
|
readonly id: "BG";
|
|
1400
1666
|
readonly dialCode: "+359";
|
|
1667
|
+
readonly nativeName: "България";
|
|
1668
|
+
readonly nativeLang: "bg";
|
|
1401
1669
|
} | {
|
|
1402
1670
|
readonly label: "Burkina Faso";
|
|
1403
1671
|
readonly id: "BF";
|
|
@@ -1406,14 +1674,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1406
1674
|
readonly label: "Burundi (Uburundi)";
|
|
1407
1675
|
readonly id: "BI";
|
|
1408
1676
|
readonly dialCode: "+257";
|
|
1677
|
+
readonly nativeName: "Uburundi";
|
|
1678
|
+
readonly nativeLang: "rn";
|
|
1409
1679
|
} | {
|
|
1410
1680
|
readonly label: "Cambodia (កម្ពុជា)";
|
|
1411
1681
|
readonly id: "KH";
|
|
1412
1682
|
readonly dialCode: "+855";
|
|
1683
|
+
readonly nativeName: "កម្ពុជា";
|
|
1684
|
+
readonly nativeLang: "km";
|
|
1413
1685
|
} | {
|
|
1414
1686
|
readonly label: "Cameroon (Cameroun)";
|
|
1415
1687
|
readonly id: "CM";
|
|
1416
1688
|
readonly dialCode: "+237";
|
|
1689
|
+
readonly nativeName: "Cameroun";
|
|
1690
|
+
readonly nativeLang: "fr";
|
|
1417
1691
|
} | {
|
|
1418
1692
|
readonly label: "Canada";
|
|
1419
1693
|
readonly id: "CA";
|
|
@@ -1422,6 +1696,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1422
1696
|
readonly label: "Cape Verde (Kabu Verdi)";
|
|
1423
1697
|
readonly id: "CV";
|
|
1424
1698
|
readonly dialCode: "+238";
|
|
1699
|
+
readonly nativeName: "Kabu Verdi";
|
|
1700
|
+
readonly nativeLang: "kea";
|
|
1425
1701
|
} | {
|
|
1426
1702
|
readonly label: "Cayman Islands";
|
|
1427
1703
|
readonly id: "KY";
|
|
@@ -1430,10 +1706,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1430
1706
|
readonly label: "Central African Republic (République centrafricaine)";
|
|
1431
1707
|
readonly id: "CF";
|
|
1432
1708
|
readonly dialCode: "+236";
|
|
1709
|
+
readonly nativeName: "République centrafricaine";
|
|
1710
|
+
readonly nativeLang: "fr";
|
|
1433
1711
|
} | {
|
|
1434
1712
|
readonly label: "Chad (Tchad)";
|
|
1435
1713
|
readonly id: "TD";
|
|
1436
1714
|
readonly dialCode: "+235";
|
|
1715
|
+
readonly nativeName: "Tchad";
|
|
1716
|
+
readonly nativeLang: "fr";
|
|
1437
1717
|
} | {
|
|
1438
1718
|
readonly label: "Chile";
|
|
1439
1719
|
readonly id: "CL";
|
|
@@ -1442,6 +1722,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1442
1722
|
readonly label: "China (中国)";
|
|
1443
1723
|
readonly id: "CN";
|
|
1444
1724
|
readonly dialCode: "+86";
|
|
1725
|
+
readonly nativeName: "中国";
|
|
1726
|
+
readonly nativeLang: "zh-Hans";
|
|
1445
1727
|
} | {
|
|
1446
1728
|
readonly label: "Christmas Island";
|
|
1447
1729
|
readonly id: "CX";
|
|
@@ -1458,10 +1740,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1458
1740
|
readonly label: "Comoros (جزر القمر)";
|
|
1459
1741
|
readonly id: "KM";
|
|
1460
1742
|
readonly dialCode: "+269";
|
|
1743
|
+
readonly nativeName: "جزر القمر";
|
|
1744
|
+
readonly nativeLang: "ar";
|
|
1461
1745
|
} | {
|
|
1462
1746
|
readonly label: "Congo (DRC) (Jamhuri ya Kisoemokrasia ya Kongo)";
|
|
1463
1747
|
readonly id: "CD";
|
|
1464
1748
|
readonly dialCode: "+243";
|
|
1749
|
+
readonly nativeName: "Jamhuri ya Kisoemokrasia ya Kongo";
|
|
1750
|
+
readonly nativeLang: "sw";
|
|
1465
1751
|
} | {
|
|
1466
1752
|
readonly label: "Congo (Republic) (Congo-Brazzaville)";
|
|
1467
1753
|
readonly id: "CG";
|
|
@@ -1482,6 +1768,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1482
1768
|
readonly label: "Croatia (Hrvatska)";
|
|
1483
1769
|
readonly id: "HR";
|
|
1484
1770
|
readonly dialCode: "+385";
|
|
1771
|
+
readonly nativeName: "Hrvatska";
|
|
1772
|
+
readonly nativeLang: "hr";
|
|
1485
1773
|
} | {
|
|
1486
1774
|
readonly label: "Cuba";
|
|
1487
1775
|
readonly id: "CU";
|
|
@@ -1494,14 +1782,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1494
1782
|
readonly label: "Cyprus (Κύπρος)";
|
|
1495
1783
|
readonly id: "CY";
|
|
1496
1784
|
readonly dialCode: "+357";
|
|
1785
|
+
readonly nativeName: "Κύπρος";
|
|
1786
|
+
readonly nativeLang: "el";
|
|
1497
1787
|
} | {
|
|
1498
1788
|
readonly label: "Czech Republic (Česká republika)";
|
|
1499
1789
|
readonly id: "CZ";
|
|
1500
1790
|
readonly dialCode: "+420";
|
|
1791
|
+
readonly nativeName: "Česká republika";
|
|
1792
|
+
readonly nativeLang: "cs";
|
|
1501
1793
|
} | {
|
|
1502
1794
|
readonly label: "Denmark (Danmark)";
|
|
1503
1795
|
readonly id: "DK";
|
|
1504
1796
|
readonly dialCode: "+45";
|
|
1797
|
+
readonly nativeName: "Danmark";
|
|
1798
|
+
readonly nativeLang: "da";
|
|
1505
1799
|
} | {
|
|
1506
1800
|
readonly label: "Djibouti";
|
|
1507
1801
|
readonly id: "DJ";
|
|
@@ -1514,6 +1808,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1514
1808
|
readonly label: "Dominican Republic (República Dominicana)";
|
|
1515
1809
|
readonly id: "DO";
|
|
1516
1810
|
readonly dialCode: "+1";
|
|
1811
|
+
readonly nativeName: "República Dominicana";
|
|
1812
|
+
readonly nativeLang: "es";
|
|
1517
1813
|
} | {
|
|
1518
1814
|
readonly label: "Ecuador";
|
|
1519
1815
|
readonly id: "EC";
|
|
@@ -1522,6 +1818,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1522
1818
|
readonly label: "Egypt (مصر)";
|
|
1523
1819
|
readonly id: "EG";
|
|
1524
1820
|
readonly dialCode: "+20";
|
|
1821
|
+
readonly nativeName: "مصر";
|
|
1822
|
+
readonly nativeLang: "ar";
|
|
1525
1823
|
} | {
|
|
1526
1824
|
readonly label: "El Salvador";
|
|
1527
1825
|
readonly id: "SV";
|
|
@@ -1530,6 +1828,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1530
1828
|
readonly label: "Equatorial Guinea (Guinea Ecuatorial)";
|
|
1531
1829
|
readonly id: "GQ";
|
|
1532
1830
|
readonly dialCode: "+240";
|
|
1831
|
+
readonly nativeName: "Guinea Ecuatorial";
|
|
1832
|
+
readonly nativeLang: "es";
|
|
1533
1833
|
} | {
|
|
1534
1834
|
readonly label: "Eritrea";
|
|
1535
1835
|
readonly id: "ER";
|
|
@@ -1538,6 +1838,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1538
1838
|
readonly label: "Estonia (Eesti)";
|
|
1539
1839
|
readonly id: "EE";
|
|
1540
1840
|
readonly dialCode: "+372";
|
|
1841
|
+
readonly nativeName: "Eesti";
|
|
1842
|
+
readonly nativeLang: "et";
|
|
1541
1843
|
} | {
|
|
1542
1844
|
readonly label: "Ethiopia";
|
|
1543
1845
|
readonly id: "ET";
|
|
@@ -1546,10 +1848,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1546
1848
|
readonly label: "Falkland Islands (Islas Malvinas)";
|
|
1547
1849
|
readonly id: "FK";
|
|
1548
1850
|
readonly dialCode: "+500";
|
|
1851
|
+
readonly nativeName: "Islas Malvinas";
|
|
1852
|
+
readonly nativeLang: "es";
|
|
1549
1853
|
} | {
|
|
1550
1854
|
readonly label: "Faroe Islands (Føroyar)";
|
|
1551
1855
|
readonly id: "FO";
|
|
1552
1856
|
readonly dialCode: "+298";
|
|
1857
|
+
readonly nativeName: "Føroyar";
|
|
1858
|
+
readonly nativeLang: "fo";
|
|
1553
1859
|
} | {
|
|
1554
1860
|
readonly label: "Fiji";
|
|
1555
1861
|
readonly id: "FJ";
|
|
@@ -1558,6 +1864,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1558
1864
|
readonly label: "Finland (Suomi)";
|
|
1559
1865
|
readonly id: "FI";
|
|
1560
1866
|
readonly dialCode: "+358";
|
|
1867
|
+
readonly nativeName: "Suomi";
|
|
1868
|
+
readonly nativeLang: "fi";
|
|
1561
1869
|
} | {
|
|
1562
1870
|
readonly label: "France";
|
|
1563
1871
|
readonly id: "FR";
|
|
@@ -1566,10 +1874,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1566
1874
|
readonly label: "French Guiana (Guyane française)";
|
|
1567
1875
|
readonly id: "GF";
|
|
1568
1876
|
readonly dialCode: "+594";
|
|
1877
|
+
readonly nativeName: "Guyane française";
|
|
1878
|
+
readonly nativeLang: "fr";
|
|
1569
1879
|
} | {
|
|
1570
1880
|
readonly label: "French Polynesia (Polynésie française)";
|
|
1571
1881
|
readonly id: "PF";
|
|
1572
1882
|
readonly dialCode: "+689";
|
|
1883
|
+
readonly nativeName: "Polynésie française";
|
|
1884
|
+
readonly nativeLang: "fr";
|
|
1573
1885
|
} | {
|
|
1574
1886
|
readonly label: "Gabon";
|
|
1575
1887
|
readonly id: "GA";
|
|
@@ -1582,14 +1894,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1582
1894
|
readonly label: "Georgia (საქართველო)";
|
|
1583
1895
|
readonly id: "GE";
|
|
1584
1896
|
readonly dialCode: "+995";
|
|
1897
|
+
readonly nativeName: "საქართველო";
|
|
1898
|
+
readonly nativeLang: "ka";
|
|
1585
1899
|
} | {
|
|
1586
1900
|
readonly label: "Germany (Deutschland)";
|
|
1587
1901
|
readonly id: "DE";
|
|
1588
1902
|
readonly dialCode: "+49";
|
|
1903
|
+
readonly nativeName: "Deutschland";
|
|
1904
|
+
readonly nativeLang: "de";
|
|
1589
1905
|
} | {
|
|
1590
1906
|
readonly label: "Ghana (Gaana)";
|
|
1591
1907
|
readonly id: "GH";
|
|
1592
1908
|
readonly dialCode: "+233";
|
|
1909
|
+
readonly nativeName: "Gaana";
|
|
1910
|
+
readonly nativeLang: "ak";
|
|
1593
1911
|
} | {
|
|
1594
1912
|
readonly label: "Gibraltar";
|
|
1595
1913
|
readonly id: "GI";
|
|
@@ -1598,10 +1916,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1598
1916
|
readonly label: "Greece (Ελλάδα)";
|
|
1599
1917
|
readonly id: "GR";
|
|
1600
1918
|
readonly dialCode: "+30";
|
|
1919
|
+
readonly nativeName: "Ελλάδα";
|
|
1920
|
+
readonly nativeLang: "el";
|
|
1601
1921
|
} | {
|
|
1602
1922
|
readonly label: "Greenland (Kalaallit Nunaat)";
|
|
1603
1923
|
readonly id: "GL";
|
|
1604
1924
|
readonly dialCode: "+299";
|
|
1925
|
+
readonly nativeName: "Kalaallit Nunaat";
|
|
1926
|
+
readonly nativeLang: "kl";
|
|
1605
1927
|
} | {
|
|
1606
1928
|
readonly label: "Grenada";
|
|
1607
1929
|
readonly id: "GD";
|
|
@@ -1626,10 +1948,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1626
1948
|
readonly label: "Guinea (Guinée)";
|
|
1627
1949
|
readonly id: "GN";
|
|
1628
1950
|
readonly dialCode: "+224";
|
|
1951
|
+
readonly nativeName: "Guinée";
|
|
1952
|
+
readonly nativeLang: "fr";
|
|
1629
1953
|
} | {
|
|
1630
1954
|
readonly label: "Guinea-Bissau (Guiné Bissau)";
|
|
1631
1955
|
readonly id: "GW";
|
|
1632
1956
|
readonly dialCode: "+245";
|
|
1957
|
+
readonly nativeName: "Guiné Bissau";
|
|
1958
|
+
readonly nativeLang: "pt";
|
|
1633
1959
|
} | {
|
|
1634
1960
|
readonly label: "Guyana";
|
|
1635
1961
|
readonly id: "GY";
|
|
@@ -1646,18 +1972,26 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1646
1972
|
readonly label: "Hong Kong (香港)";
|
|
1647
1973
|
readonly id: "HK";
|
|
1648
1974
|
readonly dialCode: "+852";
|
|
1975
|
+
readonly nativeName: "香港";
|
|
1976
|
+
readonly nativeLang: "zh-Hant";
|
|
1649
1977
|
} | {
|
|
1650
1978
|
readonly label: "Hungary (Magyarország)";
|
|
1651
1979
|
readonly id: "HU";
|
|
1652
1980
|
readonly dialCode: "+36";
|
|
1981
|
+
readonly nativeName: "Magyarország";
|
|
1982
|
+
readonly nativeLang: "hu";
|
|
1653
1983
|
} | {
|
|
1654
1984
|
readonly label: "Iceland (Ísland)";
|
|
1655
1985
|
readonly id: "IS";
|
|
1656
1986
|
readonly dialCode: "+354";
|
|
1987
|
+
readonly nativeName: "Ísland";
|
|
1988
|
+
readonly nativeLang: "is";
|
|
1657
1989
|
} | {
|
|
1658
1990
|
readonly label: "India (भारत)";
|
|
1659
1991
|
readonly id: "IN";
|
|
1660
1992
|
readonly dialCode: "+91";
|
|
1993
|
+
readonly nativeName: "भारत";
|
|
1994
|
+
readonly nativeLang: "hi";
|
|
1661
1995
|
} | {
|
|
1662
1996
|
readonly label: "Indonesia";
|
|
1663
1997
|
readonly id: "ID";
|
|
@@ -1666,10 +2000,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1666
2000
|
readonly label: "Iran (ایران)";
|
|
1667
2001
|
readonly id: "IR";
|
|
1668
2002
|
readonly dialCode: "+98";
|
|
2003
|
+
readonly nativeName: "ایران";
|
|
2004
|
+
readonly nativeLang: "fa";
|
|
1669
2005
|
} | {
|
|
1670
2006
|
readonly label: "Iraq (العراق)";
|
|
1671
2007
|
readonly id: "IQ";
|
|
1672
2008
|
readonly dialCode: "+964";
|
|
2009
|
+
readonly nativeName: "العراق";
|
|
2010
|
+
readonly nativeLang: "ar";
|
|
1673
2011
|
} | {
|
|
1674
2012
|
readonly label: "Ireland";
|
|
1675
2013
|
readonly id: "IE";
|
|
@@ -1682,10 +2020,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1682
2020
|
readonly label: "Israel (ישראל)";
|
|
1683
2021
|
readonly id: "IL";
|
|
1684
2022
|
readonly dialCode: "+972";
|
|
2023
|
+
readonly nativeName: "ישראל";
|
|
2024
|
+
readonly nativeLang: "he";
|
|
1685
2025
|
} | {
|
|
1686
2026
|
readonly label: "Italy (Italia)";
|
|
1687
2027
|
readonly id: "IT";
|
|
1688
2028
|
readonly dialCode: "+39";
|
|
2029
|
+
readonly nativeName: "Italia";
|
|
2030
|
+
readonly nativeLang: "it";
|
|
1689
2031
|
} | {
|
|
1690
2032
|
readonly label: "Jamaica";
|
|
1691
2033
|
readonly id: "JM";
|
|
@@ -1694,6 +2036,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1694
2036
|
readonly label: "Japan (日本)";
|
|
1695
2037
|
readonly id: "JP";
|
|
1696
2038
|
readonly dialCode: "+81";
|
|
2039
|
+
readonly nativeName: "日本";
|
|
2040
|
+
readonly nativeLang: "ja";
|
|
1697
2041
|
} | {
|
|
1698
2042
|
readonly label: "Jersey";
|
|
1699
2043
|
readonly id: "JE";
|
|
@@ -1702,10 +2046,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1702
2046
|
readonly label: "Jordan (الأردن)";
|
|
1703
2047
|
readonly id: "JO";
|
|
1704
2048
|
readonly dialCode: "+962";
|
|
2049
|
+
readonly nativeName: "الأردن";
|
|
2050
|
+
readonly nativeLang: "ar";
|
|
1705
2051
|
} | {
|
|
1706
2052
|
readonly label: "Kazakhstan (Казахстан)";
|
|
1707
2053
|
readonly id: "KZ";
|
|
1708
2054
|
readonly dialCode: "+7";
|
|
2055
|
+
readonly nativeName: "Казахстан";
|
|
2056
|
+
readonly nativeLang: "kk";
|
|
1709
2057
|
} | {
|
|
1710
2058
|
readonly label: "Kenya";
|
|
1711
2059
|
readonly id: "KE";
|
|
@@ -1722,22 +2070,32 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1722
2070
|
readonly label: "Kuwait (الكويت)";
|
|
1723
2071
|
readonly id: "KW";
|
|
1724
2072
|
readonly dialCode: "+965";
|
|
2073
|
+
readonly nativeName: "الكويت";
|
|
2074
|
+
readonly nativeLang: "ar";
|
|
1725
2075
|
} | {
|
|
1726
2076
|
readonly label: "Kyrgyzstan (Кыргызстан)";
|
|
1727
2077
|
readonly id: "KG";
|
|
1728
2078
|
readonly dialCode: "+996";
|
|
2079
|
+
readonly nativeName: "Кыргызстан";
|
|
2080
|
+
readonly nativeLang: "ky";
|
|
1729
2081
|
} | {
|
|
1730
2082
|
readonly label: "Laos (ລາວ)";
|
|
1731
2083
|
readonly id: "LA";
|
|
1732
2084
|
readonly dialCode: "+856";
|
|
2085
|
+
readonly nativeName: "ລາວ";
|
|
2086
|
+
readonly nativeLang: "lo";
|
|
1733
2087
|
} | {
|
|
1734
2088
|
readonly label: "Latvia (Latvija)";
|
|
1735
2089
|
readonly id: "LV";
|
|
1736
2090
|
readonly dialCode: "+371";
|
|
2091
|
+
readonly nativeName: "Latvija";
|
|
2092
|
+
readonly nativeLang: "lv";
|
|
1737
2093
|
} | {
|
|
1738
2094
|
readonly label: "Lebanon (لبنان)";
|
|
1739
2095
|
readonly id: "LB";
|
|
1740
2096
|
readonly dialCode: "+961";
|
|
2097
|
+
readonly nativeName: "لبنان";
|
|
2098
|
+
readonly nativeLang: "ar";
|
|
1741
2099
|
} | {
|
|
1742
2100
|
readonly label: "Lesotho";
|
|
1743
2101
|
readonly id: "LS";
|
|
@@ -1750,6 +2108,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1750
2108
|
readonly label: "Libya (ليبيا)";
|
|
1751
2109
|
readonly id: "LY";
|
|
1752
2110
|
readonly dialCode: "+218";
|
|
2111
|
+
readonly nativeName: "ليبيا";
|
|
2112
|
+
readonly nativeLang: "ar";
|
|
1753
2113
|
} | {
|
|
1754
2114
|
readonly label: "Liechtenstein";
|
|
1755
2115
|
readonly id: "LI";
|
|
@@ -1758,6 +2118,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1758
2118
|
readonly label: "Lithuania (Lietuva)";
|
|
1759
2119
|
readonly id: "LT";
|
|
1760
2120
|
readonly dialCode: "+370";
|
|
2121
|
+
readonly nativeName: "Lietuva";
|
|
2122
|
+
readonly nativeLang: "lt";
|
|
1761
2123
|
} | {
|
|
1762
2124
|
readonly label: "Luxembourg";
|
|
1763
2125
|
readonly id: "LU";
|
|
@@ -1766,14 +2128,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1766
2128
|
readonly label: "Macau (澳門)";
|
|
1767
2129
|
readonly id: "MO";
|
|
1768
2130
|
readonly dialCode: "+853";
|
|
2131
|
+
readonly nativeName: "澳門";
|
|
2132
|
+
readonly nativeLang: "zh-Hant";
|
|
1769
2133
|
} | {
|
|
1770
2134
|
readonly label: "North Macedonia (FYROM) (Македонија)";
|
|
1771
2135
|
readonly id: "MK";
|
|
1772
2136
|
readonly dialCode: "+389";
|
|
2137
|
+
readonly nativeName: "Македонија";
|
|
2138
|
+
readonly nativeLang: "mk";
|
|
1773
2139
|
} | {
|
|
1774
2140
|
readonly label: "Madagascar (Madagasikara)";
|
|
1775
2141
|
readonly id: "MG";
|
|
1776
2142
|
readonly dialCode: "+261";
|
|
2143
|
+
readonly nativeName: "Madagasikara";
|
|
2144
|
+
readonly nativeLang: "mg";
|
|
1777
2145
|
} | {
|
|
1778
2146
|
readonly label: "Malawi";
|
|
1779
2147
|
readonly id: "MW";
|
|
@@ -1806,10 +2174,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1806
2174
|
readonly label: "Mauritania (موريتانيا)";
|
|
1807
2175
|
readonly id: "MR";
|
|
1808
2176
|
readonly dialCode: "+222";
|
|
2177
|
+
readonly nativeName: "موريتانيا";
|
|
2178
|
+
readonly nativeLang: "ar";
|
|
1809
2179
|
} | {
|
|
1810
2180
|
readonly label: "Mauritius (Moris)";
|
|
1811
2181
|
readonly id: "MU";
|
|
1812
2182
|
readonly dialCode: "+230";
|
|
2183
|
+
readonly nativeName: "Moris";
|
|
2184
|
+
readonly nativeLang: "mfe";
|
|
1813
2185
|
} | {
|
|
1814
2186
|
readonly label: "Mayotte";
|
|
1815
2187
|
readonly id: "YT";
|
|
@@ -1818,6 +2190,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1818
2190
|
readonly label: "Mexico (México)";
|
|
1819
2191
|
readonly id: "MX";
|
|
1820
2192
|
readonly dialCode: "+52";
|
|
2193
|
+
readonly nativeName: "México";
|
|
2194
|
+
readonly nativeLang: "es";
|
|
1821
2195
|
} | {
|
|
1822
2196
|
readonly label: "Micronesia";
|
|
1823
2197
|
readonly id: "FM";
|
|
@@ -1826,6 +2200,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1826
2200
|
readonly label: "Moldova (Republica Moldova)";
|
|
1827
2201
|
readonly id: "MD";
|
|
1828
2202
|
readonly dialCode: "+373";
|
|
2203
|
+
readonly nativeName: "Republica Moldova";
|
|
2204
|
+
readonly nativeLang: "ro";
|
|
1829
2205
|
} | {
|
|
1830
2206
|
readonly label: "Monaco";
|
|
1831
2207
|
readonly id: "MC";
|
|
@@ -1834,10 +2210,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1834
2210
|
readonly label: "Mongolia (Монгол)";
|
|
1835
2211
|
readonly id: "MN";
|
|
1836
2212
|
readonly dialCode: "+976";
|
|
2213
|
+
readonly nativeName: "Монгол";
|
|
2214
|
+
readonly nativeLang: "mn";
|
|
1837
2215
|
} | {
|
|
1838
2216
|
readonly label: "Montenegro (Crna Gora)";
|
|
1839
2217
|
readonly id: "ME";
|
|
1840
2218
|
readonly dialCode: "+382";
|
|
2219
|
+
readonly nativeName: "Crna Gora";
|
|
2220
|
+
readonly nativeLang: "cnr";
|
|
1841
2221
|
} | {
|
|
1842
2222
|
readonly label: "Montserrat";
|
|
1843
2223
|
readonly id: "MS";
|
|
@@ -1846,18 +2226,26 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1846
2226
|
readonly label: "Morocco (المغرب)";
|
|
1847
2227
|
readonly id: "MA";
|
|
1848
2228
|
readonly dialCode: "+212";
|
|
2229
|
+
readonly nativeName: "المغرب";
|
|
2230
|
+
readonly nativeLang: "ar";
|
|
1849
2231
|
} | {
|
|
1850
2232
|
readonly label: "Mozambique (Moçambique)";
|
|
1851
2233
|
readonly id: "MZ";
|
|
1852
2234
|
readonly dialCode: "+258";
|
|
2235
|
+
readonly nativeName: "Moçambique";
|
|
2236
|
+
readonly nativeLang: "pt";
|
|
1853
2237
|
} | {
|
|
1854
2238
|
readonly label: "Myanmar (Burma) (မြန်မာ)";
|
|
1855
2239
|
readonly id: "MM";
|
|
1856
2240
|
readonly dialCode: "+95";
|
|
2241
|
+
readonly nativeName: "မြန်မာ";
|
|
2242
|
+
readonly nativeLang: "my";
|
|
1857
2243
|
} | {
|
|
1858
2244
|
readonly label: "Namibia (Namibië)";
|
|
1859
2245
|
readonly id: "NA";
|
|
1860
2246
|
readonly dialCode: "+264";
|
|
2247
|
+
readonly nativeName: "Namibië";
|
|
2248
|
+
readonly nativeLang: "af";
|
|
1861
2249
|
} | {
|
|
1862
2250
|
readonly label: "Nauru";
|
|
1863
2251
|
readonly id: "NR";
|
|
@@ -1866,14 +2254,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1866
2254
|
readonly label: "Nepal (नेपाल)";
|
|
1867
2255
|
readonly id: "NP";
|
|
1868
2256
|
readonly dialCode: "+977";
|
|
2257
|
+
readonly nativeName: "नेपाल";
|
|
2258
|
+
readonly nativeLang: "ne";
|
|
1869
2259
|
} | {
|
|
1870
2260
|
readonly label: "Netherlands (Nederland)";
|
|
1871
2261
|
readonly id: "NL";
|
|
1872
2262
|
readonly dialCode: "+31";
|
|
2263
|
+
readonly nativeName: "Nederland";
|
|
2264
|
+
readonly nativeLang: "nl";
|
|
1873
2265
|
} | {
|
|
1874
2266
|
readonly label: "New Caledonia (Nouvelle-Calédonie)";
|
|
1875
2267
|
readonly id: "NC";
|
|
1876
2268
|
readonly dialCode: "+687";
|
|
2269
|
+
readonly nativeName: "Nouvelle-Calédonie";
|
|
2270
|
+
readonly nativeLang: "fr";
|
|
1877
2271
|
} | {
|
|
1878
2272
|
readonly label: "New Zealand";
|
|
1879
2273
|
readonly id: "NZ";
|
|
@@ -1886,6 +2280,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1886
2280
|
readonly label: "Niger (Nijar)";
|
|
1887
2281
|
readonly id: "NE";
|
|
1888
2282
|
readonly dialCode: "+227";
|
|
2283
|
+
readonly nativeName: "Nijar";
|
|
2284
|
+
readonly nativeLang: "ha";
|
|
1889
2285
|
} | {
|
|
1890
2286
|
readonly label: "Nigeria";
|
|
1891
2287
|
readonly id: "NG";
|
|
@@ -1902,6 +2298,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1902
2298
|
readonly label: "North Korea (조선 민주주의 인민 공화국)";
|
|
1903
2299
|
readonly id: "KP";
|
|
1904
2300
|
readonly dialCode: "+850";
|
|
2301
|
+
readonly nativeName: "조선 민주주의 인민 공화국";
|
|
2302
|
+
readonly nativeLang: "ko";
|
|
1905
2303
|
} | {
|
|
1906
2304
|
readonly label: "Northern Mariana Islands";
|
|
1907
2305
|
readonly id: "MP";
|
|
@@ -1910,14 +2308,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1910
2308
|
readonly label: "Norway (Norge)";
|
|
1911
2309
|
readonly id: "NO";
|
|
1912
2310
|
readonly dialCode: "+47";
|
|
2311
|
+
readonly nativeName: "Norge";
|
|
2312
|
+
readonly nativeLang: "no";
|
|
1913
2313
|
} | {
|
|
1914
2314
|
readonly label: "Oman (عُمان)";
|
|
1915
2315
|
readonly id: "OM";
|
|
1916
2316
|
readonly dialCode: "+968";
|
|
2317
|
+
readonly nativeName: "عُمان";
|
|
2318
|
+
readonly nativeLang: "ar";
|
|
1917
2319
|
} | {
|
|
1918
2320
|
readonly label: "Pakistan (پاکستان)";
|
|
1919
2321
|
readonly id: "PK";
|
|
1920
2322
|
readonly dialCode: "+92";
|
|
2323
|
+
readonly nativeName: "پاکستان";
|
|
2324
|
+
readonly nativeLang: "ur";
|
|
1921
2325
|
} | {
|
|
1922
2326
|
readonly label: "Palau";
|
|
1923
2327
|
readonly id: "PW";
|
|
@@ -1926,10 +2330,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1926
2330
|
readonly label: "Palestine (فلسطين)";
|
|
1927
2331
|
readonly id: "PS";
|
|
1928
2332
|
readonly dialCode: "+970";
|
|
2333
|
+
readonly nativeName: "فلسطين";
|
|
2334
|
+
readonly nativeLang: "ar";
|
|
1929
2335
|
} | {
|
|
1930
2336
|
readonly label: "Panama (Panamá)";
|
|
1931
2337
|
readonly id: "PA";
|
|
1932
2338
|
readonly dialCode: "+507";
|
|
2339
|
+
readonly nativeName: "Panamá";
|
|
2340
|
+
readonly nativeLang: "es";
|
|
1933
2341
|
} | {
|
|
1934
2342
|
readonly label: "Papua New Guinea";
|
|
1935
2343
|
readonly id: "PG";
|
|
@@ -1942,6 +2350,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1942
2350
|
readonly label: "Peru (Perú)";
|
|
1943
2351
|
readonly id: "PE";
|
|
1944
2352
|
readonly dialCode: "+51";
|
|
2353
|
+
readonly nativeName: "Perú";
|
|
2354
|
+
readonly nativeLang: "es";
|
|
1945
2355
|
} | {
|
|
1946
2356
|
readonly label: "Philippines";
|
|
1947
2357
|
readonly id: "PH";
|
|
@@ -1950,6 +2360,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1950
2360
|
readonly label: "Poland (Polska)";
|
|
1951
2361
|
readonly id: "PL";
|
|
1952
2362
|
readonly dialCode: "+48";
|
|
2363
|
+
readonly nativeName: "Polska";
|
|
2364
|
+
readonly nativeLang: "pl";
|
|
1953
2365
|
} | {
|
|
1954
2366
|
readonly label: "Portugal";
|
|
1955
2367
|
readonly id: "PT";
|
|
@@ -1962,18 +2374,26 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1962
2374
|
readonly label: "Qatar (قطر)";
|
|
1963
2375
|
readonly id: "QA";
|
|
1964
2376
|
readonly dialCode: "+974";
|
|
2377
|
+
readonly nativeName: "قطر";
|
|
2378
|
+
readonly nativeLang: "ar";
|
|
1965
2379
|
} | {
|
|
1966
2380
|
readonly label: "Réunion (La Réunion)";
|
|
1967
2381
|
readonly id: "RE";
|
|
1968
2382
|
readonly dialCode: "+262";
|
|
2383
|
+
readonly nativeName: "La Réunion";
|
|
2384
|
+
readonly nativeLang: "fr";
|
|
1969
2385
|
} | {
|
|
1970
2386
|
readonly label: "Romania (România)";
|
|
1971
2387
|
readonly id: "RO";
|
|
1972
2388
|
readonly dialCode: "+40";
|
|
2389
|
+
readonly nativeName: "România";
|
|
2390
|
+
readonly nativeLang: "ro";
|
|
1973
2391
|
} | {
|
|
1974
2392
|
readonly label: "Russia (Россия)";
|
|
1975
2393
|
readonly id: "RU";
|
|
1976
2394
|
readonly dialCode: "+7";
|
|
2395
|
+
readonly nativeName: "Россия";
|
|
2396
|
+
readonly nativeLang: "ru";
|
|
1977
2397
|
} | {
|
|
1978
2398
|
readonly label: "Rwanda";
|
|
1979
2399
|
readonly id: "RW";
|
|
@@ -1998,10 +2418,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
1998
2418
|
readonly label: "Saint Martin (Saint-Martin (partie française))";
|
|
1999
2419
|
readonly id: "MF";
|
|
2000
2420
|
readonly dialCode: "+590";
|
|
2421
|
+
readonly nativeName: "Saint-Martin (partie française)";
|
|
2422
|
+
readonly nativeLang: "fr";
|
|
2001
2423
|
} | {
|
|
2002
2424
|
readonly label: "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)";
|
|
2003
2425
|
readonly id: "PM";
|
|
2004
2426
|
readonly dialCode: "+508";
|
|
2427
|
+
readonly nativeName: "Saint-Pierre-et-Miquelon";
|
|
2428
|
+
readonly nativeLang: "fr";
|
|
2005
2429
|
} | {
|
|
2006
2430
|
readonly label: "Saint Vincent and the Grenadines";
|
|
2007
2431
|
readonly id: "VC";
|
|
@@ -2018,18 +2442,26 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2018
2442
|
readonly label: "São Tomé and Príncipe (São Tomé e Príncipe)";
|
|
2019
2443
|
readonly id: "ST";
|
|
2020
2444
|
readonly dialCode: "+239";
|
|
2445
|
+
readonly nativeName: "São Tomé e Príncipe";
|
|
2446
|
+
readonly nativeLang: "pt";
|
|
2021
2447
|
} | {
|
|
2022
2448
|
readonly label: "Saudi Arabia (المملكة العربية السعودية)";
|
|
2023
2449
|
readonly id: "SA";
|
|
2024
2450
|
readonly dialCode: "+966";
|
|
2451
|
+
readonly nativeName: "المملكة العربية السعودية";
|
|
2452
|
+
readonly nativeLang: "ar";
|
|
2025
2453
|
} | {
|
|
2026
2454
|
readonly label: "Senegal (Sénégal)";
|
|
2027
2455
|
readonly id: "SN";
|
|
2028
2456
|
readonly dialCode: "+221";
|
|
2457
|
+
readonly nativeName: "Sénégal";
|
|
2458
|
+
readonly nativeLang: "fr";
|
|
2029
2459
|
} | {
|
|
2030
2460
|
readonly label: "Serbia (Србија)";
|
|
2031
2461
|
readonly id: "RS";
|
|
2032
2462
|
readonly dialCode: "+381";
|
|
2463
|
+
readonly nativeName: "Србија";
|
|
2464
|
+
readonly nativeLang: "sr";
|
|
2033
2465
|
} | {
|
|
2034
2466
|
readonly label: "Seychelles";
|
|
2035
2467
|
readonly id: "SC";
|
|
@@ -2050,10 +2482,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2050
2482
|
readonly label: "Slovakia (Slovensko)";
|
|
2051
2483
|
readonly id: "SK";
|
|
2052
2484
|
readonly dialCode: "+421";
|
|
2485
|
+
readonly nativeName: "Slovensko";
|
|
2486
|
+
readonly nativeLang: "sk";
|
|
2053
2487
|
} | {
|
|
2054
2488
|
readonly label: "Slovenia (Slovenija)";
|
|
2055
2489
|
readonly id: "SI";
|
|
2056
2490
|
readonly dialCode: "+386";
|
|
2491
|
+
readonly nativeName: "Slovenija";
|
|
2492
|
+
readonly nativeLang: "sl";
|
|
2057
2493
|
} | {
|
|
2058
2494
|
readonly label: "Solomon Islands";
|
|
2059
2495
|
readonly id: "SB";
|
|
@@ -2062,6 +2498,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2062
2498
|
readonly label: "Somalia (Soomaaliya)";
|
|
2063
2499
|
readonly id: "SO";
|
|
2064
2500
|
readonly dialCode: "+252";
|
|
2501
|
+
readonly nativeName: "Soomaaliya";
|
|
2502
|
+
readonly nativeLang: "so";
|
|
2065
2503
|
} | {
|
|
2066
2504
|
readonly label: "South Africa";
|
|
2067
2505
|
readonly id: "ZA";
|
|
@@ -2070,22 +2508,32 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2070
2508
|
readonly label: "South Korea (대한민국)";
|
|
2071
2509
|
readonly id: "KR";
|
|
2072
2510
|
readonly dialCode: "+82";
|
|
2511
|
+
readonly nativeName: "대한민국";
|
|
2512
|
+
readonly nativeLang: "ko";
|
|
2073
2513
|
} | {
|
|
2074
2514
|
readonly label: "South Sudan (جنوب السودان)";
|
|
2075
2515
|
readonly id: "SS";
|
|
2076
2516
|
readonly dialCode: "+211";
|
|
2517
|
+
readonly nativeName: "جنوب السودان";
|
|
2518
|
+
readonly nativeLang: "ar";
|
|
2077
2519
|
} | {
|
|
2078
2520
|
readonly label: "Spain (España)";
|
|
2079
2521
|
readonly id: "ES";
|
|
2080
2522
|
readonly dialCode: "+34";
|
|
2523
|
+
readonly nativeName: "España";
|
|
2524
|
+
readonly nativeLang: "es";
|
|
2081
2525
|
} | {
|
|
2082
2526
|
readonly label: "Sri Lanka (ශ්රී ලංකාව)";
|
|
2083
2527
|
readonly id: "LK";
|
|
2084
2528
|
readonly dialCode: "+94";
|
|
2529
|
+
readonly nativeName: "ශ්රී ලංකාව";
|
|
2530
|
+
readonly nativeLang: "si";
|
|
2085
2531
|
} | {
|
|
2086
2532
|
readonly label: "Sudan (السودان)";
|
|
2087
2533
|
readonly id: "SD";
|
|
2088
2534
|
readonly dialCode: "+249";
|
|
2535
|
+
readonly nativeName: "السودان";
|
|
2536
|
+
readonly nativeLang: "ar";
|
|
2089
2537
|
} | {
|
|
2090
2538
|
readonly label: "Suriname";
|
|
2091
2539
|
readonly id: "SR";
|
|
@@ -2102,18 +2550,26 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2102
2550
|
readonly label: "Sweden (Sverige)";
|
|
2103
2551
|
readonly id: "SE";
|
|
2104
2552
|
readonly dialCode: "+46";
|
|
2553
|
+
readonly nativeName: "Sverige";
|
|
2554
|
+
readonly nativeLang: "sv";
|
|
2105
2555
|
} | {
|
|
2106
2556
|
readonly label: "Switzerland (Schweiz)";
|
|
2107
2557
|
readonly id: "CH";
|
|
2108
2558
|
readonly dialCode: "+41";
|
|
2559
|
+
readonly nativeName: "Schweiz";
|
|
2560
|
+
readonly nativeLang: "de";
|
|
2109
2561
|
} | {
|
|
2110
2562
|
readonly label: "Syria (سوريا)";
|
|
2111
2563
|
readonly id: "SY";
|
|
2112
2564
|
readonly dialCode: "+963";
|
|
2565
|
+
readonly nativeName: "سوريا";
|
|
2566
|
+
readonly nativeLang: "ar";
|
|
2113
2567
|
} | {
|
|
2114
2568
|
readonly label: "Taiwan (台灣)";
|
|
2115
2569
|
readonly id: "TW";
|
|
2116
2570
|
readonly dialCode: "+886";
|
|
2571
|
+
readonly nativeName: "台灣";
|
|
2572
|
+
readonly nativeLang: "zh-Hant";
|
|
2117
2573
|
} | {
|
|
2118
2574
|
readonly label: "Tajikistan";
|
|
2119
2575
|
readonly id: "TJ";
|
|
@@ -2126,6 +2582,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2126
2582
|
readonly label: "Thailand (ไทย)";
|
|
2127
2583
|
readonly id: "TH";
|
|
2128
2584
|
readonly dialCode: "+66";
|
|
2585
|
+
readonly nativeName: "ไทย";
|
|
2586
|
+
readonly nativeLang: "th";
|
|
2129
2587
|
} | {
|
|
2130
2588
|
readonly label: "Timor-Leste";
|
|
2131
2589
|
readonly id: "TL";
|
|
@@ -2150,10 +2608,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2150
2608
|
readonly label: "Tunisia (تونس)";
|
|
2151
2609
|
readonly id: "TN";
|
|
2152
2610
|
readonly dialCode: "+216";
|
|
2611
|
+
readonly nativeName: "تونس";
|
|
2612
|
+
readonly nativeLang: "ar";
|
|
2153
2613
|
} | {
|
|
2154
2614
|
readonly label: "Turkey (Türkiye)";
|
|
2155
2615
|
readonly id: "TR";
|
|
2156
2616
|
readonly dialCode: "+90";
|
|
2617
|
+
readonly nativeName: "Türkiye";
|
|
2618
|
+
readonly nativeLang: "tr";
|
|
2157
2619
|
} | {
|
|
2158
2620
|
readonly label: "Turkmenistan";
|
|
2159
2621
|
readonly id: "TM";
|
|
@@ -2178,10 +2640,14 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2178
2640
|
readonly label: "Ukraine (Україна)";
|
|
2179
2641
|
readonly id: "UA";
|
|
2180
2642
|
readonly dialCode: "+380";
|
|
2643
|
+
readonly nativeName: "Україна";
|
|
2644
|
+
readonly nativeLang: "uk";
|
|
2181
2645
|
} | {
|
|
2182
2646
|
readonly label: "United Arab Emirates (الإمارات العربية المتحدة)";
|
|
2183
2647
|
readonly id: "AE";
|
|
2184
2648
|
readonly dialCode: "+971";
|
|
2649
|
+
readonly nativeName: "الإمارات العربية المتحدة";
|
|
2650
|
+
readonly nativeLang: "ar";
|
|
2185
2651
|
} | {
|
|
2186
2652
|
readonly label: "United Kingdom";
|
|
2187
2653
|
readonly id: "GB";
|
|
@@ -2198,6 +2664,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2198
2664
|
readonly label: "Uzbekistan (Oʻzbekiston)";
|
|
2199
2665
|
readonly id: "UZ";
|
|
2200
2666
|
readonly dialCode: "+998";
|
|
2667
|
+
readonly nativeName: "Oʻzbekiston";
|
|
2668
|
+
readonly nativeLang: "uz";
|
|
2201
2669
|
} | {
|
|
2202
2670
|
readonly label: "Vanuatu";
|
|
2203
2671
|
readonly id: "VU";
|
|
@@ -2206,6 +2674,8 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2206
2674
|
readonly label: "Vatican City (Città del Vaticano)";
|
|
2207
2675
|
readonly id: "VA";
|
|
2208
2676
|
readonly dialCode: "+39";
|
|
2677
|
+
readonly nativeName: "Città del Vaticano";
|
|
2678
|
+
readonly nativeLang: "it";
|
|
2209
2679
|
} | {
|
|
2210
2680
|
readonly label: "Venezuela";
|
|
2211
2681
|
readonly id: "VE";
|
|
@@ -2214,14 +2684,20 @@ export declare const COUNTRY_SELECT_OPTIONS: ({
|
|
|
2214
2684
|
readonly label: "Vietnam (Việt Nam)";
|
|
2215
2685
|
readonly id: "VN";
|
|
2216
2686
|
readonly dialCode: "+84";
|
|
2687
|
+
readonly nativeName: "Việt Nam";
|
|
2688
|
+
readonly nativeLang: "vi";
|
|
2217
2689
|
} | {
|
|
2218
2690
|
readonly label: "Wallis and Futuna (Wallis-et-Futuna)";
|
|
2219
2691
|
readonly id: "WF";
|
|
2220
2692
|
readonly dialCode: "+681";
|
|
2693
|
+
readonly nativeName: "Wallis-et-Futuna";
|
|
2694
|
+
readonly nativeLang: "fr";
|
|
2221
2695
|
} | {
|
|
2222
2696
|
readonly label: "Yemen (اليمن)";
|
|
2223
2697
|
readonly id: "YE";
|
|
2224
2698
|
readonly dialCode: "+967";
|
|
2699
|
+
readonly nativeName: "اليمن";
|
|
2700
|
+
readonly nativeLang: "ar";
|
|
2225
2701
|
} | {
|
|
2226
2702
|
readonly label: "Zambia";
|
|
2227
2703
|
readonly id: "ZM";
|