react-native-phone-country-input 1.0.0

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.
Files changed (172) hide show
  1. package/README.md +477 -0
  2. package/lib/commonjs/CountrySelector/CountrySelector.js +74 -0
  3. package/lib/commonjs/CountrySelector/CountrySelector.js.map +1 -0
  4. package/lib/commonjs/CountrySelector/CountrySelectorModal.js +267 -0
  5. package/lib/commonjs/CountrySelector/CountrySelectorModal.js.map +1 -0
  6. package/lib/commonjs/Keyboard/Keyboard.js +316 -0
  7. package/lib/commonjs/Keyboard/Keyboard.js.map +1 -0
  8. package/lib/commonjs/Keyboard/KeyboardToolbar.js +70 -0
  9. package/lib/commonjs/Keyboard/KeyboardToolbar.js.map +1 -0
  10. package/lib/commonjs/Keyboard/KeypadButton.js +66 -0
  11. package/lib/commonjs/Keyboard/KeypadButton.js.map +1 -0
  12. package/lib/commonjs/Keyboard/KeypadButtonContainer.js +65 -0
  13. package/lib/commonjs/Keyboard/KeypadButtonContainer.js.map +1 -0
  14. package/lib/commonjs/Keyboard/KeypadRow.js +34 -0
  15. package/lib/commonjs/Keyboard/KeypadRow.js.map +1 -0
  16. package/lib/commonjs/PhoneCountryInput/PhoneCountryInput.js +86 -0
  17. package/lib/commonjs/PhoneCountryInput/PhoneCountryInput.js.map +1 -0
  18. package/lib/commonjs/PhoneNumberField.js +36 -0
  19. package/lib/commonjs/PhoneNumberField.js.map +1 -0
  20. package/lib/commonjs/Styling/Colors.js +197 -0
  21. package/lib/commonjs/Styling/Colors.js.map +1 -0
  22. package/lib/commonjs/Styling/Sizing.js +111 -0
  23. package/lib/commonjs/Styling/Sizing.js.map +1 -0
  24. package/lib/commonjs/consts/KEYBOARD_LAYOUT.js +45 -0
  25. package/lib/commonjs/consts/KEYBOARD_LAYOUT.js.map +1 -0
  26. package/lib/commonjs/consts/regions.js +1503 -0
  27. package/lib/commonjs/consts/regions.js.map +1 -0
  28. package/lib/commonjs/enum/CountryIds.js +264 -0
  29. package/lib/commonjs/enum/CountryIds.js.map +1 -0
  30. package/lib/commonjs/hooks/UsePhoneFieldState.js +237 -0
  31. package/lib/commonjs/hooks/UsePhoneFieldState.js.map +1 -0
  32. package/lib/commonjs/index.js +56 -0
  33. package/lib/commonjs/index.js.map +1 -0
  34. package/lib/commonjs/package.json +1 -0
  35. package/lib/commonjs/utils/characterDeletion.js +20 -0
  36. package/lib/commonjs/utils/characterDeletion.js.map +1 -0
  37. package/lib/commonjs/utils/characterInsert.js +20 -0
  38. package/lib/commonjs/utils/characterInsert.js.map +1 -0
  39. package/lib/commonjs/utils/fromMaskedNumberToUnmaskedSelection.js +14 -0
  40. package/lib/commonjs/utils/fromMaskedNumberToUnmaskedSelection.js.map +1 -0
  41. package/lib/commonjs/utils/fromUnmaskedToMaskedPosition.js +20 -0
  42. package/lib/commonjs/utils/fromUnmaskedToMaskedPosition.js.map +1 -0
  43. package/lib/commonjs/utils/generateCountryCodeList.js +23 -0
  44. package/lib/commonjs/utils/generateCountryCodeList.js.map +1 -0
  45. package/lib/commonjs/utils/getDefaultRegion.js +33 -0
  46. package/lib/commonjs/utils/getDefaultRegion.js.map +1 -0
  47. package/lib/commonjs/utils/maskToPhoneNumber.js +23 -0
  48. package/lib/commonjs/utils/maskToPhoneNumber.js.map +1 -0
  49. package/lib/commonjs/utils/matchCountryCode.js +27 -0
  50. package/lib/commonjs/utils/matchCountryCode.js.map +1 -0
  51. package/lib/module/CountrySelector/CountrySelector.js +70 -0
  52. package/lib/module/CountrySelector/CountrySelector.js.map +1 -0
  53. package/lib/module/CountrySelector/CountrySelectorModal.js +262 -0
  54. package/lib/module/CountrySelector/CountrySelectorModal.js.map +1 -0
  55. package/lib/module/Keyboard/Keyboard.js +310 -0
  56. package/lib/module/Keyboard/Keyboard.js.map +1 -0
  57. package/lib/module/Keyboard/KeyboardToolbar.js +65 -0
  58. package/lib/module/Keyboard/KeyboardToolbar.js.map +1 -0
  59. package/lib/module/Keyboard/KeypadButton.js +61 -0
  60. package/lib/module/Keyboard/KeypadButton.js.map +1 -0
  61. package/lib/module/Keyboard/KeypadButtonContainer.js +59 -0
  62. package/lib/module/Keyboard/KeypadButtonContainer.js.map +1 -0
  63. package/lib/module/Keyboard/KeypadRow.js +30 -0
  64. package/lib/module/Keyboard/KeypadRow.js.map +1 -0
  65. package/lib/module/PhoneCountryInput/PhoneCountryInput.js +80 -0
  66. package/lib/module/PhoneCountryInput/PhoneCountryInput.js.map +1 -0
  67. package/lib/module/PhoneNumberField.js +31 -0
  68. package/lib/module/PhoneNumberField.js.map +1 -0
  69. package/lib/module/Styling/Colors.js +193 -0
  70. package/lib/module/Styling/Colors.js.map +1 -0
  71. package/lib/module/Styling/Sizing.js +107 -0
  72. package/lib/module/Styling/Sizing.js.map +1 -0
  73. package/lib/module/consts/KEYBOARD_LAYOUT.js +41 -0
  74. package/lib/module/consts/KEYBOARD_LAYOUT.js.map +1 -0
  75. package/lib/module/consts/regions.js +1498 -0
  76. package/lib/module/consts/regions.js.map +1 -0
  77. package/lib/module/enum/CountryIds.js +260 -0
  78. package/lib/module/enum/CountryIds.js.map +1 -0
  79. package/lib/module/hooks/UsePhoneFieldState.js +232 -0
  80. package/lib/module/hooks/UsePhoneFieldState.js.map +1 -0
  81. package/lib/module/index.js +16 -0
  82. package/lib/module/index.js.map +1 -0
  83. package/lib/module/package.json +1 -0
  84. package/lib/module/utils/characterDeletion.js +16 -0
  85. package/lib/module/utils/characterDeletion.js.map +1 -0
  86. package/lib/module/utils/characterInsert.js +16 -0
  87. package/lib/module/utils/characterInsert.js.map +1 -0
  88. package/lib/module/utils/fromMaskedNumberToUnmaskedSelection.js +10 -0
  89. package/lib/module/utils/fromMaskedNumberToUnmaskedSelection.js.map +1 -0
  90. package/lib/module/utils/fromUnmaskedToMaskedPosition.js +16 -0
  91. package/lib/module/utils/fromUnmaskedToMaskedPosition.js.map +1 -0
  92. package/lib/module/utils/generateCountryCodeList.js +19 -0
  93. package/lib/module/utils/generateCountryCodeList.js.map +1 -0
  94. package/lib/module/utils/getDefaultRegion.js +28 -0
  95. package/lib/module/utils/getDefaultRegion.js.map +1 -0
  96. package/lib/module/utils/maskToPhoneNumber.js +19 -0
  97. package/lib/module/utils/maskToPhoneNumber.js.map +1 -0
  98. package/lib/module/utils/matchCountryCode.js +23 -0
  99. package/lib/module/utils/matchCountryCode.js.map +1 -0
  100. package/lib/typescript/CountrySelector/CountrySelector.d.ts +19 -0
  101. package/lib/typescript/CountrySelector/CountrySelector.d.ts.map +1 -0
  102. package/lib/typescript/CountrySelector/CountrySelectorModal.d.ts +12 -0
  103. package/lib/typescript/CountrySelector/CountrySelectorModal.d.ts.map +1 -0
  104. package/lib/typescript/Keyboard/Keyboard.d.ts +25 -0
  105. package/lib/typescript/Keyboard/Keyboard.d.ts.map +1 -0
  106. package/lib/typescript/Keyboard/KeyboardToolbar.d.ts +9 -0
  107. package/lib/typescript/Keyboard/KeyboardToolbar.d.ts.map +1 -0
  108. package/lib/typescript/Keyboard/KeypadButton.d.ts +10 -0
  109. package/lib/typescript/Keyboard/KeypadButton.d.ts.map +1 -0
  110. package/lib/typescript/Keyboard/KeypadButtonContainer.d.ts +12 -0
  111. package/lib/typescript/Keyboard/KeypadButtonContainer.d.ts.map +1 -0
  112. package/lib/typescript/Keyboard/KeypadRow.d.ts +9 -0
  113. package/lib/typescript/Keyboard/KeypadRow.d.ts.map +1 -0
  114. package/lib/typescript/PhoneCountryInput/PhoneCountryInput.d.ts +16 -0
  115. package/lib/typescript/PhoneCountryInput/PhoneCountryInput.d.ts.map +1 -0
  116. package/lib/typescript/PhoneNumberField.d.ts +17 -0
  117. package/lib/typescript/PhoneNumberField.d.ts.map +1 -0
  118. package/lib/typescript/Styling/Colors.d.ts +189 -0
  119. package/lib/typescript/Styling/Colors.d.ts.map +1 -0
  120. package/lib/typescript/Styling/Sizing.d.ts +214 -0
  121. package/lib/typescript/Styling/Sizing.d.ts.map +1 -0
  122. package/lib/typescript/consts/KEYBOARD_LAYOUT.d.ts +18 -0
  123. package/lib/typescript/consts/KEYBOARD_LAYOUT.d.ts.map +1 -0
  124. package/lib/typescript/consts/regions.d.ts +10 -0
  125. package/lib/typescript/consts/regions.d.ts.map +1 -0
  126. package/lib/typescript/enum/CountryIds.d.ts +249 -0
  127. package/lib/typescript/enum/CountryIds.d.ts.map +1 -0
  128. package/lib/typescript/hooks/UsePhoneFieldState.d.ts +34 -0
  129. package/lib/typescript/hooks/UsePhoneFieldState.d.ts.map +1 -0
  130. package/lib/typescript/index.d.ts +15 -0
  131. package/lib/typescript/index.d.ts.map +1 -0
  132. package/lib/typescript/utils/characterDeletion.d.ts +3 -0
  133. package/lib/typescript/utils/characterDeletion.d.ts.map +1 -0
  134. package/lib/typescript/utils/characterInsert.d.ts +3 -0
  135. package/lib/typescript/utils/characterInsert.d.ts.map +1 -0
  136. package/lib/typescript/utils/fromMaskedNumberToUnmaskedSelection.d.ts +2 -0
  137. package/lib/typescript/utils/fromMaskedNumberToUnmaskedSelection.d.ts.map +1 -0
  138. package/lib/typescript/utils/fromUnmaskedToMaskedPosition.d.ts +2 -0
  139. package/lib/typescript/utils/fromUnmaskedToMaskedPosition.d.ts.map +1 -0
  140. package/lib/typescript/utils/generateCountryCodeList.d.ts +3 -0
  141. package/lib/typescript/utils/generateCountryCodeList.d.ts.map +1 -0
  142. package/lib/typescript/utils/getDefaultRegion.d.ts +4 -0
  143. package/lib/typescript/utils/getDefaultRegion.d.ts.map +1 -0
  144. package/lib/typescript/utils/maskToPhoneNumber.d.ts +2 -0
  145. package/lib/typescript/utils/maskToPhoneNumber.d.ts.map +1 -0
  146. package/lib/typescript/utils/matchCountryCode.d.ts +3 -0
  147. package/lib/typescript/utils/matchCountryCode.d.ts.map +1 -0
  148. package/package.json +92 -0
  149. package/src/CountrySelector/CountrySelector.tsx +77 -0
  150. package/src/CountrySelector/CountrySelectorModal.tsx +280 -0
  151. package/src/Keyboard/Keyboard.tsx +322 -0
  152. package/src/Keyboard/KeyboardToolbar.tsx +53 -0
  153. package/src/Keyboard/KeypadButton.tsx +58 -0
  154. package/src/Keyboard/KeypadButtonContainer.tsx +67 -0
  155. package/src/Keyboard/KeypadRow.tsx +29 -0
  156. package/src/PhoneCountryInput/PhoneCountryInput.tsx +98 -0
  157. package/src/PhoneNumberField.tsx +46 -0
  158. package/src/Styling/Colors.ts +206 -0
  159. package/src/Styling/Sizing.ts +110 -0
  160. package/src/consts/KEYBOARD_LAYOUT.ts +34 -0
  161. package/src/consts/regions.ts +268 -0
  162. package/src/enum/CountryIds.ts +256 -0
  163. package/src/hooks/UsePhoneFieldState.tsx +268 -0
  164. package/src/index.ts +27 -0
  165. package/src/utils/characterDeletion.ts +16 -0
  166. package/src/utils/characterInsert.ts +20 -0
  167. package/src/utils/fromMaskedNumberToUnmaskedSelection.ts +10 -0
  168. package/src/utils/fromUnmaskedToMaskedPosition.ts +13 -0
  169. package/src/utils/generateCountryCodeList.ts +22 -0
  170. package/src/utils/getDefaultRegion.ts +30 -0
  171. package/src/utils/maskToPhoneNumber.ts +30 -0
  172. package/src/utils/matchCountryCode.ts +23 -0
@@ -0,0 +1,1503 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.countryCodeList = void 0;
7
+ var _CountryIds = require("../enum/CountryIds");
8
+ // country code list with all country name, country code, two letter code, and flag based on https://en.wikipedia.org/wiki/List_of_country_calling_codes
9
+
10
+ const countryCodeList = exports.countryCodeList = [
11
+ // Zone 1 - North American Numbering Plan (NANP)
12
+ {
13
+ code: '+1',
14
+ id: _CountryIds.CountryId.UNITED_STATES,
15
+ flag: '🇺🇸',
16
+ name: 'United States',
17
+ mask: '(###)-###-####'
18
+ }, {
19
+ code: '+1',
20
+ id: _CountryIds.CountryId.CANADA,
21
+ flag: '🇨🇦',
22
+ name: 'Canada',
23
+ mask: '(###)-###-####'
24
+ }, {
25
+ code: '+1',
26
+ id: _CountryIds.CountryId.ANTIGUA_AND_BARBUDA,
27
+ flag: '🇦🇬',
28
+ name: 'Antigua and Barbuda',
29
+ mask: '(###)-###-####'
30
+ }, {
31
+ code: '+1',
32
+ id: _CountryIds.CountryId.ANGUILLA,
33
+ flag: '🇦🇮',
34
+ name: 'Anguilla',
35
+ mask: '(###)-###-####'
36
+ }, {
37
+ code: '+1',
38
+ id: _CountryIds.CountryId.AMERICAN_SAMOA,
39
+ flag: '🇦🇸',
40
+ name: 'American Samoa',
41
+ mask: '(###)-###-####'
42
+ }, {
43
+ code: '+1',
44
+ id: _CountryIds.CountryId.BAHAMAS,
45
+ flag: '🇧🇸',
46
+ name: 'Bahamas',
47
+ mask: '(###)-###-####'
48
+ }, {
49
+ code: '+1',
50
+ id: _CountryIds.CountryId.BARBADOS,
51
+ flag: '🇧🇧',
52
+ name: 'Barbados',
53
+ mask: '(###)-###-####'
54
+ }, {
55
+ code: '+1',
56
+ id: _CountryIds.CountryId.BERMUDA,
57
+ flag: '🇧🇲',
58
+ name: 'Bermuda',
59
+ mask: '(###)-###-####'
60
+ }, {
61
+ code: '+1',
62
+ id: _CountryIds.CountryId.BRITISH_VIRGIN_ISLANDS,
63
+ flag: '🇻🇬',
64
+ name: 'British Virgin Islands',
65
+ mask: '(###)-###-####'
66
+ }, {
67
+ code: '+1',
68
+ id: _CountryIds.CountryId.CAYMAN_ISLANDS,
69
+ flag: '🇰🇾',
70
+ name: 'Cayman Islands',
71
+ mask: '(###)-###-####'
72
+ }, {
73
+ code: '+1',
74
+ id: _CountryIds.CountryId.DOMINICA,
75
+ flag: '🇩🇲',
76
+ name: 'Dominica',
77
+ mask: '(###)-###-####'
78
+ }, {
79
+ code: '+1',
80
+ id: _CountryIds.CountryId.DOMINICAN_REPUBLIC,
81
+ flag: '🇩🇴',
82
+ name: 'Dominican Republic',
83
+ mask: '(###)-###-####'
84
+ }, {
85
+ code: '+1',
86
+ id: _CountryIds.CountryId.GRENADA,
87
+ flag: '🇬🇩',
88
+ name: 'Grenada',
89
+ mask: '(###)-###-####'
90
+ }, {
91
+ code: '+1',
92
+ id: _CountryIds.CountryId.GUAM,
93
+ flag: '🇬🇺',
94
+ name: 'Guam',
95
+ mask: '(###)-###-####'
96
+ }, {
97
+ code: '+1',
98
+ id: _CountryIds.CountryId.JAMAICA,
99
+ flag: '🇯🇲',
100
+ name: 'Jamaica',
101
+ mask: '(###)-###-####'
102
+ }, {
103
+ code: '+1',
104
+ id: _CountryIds.CountryId.MONTSERRAT,
105
+ flag: '🇲🇸',
106
+ name: 'Montserrat',
107
+ mask: '(###)-###-####'
108
+ }, {
109
+ code: '+1',
110
+ id: _CountryIds.CountryId.NORTHERN_MARIANA_ISLANDS,
111
+ flag: '🇲🇵',
112
+ name: 'Northern Mariana Islands',
113
+ mask: '(###)-###-####'
114
+ }, {
115
+ code: '+1',
116
+ id: _CountryIds.CountryId.PUERTO_RICO,
117
+ flag: '🇵🇷',
118
+ name: 'Puerto Rico',
119
+ mask: '(###)-###-####'
120
+ }, {
121
+ code: '+1',
122
+ id: _CountryIds.CountryId.SAINT_KITTS_AND_NEVIS,
123
+ flag: '🇰🇳',
124
+ name: 'Saint Kitts and Nevis',
125
+ mask: '(###)-###-####'
126
+ }, {
127
+ code: '+1',
128
+ id: _CountryIds.CountryId.SAINT_LUCIA,
129
+ flag: '🇱🇨',
130
+ name: 'Saint Lucia',
131
+ mask: '(###)-###-####'
132
+ }, {
133
+ code: '+1',
134
+ id: _CountryIds.CountryId.SAINT_VINCENT_AND_THE_GRENADINES,
135
+ flag: '🇻🇨',
136
+ name: 'Saint Vincent and the Grenadines',
137
+ mask: '(###)-###-####'
138
+ }, {
139
+ code: '+1',
140
+ id: _CountryIds.CountryId.SINT_MAARTEN,
141
+ flag: '🇸🇽',
142
+ name: 'Sint Maarten',
143
+ mask: '(###)-###-####'
144
+ }, {
145
+ code: '+1',
146
+ id: _CountryIds.CountryId.TRINIDAD_AND_TOBAGO,
147
+ flag: '🇹🇹',
148
+ name: 'Trinidad and Tobago',
149
+ mask: '(###)-###-####'
150
+ }, {
151
+ code: '+1',
152
+ id: _CountryIds.CountryId.TURKS_AND_CAICOS_ISLANDS,
153
+ flag: '🇹🇨',
154
+ name: 'Turks and Caicos Islands',
155
+ mask: '(###)-###-####'
156
+ }, {
157
+ code: '+1',
158
+ id: _CountryIds.CountryId.UNITED_STATES_VIRGIN_ISLANDS,
159
+ flag: '🇻🇮',
160
+ name: 'United States Virgin Islands',
161
+ mask: '(###)-###-####'
162
+ },
163
+ // Zone 2 - Africa
164
+ {
165
+ code: '+20',
166
+ id: _CountryIds.CountryId.EGYPT,
167
+ flag: '🇪🇬',
168
+ name: 'Egypt',
169
+ mask: '(###)-###-####'
170
+ }, {
171
+ code: '+211',
172
+ id: _CountryIds.CountryId.SOUTH_SUDAN,
173
+ flag: '🇸🇸',
174
+ name: 'South Sudan',
175
+ mask: '(###)-###-###'
176
+ }, {
177
+ code: '+212',
178
+ id: _CountryIds.CountryId.MOROCCO,
179
+ flag: '🇲🇦',
180
+ name: 'Morocco',
181
+ mask: '(###)-###-###'
182
+ }, {
183
+ code: '+212',
184
+ id: _CountryIds.CountryId.WESTERN_SAHARA,
185
+ flag: '🇪🇭',
186
+ name: 'Western Sahara',
187
+ mask: '(###)-###-###'
188
+ }, {
189
+ code: '+213',
190
+ id: _CountryIds.CountryId.ALGERIA,
191
+ flag: '🇩🇿',
192
+ name: 'Algeria',
193
+ mask: '(###)-##-##-##'
194
+ }, {
195
+ code: '+216',
196
+ id: _CountryIds.CountryId.TUNISIA,
197
+ flag: '🇹🇳',
198
+ name: 'Tunisia',
199
+ mask: '(##)-###-###'
200
+ }, {
201
+ code: '+218',
202
+ id: _CountryIds.CountryId.LIBYA,
203
+ flag: '🇱🇾',
204
+ name: 'Libya',
205
+ mask: '(##)-#######'
206
+ }, {
207
+ code: '+220',
208
+ id: _CountryIds.CountryId.GAMBIA,
209
+ flag: '🇬🇲',
210
+ name: 'Gambia',
211
+ mask: '(###)-####'
212
+ }, {
213
+ code: '+221',
214
+ id: _CountryIds.CountryId.SENEGAL,
215
+ flag: '🇸🇳',
216
+ name: 'Senegal',
217
+ mask: '(##)-###-##-##'
218
+ }, {
219
+ code: '+222',
220
+ id: _CountryIds.CountryId.MAURITANIA,
221
+ flag: '🇲🇷',
222
+ name: 'Mauritania',
223
+ mask: '(##)-##-##-##'
224
+ }, {
225
+ code: '+223',
226
+ id: _CountryIds.CountryId.MALI,
227
+ flag: '🇲🇱',
228
+ name: 'Mali',
229
+ mask: '(##)-##-##-##'
230
+ }, {
231
+ code: '+224',
232
+ id: _CountryIds.CountryId.GUINEA,
233
+ flag: '🇬🇳',
234
+ name: 'Guinea',
235
+ mask: '(###)-##-##-##'
236
+ }, {
237
+ code: '+225',
238
+ id: _CountryIds.CountryId.IVORY_COAST,
239
+ flag: '🇨🇮',
240
+ name: 'Ivory Coast',
241
+ mask: '(##)-##-##-##'
242
+ }, {
243
+ code: '+226',
244
+ id: _CountryIds.CountryId.BURKINA_FASO,
245
+ flag: '🇧🇫',
246
+ name: 'Burkina Faso',
247
+ mask: '(##)-##-##-##'
248
+ }, {
249
+ code: '+227',
250
+ id: _CountryIds.CountryId.NIGER,
251
+ flag: '🇳🇪',
252
+ name: 'Niger',
253
+ mask: '(##)-##-##-##'
254
+ }, {
255
+ code: '+228',
256
+ id: _CountryIds.CountryId.TOGO,
257
+ flag: '🇹🇬',
258
+ name: 'Togo',
259
+ mask: '(##)-##-##-##'
260
+ }, {
261
+ code: '+229',
262
+ id: _CountryIds.CountryId.BENIN,
263
+ flag: '🇧🇯',
264
+ name: 'Benin',
265
+ mask: '(##)-##-##-##'
266
+ }, {
267
+ code: '+230',
268
+ id: _CountryIds.CountryId.MAURITIUS,
269
+ flag: '🇲🇺',
270
+ name: 'Mauritius',
271
+ mask: '(####)-####'
272
+ }, {
273
+ code: '+231',
274
+ id: _CountryIds.CountryId.LIBERIA,
275
+ flag: '🇱🇷',
276
+ name: 'Liberia',
277
+ mask: '(###)-####'
278
+ }, {
279
+ code: '+232',
280
+ id: _CountryIds.CountryId.SIERRA_LEONE,
281
+ flag: '🇸🇱',
282
+ name: 'Sierra Leone',
283
+ mask: '(##)-######'
284
+ }, {
285
+ code: '+233',
286
+ id: _CountryIds.CountryId.GHANA,
287
+ flag: '🇬🇭',
288
+ name: 'Ghana',
289
+ mask: '(##)-###-####'
290
+ }, {
291
+ code: '+234',
292
+ id: _CountryIds.CountryId.NIGERIA,
293
+ flag: '🇳🇬',
294
+ name: 'Nigeria',
295
+ mask: '(###)-###-####'
296
+ }, {
297
+ code: '+235',
298
+ id: _CountryIds.CountryId.CHAD,
299
+ flag: '🇹🇩',
300
+ name: 'Chad',
301
+ mask: '(##)-##-##-##'
302
+ }, {
303
+ code: '+236',
304
+ id: _CountryIds.CountryId.CENTRAL_AFRICAN_REPUBLIC,
305
+ flag: '🇨🇫',
306
+ name: 'Central African Republic',
307
+ mask: '(##)-##-##-##'
308
+ }, {
309
+ code: '+237',
310
+ id: _CountryIds.CountryId.CAMEROON,
311
+ flag: '🇨🇲',
312
+ name: 'Cameroon',
313
+ mask: '(##)-##-##-##'
314
+ }, {
315
+ code: '+238',
316
+ id: _CountryIds.CountryId.CAPE_VERDE,
317
+ flag: '🇨🇻',
318
+ name: 'Cape Verde',
319
+ mask: '(###)-##-##'
320
+ }, {
321
+ code: '+239',
322
+ id: _CountryIds.CountryId.SAO_TOME_AND_PRINCIPE,
323
+ flag: '🇸🇹',
324
+ name: 'São Tomé and Príncipe',
325
+ mask: '(###)-####'
326
+ }, {
327
+ code: '+240',
328
+ id: _CountryIds.CountryId.EQUATORIAL_GUINEA,
329
+ flag: '🇬🇶',
330
+ name: 'Equatorial Guinea',
331
+ mask: '(###)-###-###'
332
+ }, {
333
+ code: '+241',
334
+ id: _CountryIds.CountryId.GABON,
335
+ flag: '🇬🇦',
336
+ name: 'Gabon',
337
+ mask: '(##)-##-##-##'
338
+ }, {
339
+ code: '+242',
340
+ id: _CountryIds.CountryId.REPUBLIC_OF_THE_CONGO,
341
+ flag: '🇨🇬',
342
+ name: 'Republic of the Congo',
343
+ mask: '(##)-###-####'
344
+ }, {
345
+ code: '+243',
346
+ id: _CountryIds.CountryId.DEMOCRATIC_REPUBLIC_OF_THE_CONGO,
347
+ flag: '🇨🇩',
348
+ name: 'Democratic Republic of the Congo',
349
+ mask: '(###)-###-###'
350
+ }, {
351
+ code: '+244',
352
+ id: _CountryIds.CountryId.ANGOLA,
353
+ flag: '🇦🇴',
354
+ name: 'Angola',
355
+ mask: '(###)-###-###'
356
+ }, {
357
+ code: '+245',
358
+ id: _CountryIds.CountryId.GUINEA_BISSAU,
359
+ flag: '🇬🇼',
360
+ name: 'Guinea-Bissau',
361
+ mask: '(###)-####'
362
+ }, {
363
+ code: '+246',
364
+ id: _CountryIds.CountryId.BRITISH_INDIAN_OCEAN_TERRITORY,
365
+ flag: '🇮🇴',
366
+ name: 'British Indian Ocean Territory',
367
+ mask: '(###)-####'
368
+ }, {
369
+ code: '+247',
370
+ id: _CountryIds.CountryId.ASCENSION_ISLAND,
371
+ flag: '🇦🇨',
372
+ name: 'Ascension Island',
373
+ mask: '####'
374
+ }, {
375
+ code: '+248',
376
+ id: _CountryIds.CountryId.SEYCHELLES,
377
+ flag: '🇸🇨',
378
+ name: 'Seychelles',
379
+ mask: '(#)-###-###'
380
+ }, {
381
+ code: '+249',
382
+ id: _CountryIds.CountryId.SUDAN,
383
+ flag: '🇸🇩',
384
+ name: 'Sudan',
385
+ mask: '(##)-###-####'
386
+ }, {
387
+ code: '+250',
388
+ id: _CountryIds.CountryId.RWANDA,
389
+ flag: '🇷🇼',
390
+ name: 'Rwanda',
391
+ mask: '(###)-###-###'
392
+ }, {
393
+ code: '+251',
394
+ id: _CountryIds.CountryId.ETHIOPIA,
395
+ flag: '🇪🇹',
396
+ name: 'Ethiopia',
397
+ mask: '(##)-###-####'
398
+ }, {
399
+ code: '+252',
400
+ id: _CountryIds.CountryId.SOMALIA,
401
+ flag: '🇸🇴',
402
+ name: 'Somalia',
403
+ mask: '(##)-###-####'
404
+ }, {
405
+ code: '+253',
406
+ id: _CountryIds.CountryId.DJIBOUTI,
407
+ flag: '🇩🇯',
408
+ name: 'Djibouti',
409
+ mask: '(##)-##-##-##'
410
+ }, {
411
+ code: '+254',
412
+ id: _CountryIds.CountryId.KENYA,
413
+ flag: '🇰🇪',
414
+ name: 'Kenya',
415
+ mask: '(###)-######'
416
+ }, {
417
+ code: '+255',
418
+ id: _CountryIds.CountryId.TANZANIA,
419
+ flag: '🇹🇿',
420
+ name: 'Tanzania',
421
+ mask: '(###)-###-###'
422
+ }, {
423
+ code: '+256',
424
+ id: _CountryIds.CountryId.UGANDA,
425
+ flag: '🇺🇬',
426
+ name: 'Uganda',
427
+ mask: '(###)-######'
428
+ }, {
429
+ code: '+257',
430
+ id: _CountryIds.CountryId.BURUNDI,
431
+ flag: '🇧🇮',
432
+ name: 'Burundi',
433
+ mask: '(##)-##-##-##'
434
+ }, {
435
+ code: '+258',
436
+ id: _CountryIds.CountryId.MOZAMBIQUE,
437
+ flag: '🇲🇿',
438
+ name: 'Mozambique',
439
+ mask: '(##)-###-####'
440
+ }, {
441
+ code: '+260',
442
+ id: _CountryIds.CountryId.ZAMBIA,
443
+ flag: '🇿🇲',
444
+ name: 'Zambia',
445
+ mask: '(##)-###-####'
446
+ }, {
447
+ code: '+261',
448
+ id: _CountryIds.CountryId.MADAGASCAR,
449
+ flag: '🇲🇬',
450
+ name: 'Madagascar',
451
+ mask: '(##)-##-###-##'
452
+ }, {
453
+ code: '+262',
454
+ id: _CountryIds.CountryId.REUNION,
455
+ flag: '🇷🇪',
456
+ name: 'Réunion',
457
+ mask: '(###)-##-##-##'
458
+ }, {
459
+ code: '+262',
460
+ id: _CountryIds.CountryId.MAYOTTE,
461
+ flag: '🇾🇹',
462
+ name: 'Mayotte',
463
+ mask: '(###)-##-##-##'
464
+ }, {
465
+ code: '+263',
466
+ id: _CountryIds.CountryId.ZIMBABWE,
467
+ flag: '🇿🇼',
468
+ name: 'Zimbabwe',
469
+ mask: '(##)-###-####'
470
+ }, {
471
+ code: '+264',
472
+ id: _CountryIds.CountryId.NAMIBIA,
473
+ flag: '🇳🇦',
474
+ name: 'Namibia',
475
+ mask: '(##)-###-####'
476
+ }, {
477
+ code: '+265',
478
+ id: _CountryIds.CountryId.MALAWI,
479
+ flag: '🇲🇼',
480
+ name: 'Malawi',
481
+ mask: '(###)-##-##-##'
482
+ }, {
483
+ code: '+266',
484
+ id: _CountryIds.CountryId.LESOTHO,
485
+ flag: '🇱🇸',
486
+ name: 'Lesotho',
487
+ mask: '(##)-###-###'
488
+ }, {
489
+ code: '+267',
490
+ id: _CountryIds.CountryId.BOTSWANA,
491
+ flag: '🇧🇼',
492
+ name: 'Botswana',
493
+ mask: '(##)-###-###'
494
+ }, {
495
+ code: '+268',
496
+ id: _CountryIds.CountryId.ESWATINI,
497
+ flag: '🇸🇿',
498
+ name: 'Eswatini',
499
+ mask: '(##)-##-####'
500
+ }, {
501
+ code: '+269',
502
+ id: _CountryIds.CountryId.COMOROS,
503
+ flag: '🇰🇲',
504
+ name: 'Comoros',
505
+ mask: '(###)-##-##'
506
+ }, {
507
+ code: '+27',
508
+ id: _CountryIds.CountryId.SOUTH_AFRICA,
509
+ flag: '🇿🇦',
510
+ name: 'South Africa',
511
+ mask: '(##)-###-####'
512
+ }, {
513
+ code: '+290',
514
+ id: _CountryIds.CountryId.SAINT_HELENA,
515
+ flag: '🇸🇭',
516
+ name: 'Saint Helena',
517
+ mask: '#####'
518
+ }, {
519
+ code: '+291',
520
+ id: _CountryIds.CountryId.ERITREA,
521
+ flag: '🇪🇷',
522
+ name: 'Eritrea',
523
+ mask: '(#)-###-###'
524
+ }, {
525
+ code: '+297',
526
+ id: _CountryIds.CountryId.ARUBA,
527
+ flag: '🇦🇼',
528
+ name: 'Aruba',
529
+ mask: '(###)-####'
530
+ }, {
531
+ code: '+298',
532
+ id: _CountryIds.CountryId.FAROE_ISLANDS,
533
+ flag: '🇫🇴',
534
+ name: 'Faroe Islands',
535
+ mask: '(###)-###'
536
+ }, {
537
+ code: '+299',
538
+ id: _CountryIds.CountryId.GREENLAND,
539
+ flag: '🇬🇱',
540
+ name: 'Greenland',
541
+ mask: '(##)-##-##'
542
+ },
543
+ // Zone 3 - Europe
544
+ {
545
+ code: '+30',
546
+ id: _CountryIds.CountryId.GREECE,
547
+ flag: '🇬🇷',
548
+ name: 'Greece',
549
+ mask: '(###)-###-####'
550
+ }, {
551
+ code: '+31',
552
+ id: _CountryIds.CountryId.NETHERLANDS,
553
+ flag: '🇳🇱',
554
+ name: 'Netherlands',
555
+ mask: '(##)-###-####'
556
+ }, {
557
+ code: '+32',
558
+ id: _CountryIds.CountryId.BELGIUM,
559
+ flag: '🇧🇪',
560
+ name: 'Belgium',
561
+ mask: '(###)-##-##-##'
562
+ }, {
563
+ code: '+33',
564
+ id: _CountryIds.CountryId.FRANCE,
565
+ flag: '🇫🇷',
566
+ name: 'France',
567
+ mask: '(#)-##-##-##-##'
568
+ }, {
569
+ code: '+34',
570
+ id: _CountryIds.CountryId.SPAIN,
571
+ flag: '🇪🇸',
572
+ name: 'Spain',
573
+ mask: '(###)-###-###'
574
+ }, {
575
+ code: '+350',
576
+ id: _CountryIds.CountryId.GIBRALTAR,
577
+ flag: '🇬🇮',
578
+ name: 'Gibraltar',
579
+ mask: '#####'
580
+ }, {
581
+ code: '+351',
582
+ id: _CountryIds.CountryId.PORTUGAL,
583
+ flag: '🇵🇹',
584
+ name: 'Portugal',
585
+ mask: '(###)-###-###'
586
+ }, {
587
+ code: '+352',
588
+ id: _CountryIds.CountryId.LUXEMBOURG,
589
+ flag: '🇱🇺',
590
+ name: 'Luxembourg',
591
+ mask: '(###)-###-###'
592
+ }, {
593
+ code: '+353',
594
+ id: _CountryIds.CountryId.IRELAND,
595
+ flag: '🇮🇪',
596
+ name: 'Ireland',
597
+ mask: '(##)-###-####'
598
+ }, {
599
+ code: '+354',
600
+ id: _CountryIds.CountryId.ICELAND,
601
+ flag: '🇮🇸',
602
+ name: 'Iceland',
603
+ mask: '(###)-####'
604
+ }, {
605
+ code: '+355',
606
+ id: _CountryIds.CountryId.ALBANIA,
607
+ flag: '🇦🇱',
608
+ name: 'Albania',
609
+ mask: '(###)-###-###'
610
+ }, {
611
+ code: '+356',
612
+ id: _CountryIds.CountryId.MALTA,
613
+ flag: '🇲🇹',
614
+ name: 'Malta',
615
+ mask: '(####)-####'
616
+ }, {
617
+ code: '+357',
618
+ id: _CountryIds.CountryId.CYPRUS,
619
+ flag: '🇨🇾',
620
+ name: 'Cyprus',
621
+ mask: '(##)-######'
622
+ }, {
623
+ code: '+358',
624
+ id: _CountryIds.CountryId.FINLAND,
625
+ flag: '🇫🇮',
626
+ name: 'Finland',
627
+ mask: '(##)-###-##-##'
628
+ }, {
629
+ code: '+358',
630
+ id: _CountryIds.CountryId.ALAND_ISLANDS,
631
+ flag: '🇦🇽',
632
+ name: 'Ã…land Islands',
633
+ mask: '(##)-###-##-##'
634
+ }, {
635
+ code: '+359',
636
+ id: _CountryIds.CountryId.BULGARIA,
637
+ flag: '🇧🇬',
638
+ name: 'Bulgaria',
639
+ mask: '(##)-###-####'
640
+ }, {
641
+ code: '+36',
642
+ id: _CountryIds.CountryId.HUNGARY,
643
+ flag: '🇭🇺',
644
+ name: 'Hungary',
645
+ mask: '(##)-###-####'
646
+ }, {
647
+ code: '+370',
648
+ id: _CountryIds.CountryId.LITHUANIA,
649
+ flag: '🇱🇹',
650
+ name: 'Lithuania',
651
+ mask: '(###)-##-###'
652
+ }, {
653
+ code: '+371',
654
+ id: _CountryIds.CountryId.LATVIA,
655
+ flag: '🇱🇻',
656
+ name: 'Latvia',
657
+ mask: '(##)-###-###'
658
+ }, {
659
+ code: '+372',
660
+ id: _CountryIds.CountryId.ESTONIA,
661
+ flag: '🇪🇪',
662
+ name: 'Estonia',
663
+ mask: '(##)-###-###'
664
+ }, {
665
+ code: '+373',
666
+ id: _CountryIds.CountryId.MOLDOVA,
667
+ flag: '🇲🇩',
668
+ name: 'Moldova',
669
+ mask: '(##)-###-###'
670
+ }, {
671
+ code: '+374',
672
+ id: _CountryIds.CountryId.ARMENIA,
673
+ flag: '🇦🇲',
674
+ name: 'Armenia',
675
+ mask: '(##)-###-###'
676
+ }, {
677
+ code: '+375',
678
+ id: _CountryIds.CountryId.BELARUS,
679
+ flag: '🇧🇾',
680
+ name: 'Belarus',
681
+ mask: '(##)-###-##-##'
682
+ }, {
683
+ code: '+376',
684
+ id: _CountryIds.CountryId.ANDORRA,
685
+ flag: '🇦🇩',
686
+ name: 'Andorra',
687
+ mask: '(###)-###'
688
+ }, {
689
+ code: '+377',
690
+ id: _CountryIds.CountryId.MONACO,
691
+ flag: '🇲🇨',
692
+ name: 'Monaco',
693
+ mask: '(##)-##-##-##'
694
+ }, {
695
+ code: '+378',
696
+ id: _CountryIds.CountryId.SAN_MARINO,
697
+ flag: '🇸🇲',
698
+ name: 'San Marino',
699
+ mask: '(####)-######'
700
+ }, {
701
+ code: '+380',
702
+ id: _CountryIds.CountryId.UKRAINE,
703
+ flag: '🇺🇦',
704
+ name: 'Ukraine',
705
+ mask: '(##)-###-##-##'
706
+ }, {
707
+ code: '+381',
708
+ id: _CountryIds.CountryId.SERBIA,
709
+ flag: '🇷🇸',
710
+ name: 'Serbia',
711
+ mask: '(##)-###-####'
712
+ }, {
713
+ code: '+382',
714
+ id: _CountryIds.CountryId.MONTENEGRO,
715
+ flag: '🇲🇪',
716
+ name: 'Montenegro',
717
+ mask: '(##)-###-###'
718
+ }, {
719
+ code: '+383',
720
+ id: _CountryIds.CountryId.KOSOVO,
721
+ flag: '🇽🇰',
722
+ name: 'Kosovo',
723
+ mask: '(##)-###-###'
724
+ }, {
725
+ code: '+385',
726
+ id: _CountryIds.CountryId.CROATIA,
727
+ flag: '🇭🇷',
728
+ name: 'Croatia',
729
+ mask: '(##)-###-###'
730
+ }, {
731
+ code: '+386',
732
+ id: _CountryIds.CountryId.SLOVENIA,
733
+ flag: '🇸🇮',
734
+ name: 'Slovenia',
735
+ mask: '(##)-###-###'
736
+ }, {
737
+ code: '+387',
738
+ id: _CountryIds.CountryId.BOSNIA_AND_HERZEGOVINA,
739
+ flag: '🇧🇦',
740
+ name: 'Bosnia and Herzegovina',
741
+ mask: '(##)-###-###'
742
+ }, {
743
+ code: '+389',
744
+ id: _CountryIds.CountryId.NORTH_MACEDONIA,
745
+ flag: '🇲🇰',
746
+ name: 'North Macedonia',
747
+ mask: '(##)-###-###'
748
+ }, {
749
+ code: '+39',
750
+ id: _CountryIds.CountryId.ITALY,
751
+ flag: '🇮🇹',
752
+ name: 'Italy',
753
+ mask: '(###)-###-####'
754
+ }, {
755
+ code: '+39',
756
+ id: _CountryIds.CountryId.VATICAN_CITY,
757
+ flag: '🇻🇦',
758
+ name: 'Vatican City',
759
+ mask: '(##)-####-####'
760
+ }, {
761
+ code: '+40',
762
+ id: _CountryIds.CountryId.ROMANIA,
763
+ flag: '🇷🇴',
764
+ name: 'Romania',
765
+ mask: '(###)-###-###'
766
+ }, {
767
+ code: '+41',
768
+ id: _CountryIds.CountryId.SWITZERLAND,
769
+ flag: '🇨🇭',
770
+ name: 'Switzerland',
771
+ mask: '(##)-###-##-##'
772
+ }, {
773
+ code: '+420',
774
+ id: _CountryIds.CountryId.CZECH_REPUBLIC,
775
+ flag: '🇨🇿',
776
+ name: 'Czech Republic',
777
+ mask: '(###)-###-###'
778
+ }, {
779
+ code: '+421',
780
+ id: _CountryIds.CountryId.SLOVAKIA,
781
+ flag: '🇸🇰',
782
+ name: 'Slovakia',
783
+ mask: '(###)-###-###'
784
+ }, {
785
+ code: '+423',
786
+ id: _CountryIds.CountryId.LIECHTENSTEIN,
787
+ flag: '🇱🇮',
788
+ name: 'Liechtenstein',
789
+ mask: '(###)-####'
790
+ }, {
791
+ code: '+43',
792
+ id: _CountryIds.CountryId.AUSTRIA,
793
+ flag: '🇦🇹',
794
+ name: 'Austria',
795
+ mask: '(###)-###-####'
796
+ }, {
797
+ code: '+44',
798
+ id: _CountryIds.CountryId.UNITED_KINGDOM,
799
+ flag: '🇬🇧',
800
+ name: 'United Kingdom',
801
+ mask: '(####)-######'
802
+ }, {
803
+ code: '+44',
804
+ id: _CountryIds.CountryId.GUERNSEY,
805
+ flag: '🇬🇬',
806
+ name: 'Guernsey',
807
+ mask: '(####)-######'
808
+ }, {
809
+ code: '+44',
810
+ id: _CountryIds.CountryId.ISLE_OF_MAN,
811
+ flag: '🇮🇲',
812
+ name: 'Isle of Man',
813
+ mask: '(####)-######'
814
+ }, {
815
+ code: '+44',
816
+ id: _CountryIds.CountryId.JERSEY,
817
+ flag: '🇯🇪',
818
+ name: 'Jersey',
819
+ mask: '(####)-######'
820
+ }, {
821
+ code: '+45',
822
+ id: _CountryIds.CountryId.DENMARK,
823
+ flag: '🇩🇰',
824
+ name: 'Denmark',
825
+ mask: '(##)-##-##-##'
826
+ }, {
827
+ code: '+46',
828
+ id: _CountryIds.CountryId.SWEDEN,
829
+ flag: '🇸🇪',
830
+ name: 'Sweden',
831
+ mask: '(##)-###-##-##'
832
+ }, {
833
+ code: '+47',
834
+ id: _CountryIds.CountryId.NORWAY,
835
+ flag: '🇳🇴',
836
+ name: 'Norway',
837
+ mask: '(###)-##-###'
838
+ }, {
839
+ code: '+47',
840
+ id: _CountryIds.CountryId.SVALBARD_AND_JAN_MAYEN,
841
+ flag: '🇸🇯',
842
+ name: 'Svalbard and Jan Mayen',
843
+ mask: '(###)-##-###'
844
+ }, {
845
+ code: '+48',
846
+ id: _CountryIds.CountryId.POLAND,
847
+ flag: '🇵🇱',
848
+ name: 'Poland',
849
+ mask: '(###)-###-###'
850
+ }, {
851
+ code: '+49',
852
+ id: _CountryIds.CountryId.GERMANY,
853
+ flag: '🇩🇪',
854
+ name: 'Germany',
855
+ mask: '(###)-#######'
856
+ },
857
+ // Zone 5 - Central & South America, Caribbean
858
+ {
859
+ code: '+500',
860
+ id: _CountryIds.CountryId.FALKLAND_ISLANDS,
861
+ flag: '🇫🇰',
862
+ name: 'Falkland Islands',
863
+ mask: '#####'
864
+ }, {
865
+ code: '+500',
866
+ id: _CountryIds.CountryId.SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS,
867
+ flag: '🇬🇸',
868
+ name: 'South Georgia and the South Sandwich Islands',
869
+ mask: '#####'
870
+ }, {
871
+ code: '+501',
872
+ id: _CountryIds.CountryId.BELIZE,
873
+ flag: '🇧🇿',
874
+ name: 'Belize',
875
+ mask: '(###)-####'
876
+ }, {
877
+ code: '+502',
878
+ id: _CountryIds.CountryId.GUATEMALA,
879
+ flag: '🇬🇹',
880
+ name: 'Guatemala',
881
+ mask: '(####)-####'
882
+ }, {
883
+ code: '+503',
884
+ id: _CountryIds.CountryId.EL_SALVADOR,
885
+ flag: '🇸🇻',
886
+ name: 'El Salvador',
887
+ mask: '(####)-####'
888
+ }, {
889
+ code: '+504',
890
+ id: _CountryIds.CountryId.HONDURAS,
891
+ flag: '🇭🇳',
892
+ name: 'Honduras',
893
+ mask: '(####)-####'
894
+ }, {
895
+ code: '+505',
896
+ id: _CountryIds.CountryId.NICARAGUA,
897
+ flag: '🇳🇮',
898
+ name: 'Nicaragua',
899
+ mask: '(####)-####'
900
+ }, {
901
+ code: '+506',
902
+ id: _CountryIds.CountryId.COSTA_RICA,
903
+ flag: '🇨🇷',
904
+ name: 'Costa Rica',
905
+ mask: '(####)-####'
906
+ }, {
907
+ code: '+507',
908
+ id: _CountryIds.CountryId.PANAMA,
909
+ flag: '🇵🇦',
910
+ name: 'Panama',
911
+ mask: '(####)-####'
912
+ }, {
913
+ code: '+508',
914
+ id: _CountryIds.CountryId.SAINT_PIERRE_AND_MIQUELON,
915
+ flag: '🇵🇲',
916
+ name: 'Saint Pierre and Miquelon',
917
+ mask: '(##)-##-##'
918
+ }, {
919
+ code: '+509',
920
+ id: _CountryIds.CountryId.HAITI,
921
+ flag: '🇭🇹',
922
+ name: 'Haiti',
923
+ mask: '(##)-##-####'
924
+ }, {
925
+ code: '+51',
926
+ id: _CountryIds.CountryId.PERU,
927
+ flag: '🇵🇪',
928
+ name: 'Peru',
929
+ mask: '(###)-###-###'
930
+ }, {
931
+ code: '+52',
932
+ id: _CountryIds.CountryId.MEXICO,
933
+ flag: '🇲🇽',
934
+ name: 'Mexico',
935
+ mask: '(##)-####-####'
936
+ }, {
937
+ code: '+53',
938
+ id: _CountryIds.CountryId.CUBA,
939
+ flag: '🇨🇺',
940
+ name: 'Cuba',
941
+ mask: '(#)-###-####'
942
+ }, {
943
+ code: '+54',
944
+ id: _CountryIds.CountryId.ARGENTINA,
945
+ flag: '🇦🇷',
946
+ name: 'Argentina',
947
+ mask: '(##)-####-####'
948
+ }, {
949
+ code: '+55',
950
+ id: _CountryIds.CountryId.BRAZIL,
951
+ flag: '🇧🇷',
952
+ name: 'Brazil',
953
+ mask: '(##)-#####-####'
954
+ }, {
955
+ code: '+56',
956
+ id: _CountryIds.CountryId.CHILE,
957
+ flag: '🇨🇱',
958
+ name: 'Chile',
959
+ mask: '(#)-####-####'
960
+ }, {
961
+ code: '+57',
962
+ id: _CountryIds.CountryId.COLOMBIA,
963
+ flag: '🇨🇴',
964
+ name: 'Colombia',
965
+ mask: '(###)-###-####'
966
+ }, {
967
+ code: '+58',
968
+ id: _CountryIds.CountryId.VENEZUELA,
969
+ flag: '🇻🇪',
970
+ name: 'Venezuela',
971
+ mask: '(###)-###-####'
972
+ }, {
973
+ code: '+590',
974
+ id: _CountryIds.CountryId.GUADELOUPE,
975
+ flag: '🇬🇵',
976
+ name: 'Guadeloupe',
977
+ mask: '(###)-##-##-##'
978
+ }, {
979
+ code: '+590',
980
+ id: _CountryIds.CountryId.SAINT_BARTHELEMY,
981
+ flag: '🇧🇱',
982
+ name: 'Saint Barthélemy',
983
+ mask: '(###)-##-##-##'
984
+ }, {
985
+ code: '+590',
986
+ id: _CountryIds.CountryId.SAINT_MARTIN,
987
+ flag: '🇲🇫',
988
+ name: 'Saint Martin',
989
+ mask: '(###)-##-##-##'
990
+ }, {
991
+ code: '+591',
992
+ id: _CountryIds.CountryId.BOLIVIA,
993
+ flag: '🇧🇴',
994
+ name: 'Bolivia',
995
+ mask: '(#)-###-####'
996
+ }, {
997
+ code: '+592',
998
+ id: _CountryIds.CountryId.GUYANA,
999
+ flag: '🇬🇾',
1000
+ name: 'Guyana',
1001
+ mask: '(###)-####'
1002
+ }, {
1003
+ code: '+593',
1004
+ id: _CountryIds.CountryId.ECUADOR,
1005
+ flag: '🇪🇨',
1006
+ name: 'Ecuador',
1007
+ mask: '(##)-###-####'
1008
+ }, {
1009
+ code: '+594',
1010
+ id: _CountryIds.CountryId.FRENCH_GUIANA,
1011
+ flag: '🇬🇫',
1012
+ name: 'French Guiana',
1013
+ mask: '(###)-##-##-##'
1014
+ }, {
1015
+ code: '+595',
1016
+ id: _CountryIds.CountryId.PARAGUAY,
1017
+ flag: '🇵🇾',
1018
+ name: 'Paraguay',
1019
+ mask: '(###)-###-###'
1020
+ }, {
1021
+ code: '+596',
1022
+ id: _CountryIds.CountryId.MARTINIQUE,
1023
+ flag: '🇲🇶',
1024
+ name: 'Martinique',
1025
+ mask: '(###)-##-##-##'
1026
+ }, {
1027
+ code: '+597',
1028
+ id: _CountryIds.CountryId.SURINAME,
1029
+ flag: '🇸🇷',
1030
+ name: 'Suriname',
1031
+ mask: '(###)-####'
1032
+ }, {
1033
+ code: '+598',
1034
+ id: _CountryIds.CountryId.URUGUAY,
1035
+ flag: '🇺🇾',
1036
+ name: 'Uruguay',
1037
+ mask: '(#)-###-##-##'
1038
+ }, {
1039
+ code: '+599',
1040
+ id: _CountryIds.CountryId.CURACAO,
1041
+ flag: '🇨🇼',
1042
+ name: 'Curaçao',
1043
+ mask: '(###)-####'
1044
+ }, {
1045
+ code: '+599',
1046
+ id: _CountryIds.CountryId.CARIBBEAN_NETHERLANDS,
1047
+ flag: '🇧🇶',
1048
+ name: 'Caribbean Netherlands',
1049
+ mask: '(###)-####'
1050
+ },
1051
+ // Zone 6 - Southeast Asia & Oceania
1052
+ {
1053
+ code: '+60',
1054
+ id: _CountryIds.CountryId.MALAYSIA,
1055
+ flag: '🇲🇾',
1056
+ name: 'Malaysia',
1057
+ mask: '(##)-####-####'
1058
+ }, {
1059
+ code: '+61',
1060
+ id: _CountryIds.CountryId.AUSTRALIA,
1061
+ flag: '🇦🇺',
1062
+ name: 'Australia',
1063
+ mask: '(###)-###-###'
1064
+ }, {
1065
+ code: '+61',
1066
+ id: _CountryIds.CountryId.CHRISTMAS_ISLAND,
1067
+ flag: '🇨🇽',
1068
+ name: 'Christmas Island',
1069
+ mask: '(###)-###-###'
1070
+ }, {
1071
+ code: '+61',
1072
+ id: _CountryIds.CountryId.COCOS_KEELING_ISLANDS,
1073
+ flag: '🇨🇨',
1074
+ name: 'Cocos (Keeling) Islands',
1075
+ mask: '(###)-###-###'
1076
+ }, {
1077
+ code: '+62',
1078
+ id: _CountryIds.CountryId.INDONESIA,
1079
+ flag: '🇮🇩',
1080
+ name: 'Indonesia',
1081
+ mask: '(###)-####-####'
1082
+ }, {
1083
+ code: '+63',
1084
+ id: _CountryIds.CountryId.PHILIPPINES,
1085
+ flag: '🇵🇭',
1086
+ name: 'Philippines',
1087
+ mask: '(###)-###-####'
1088
+ }, {
1089
+ code: '+64',
1090
+ id: _CountryIds.CountryId.NEW_ZEALAND,
1091
+ flag: '🇳🇿',
1092
+ name: 'New Zealand',
1093
+ mask: '(##)-###-####'
1094
+ }, {
1095
+ code: '+64',
1096
+ id: _CountryIds.CountryId.PITCAIRN_ISLANDS,
1097
+ flag: '🇵🇳',
1098
+ name: 'Pitcairn Islands',
1099
+ mask: '(####)-####'
1100
+ }, {
1101
+ code: '+65',
1102
+ id: _CountryIds.CountryId.SINGAPORE,
1103
+ flag: '🇸🇬',
1104
+ name: 'Singapore',
1105
+ mask: '(####)-####'
1106
+ }, {
1107
+ code: '+66',
1108
+ id: _CountryIds.CountryId.THAILAND,
1109
+ flag: '🇹🇭',
1110
+ name: 'Thailand',
1111
+ mask: '(##)-###-####'
1112
+ }, {
1113
+ code: '+670',
1114
+ id: _CountryIds.CountryId.TIMOR_LESTE,
1115
+ flag: '🇹🇱',
1116
+ name: 'Timor-Leste',
1117
+ mask: '(###)-####'
1118
+ }, {
1119
+ code: '+672',
1120
+ id: _CountryIds.CountryId.NORFOLK_ISLAND,
1121
+ flag: '🇳🇫',
1122
+ name: 'Norfolk Island',
1123
+ mask: '(##)-####'
1124
+ }, {
1125
+ code: '+673',
1126
+ id: _CountryIds.CountryId.BRUNEI,
1127
+ flag: '🇧🇳',
1128
+ name: 'Brunei',
1129
+ mask: '(###)-####'
1130
+ }, {
1131
+ code: '+674',
1132
+ id: _CountryIds.CountryId.NAURU,
1133
+ flag: '🇳🇷',
1134
+ name: 'Nauru',
1135
+ mask: '(###)-####'
1136
+ }, {
1137
+ code: '+675',
1138
+ id: _CountryIds.CountryId.PAPUA_NEW_GUINEA,
1139
+ flag: '🇵🇬',
1140
+ name: 'Papua New Guinea',
1141
+ mask: '(##)-###-###'
1142
+ }, {
1143
+ code: '+676',
1144
+ id: _CountryIds.CountryId.TONGA,
1145
+ flag: '🇹🇴',
1146
+ name: 'Tonga',
1147
+ mask: '(###)-####'
1148
+ }, {
1149
+ code: '+677',
1150
+ id: _CountryIds.CountryId.SOLOMON_ISLANDS,
1151
+ flag: '🇸🇧',
1152
+ name: 'Solomon Islands',
1153
+ mask: '(###)-####'
1154
+ }, {
1155
+ code: '+678',
1156
+ id: _CountryIds.CountryId.VANUATU,
1157
+ flag: '🇻🇺',
1158
+ name: 'Vanuatu',
1159
+ mask: '(###)-####'
1160
+ }, {
1161
+ code: '+679',
1162
+ id: _CountryIds.CountryId.FIJI,
1163
+ flag: '🇫🇯',
1164
+ name: 'Fiji',
1165
+ mask: '(###)-####'
1166
+ }, {
1167
+ code: '+680',
1168
+ id: _CountryIds.CountryId.PALAU,
1169
+ flag: '🇵🇼',
1170
+ name: 'Palau',
1171
+ mask: '(###)-####'
1172
+ }, {
1173
+ code: '+681',
1174
+ id: _CountryIds.CountryId.WALLIS_AND_FUTUNA,
1175
+ flag: '🇼🇫',
1176
+ name: 'Wallis and Futuna',
1177
+ mask: '(##)-####'
1178
+ }, {
1179
+ code: '+682',
1180
+ id: _CountryIds.CountryId.COOK_ISLANDS,
1181
+ flag: '🇨🇰',
1182
+ name: 'Cook Islands',
1183
+ mask: '(##)-###'
1184
+ }, {
1185
+ code: '+683',
1186
+ id: _CountryIds.CountryId.NIUE,
1187
+ flag: '🇳🇺',
1188
+ name: 'Niue',
1189
+ mask: '####'
1190
+ }, {
1191
+ code: '+685',
1192
+ id: _CountryIds.CountryId.SAMOA,
1193
+ flag: '🇼🇸',
1194
+ name: 'Samoa',
1195
+ mask: '(##)-#####'
1196
+ }, {
1197
+ code: '+686',
1198
+ id: _CountryIds.CountryId.KIRIBATI,
1199
+ flag: '🇰🇮',
1200
+ name: 'Kiribati',
1201
+ mask: '(##)-##-###'
1202
+ }, {
1203
+ code: '+687',
1204
+ id: _CountryIds.CountryId.NEW_CALEDONIA,
1205
+ flag: '🇳🇨',
1206
+ name: 'New Caledonia',
1207
+ mask: '(##)-##-##'
1208
+ }, {
1209
+ code: '+688',
1210
+ id: _CountryIds.CountryId.TUVALU,
1211
+ flag: '🇹🇻',
1212
+ name: 'Tuvalu',
1213
+ mask: '(##)-###'
1214
+ }, {
1215
+ code: '+689',
1216
+ id: _CountryIds.CountryId.FRENCH_POLYNESIA,
1217
+ flag: '🇵🇫',
1218
+ name: 'French Polynesia',
1219
+ mask: '(##)-##-##-##'
1220
+ }, {
1221
+ code: '+690',
1222
+ id: _CountryIds.CountryId.TOKELAU,
1223
+ flag: '🇹🇰',
1224
+ name: 'Tokelau',
1225
+ mask: '####'
1226
+ }, {
1227
+ code: '+691',
1228
+ id: _CountryIds.CountryId.MICRONESIA,
1229
+ flag: '🇫🇲',
1230
+ name: 'Micronesia',
1231
+ mask: '(###)-####'
1232
+ }, {
1233
+ code: '+692',
1234
+ id: _CountryIds.CountryId.MARSHALL_ISLANDS,
1235
+ flag: '🇲🇭',
1236
+ name: 'Marshall Islands',
1237
+ mask: '(###)-####'
1238
+ },
1239
+ // Zone 7 - Russia & Kazakhstan
1240
+ {
1241
+ code: '+7',
1242
+ id: _CountryIds.CountryId.RUSSIA,
1243
+ flag: '🇷🇺',
1244
+ name: 'Russia',
1245
+ mask: '(###)-###-##-##'
1246
+ }, {
1247
+ code: '+7',
1248
+ id: _CountryIds.CountryId.KAZAKHSTAN,
1249
+ flag: '🇰🇿',
1250
+ name: 'Kazakhstan',
1251
+ mask: '(###)-###-##-##'
1252
+ },
1253
+ // Zone 8 - East Asia
1254
+ {
1255
+ code: '+81',
1256
+ id: _CountryIds.CountryId.JAPAN,
1257
+ flag: '🇯🇵',
1258
+ name: 'Japan',
1259
+ mask: '(##)-####-####'
1260
+ }, {
1261
+ code: '+82',
1262
+ id: _CountryIds.CountryId.SOUTH_KOREA,
1263
+ flag: '🇰🇷',
1264
+ name: 'South Korea',
1265
+ mask: '(##)-####-####'
1266
+ }, {
1267
+ code: '+84',
1268
+ id: _CountryIds.CountryId.VIETNAM,
1269
+ flag: '🇻🇳',
1270
+ name: 'Vietnam',
1271
+ mask: '(###)-###-####'
1272
+ }, {
1273
+ code: '+850',
1274
+ id: _CountryIds.CountryId.NORTH_KOREA,
1275
+ flag: '🇰🇵',
1276
+ name: 'North Korea',
1277
+ mask: '(###)-###-####'
1278
+ }, {
1279
+ code: '+852',
1280
+ id: _CountryIds.CountryId.HONG_KONG,
1281
+ flag: '🇭🇰',
1282
+ name: 'Hong Kong',
1283
+ mask: '(####)-####'
1284
+ }, {
1285
+ code: '+853',
1286
+ id: _CountryIds.CountryId.MACAU,
1287
+ flag: '🇲🇴',
1288
+ name: 'Macau',
1289
+ mask: '(####)-####'
1290
+ }, {
1291
+ code: '+855',
1292
+ id: _CountryIds.CountryId.CAMBODIA,
1293
+ flag: '🇰🇭',
1294
+ name: 'Cambodia',
1295
+ mask: '(##)-###-###'
1296
+ }, {
1297
+ code: '+856',
1298
+ id: _CountryIds.CountryId.LAOS,
1299
+ flag: '🇱🇦',
1300
+ name: 'Laos',
1301
+ mask: '(##)-###-####'
1302
+ }, {
1303
+ code: '+86',
1304
+ id: _CountryIds.CountryId.CHINA,
1305
+ flag: '🇨🇳',
1306
+ name: 'China',
1307
+ mask: '(###)-####-####'
1308
+ }, {
1309
+ code: '+880',
1310
+ id: _CountryIds.CountryId.BANGLADESH,
1311
+ flag: '🇧🇩',
1312
+ name: 'Bangladesh',
1313
+ mask: '(##)-####-####'
1314
+ }, {
1315
+ code: '+886',
1316
+ id: _CountryIds.CountryId.TAIWAN,
1317
+ flag: '🇹🇼',
1318
+ name: 'Taiwan',
1319
+ mask: '(###)-###-####'
1320
+ },
1321
+ // Zone 9 - South Asia, Middle East & Central Asia
1322
+ {
1323
+ code: '+90',
1324
+ id: _CountryIds.CountryId.TURKEY,
1325
+ flag: '🇹🇷',
1326
+ name: 'Turkey',
1327
+ mask: '(###)-###-##-##'
1328
+ }, {
1329
+ code: '+91',
1330
+ id: _CountryIds.CountryId.INDIA,
1331
+ flag: '🇮🇳',
1332
+ name: 'India',
1333
+ mask: '(#####)-#####'
1334
+ }, {
1335
+ code: '+92',
1336
+ id: _CountryIds.CountryId.PAKISTAN,
1337
+ flag: '🇵🇰',
1338
+ name: 'Pakistan',
1339
+ mask: '(###)-###-####'
1340
+ }, {
1341
+ code: '+93',
1342
+ id: _CountryIds.CountryId.AFGHANISTAN,
1343
+ flag: '🇦🇫',
1344
+ name: 'Afghanistan',
1345
+ mask: '(##)-###-####'
1346
+ }, {
1347
+ code: '+94',
1348
+ id: _CountryIds.CountryId.SRI_LANKA,
1349
+ flag: '🇱🇰',
1350
+ name: 'Sri Lanka',
1351
+ mask: '(##)-###-####'
1352
+ }, {
1353
+ code: '+95',
1354
+ id: _CountryIds.CountryId.MYANMAR,
1355
+ flag: '🇲🇲',
1356
+ name: 'Myanmar',
1357
+ mask: '(##)-###-####'
1358
+ }, {
1359
+ code: '+960',
1360
+ id: _CountryIds.CountryId.MALDIVES,
1361
+ flag: '🇲🇻',
1362
+ name: 'Maldives',
1363
+ mask: '(###)-####'
1364
+ }, {
1365
+ code: '+961',
1366
+ id: _CountryIds.CountryId.LEBANON,
1367
+ flag: '🇱🇧',
1368
+ name: 'Lebanon',
1369
+ mask: '(##)-###-###'
1370
+ }, {
1371
+ code: '+962',
1372
+ id: _CountryIds.CountryId.JORDAN,
1373
+ flag: '🇯🇴',
1374
+ name: 'Jordan',
1375
+ mask: '(##)-###-####'
1376
+ }, {
1377
+ code: '+963',
1378
+ id: _CountryIds.CountryId.SYRIA,
1379
+ flag: '🇸🇾',
1380
+ name: 'Syria',
1381
+ mask: '(###)-###-###'
1382
+ }, {
1383
+ code: '+964',
1384
+ id: _CountryIds.CountryId.IRAQ,
1385
+ flag: '🇮🇶',
1386
+ name: 'Iraq',
1387
+ mask: '(###)-###-####'
1388
+ }, {
1389
+ code: '+965',
1390
+ id: _CountryIds.CountryId.KUWAIT,
1391
+ flag: '🇰🇼',
1392
+ name: 'Kuwait',
1393
+ mask: '(####)-####'
1394
+ }, {
1395
+ code: '+966',
1396
+ id: _CountryIds.CountryId.SAUDI_ARABIA,
1397
+ flag: '🇸🇦',
1398
+ name: 'Saudi Arabia',
1399
+ mask: '(##)-###-####'
1400
+ }, {
1401
+ code: '+967',
1402
+ id: _CountryIds.CountryId.YEMEN,
1403
+ flag: '🇾🇪',
1404
+ name: 'Yemen',
1405
+ mask: '(###)-###-###'
1406
+ }, {
1407
+ code: '+968',
1408
+ id: _CountryIds.CountryId.OMAN,
1409
+ flag: '🇴🇲',
1410
+ name: 'Oman',
1411
+ mask: '(####)-####'
1412
+ }, {
1413
+ code: '+970',
1414
+ id: _CountryIds.CountryId.PALESTINIAN_TERRITORIES,
1415
+ flag: '🇵🇸',
1416
+ name: 'Palestinian Territories',
1417
+ mask: '(##)-###-####'
1418
+ }, {
1419
+ code: '+971',
1420
+ id: _CountryIds.CountryId.UNITED_ARAB_EMIRATES,
1421
+ flag: '🇦🇪',
1422
+ name: 'United Arab Emirates',
1423
+ mask: '(##)-###-####'
1424
+ }, {
1425
+ code: '+972',
1426
+ id: _CountryIds.CountryId.ISRAEL,
1427
+ flag: '🇮🇱',
1428
+ name: 'Israel',
1429
+ mask: '(##)-###-####'
1430
+ }, {
1431
+ code: '+973',
1432
+ id: _CountryIds.CountryId.BAHRAIN,
1433
+ flag: '🇧🇭',
1434
+ name: 'Bahrain',
1435
+ mask: '(####)-####'
1436
+ }, {
1437
+ code: '+974',
1438
+ id: _CountryIds.CountryId.QATAR,
1439
+ flag: '🇶🇦',
1440
+ name: 'Qatar',
1441
+ mask: '(####)-####'
1442
+ }, {
1443
+ code: '+975',
1444
+ id: _CountryIds.CountryId.BHUTAN,
1445
+ flag: '🇧🇹',
1446
+ name: 'Bhutan',
1447
+ mask: '(##)-###-###'
1448
+ }, {
1449
+ code: '+976',
1450
+ id: _CountryIds.CountryId.MONGOLIA,
1451
+ flag: '🇲🇳',
1452
+ name: 'Mongolia',
1453
+ mask: '(####)-####'
1454
+ }, {
1455
+ code: '+977',
1456
+ id: _CountryIds.CountryId.NEPAL,
1457
+ flag: '🇳🇵',
1458
+ name: 'Nepal',
1459
+ mask: '(##)-###-####'
1460
+ }, {
1461
+ code: '+98',
1462
+ id: _CountryIds.CountryId.IRAN,
1463
+ flag: '🇮🇷',
1464
+ name: 'Iran',
1465
+ mask: '(###)-###-####'
1466
+ }, {
1467
+ code: '+992',
1468
+ id: _CountryIds.CountryId.TAJIKISTAN,
1469
+ flag: '🇹🇯',
1470
+ name: 'Tajikistan',
1471
+ mask: '(##)-###-####'
1472
+ }, {
1473
+ code: '+993',
1474
+ id: _CountryIds.CountryId.TURKMENISTAN,
1475
+ flag: '🇹🇲',
1476
+ name: 'Turkmenistan',
1477
+ mask: '(##)-###-####'
1478
+ }, {
1479
+ code: '+994',
1480
+ id: _CountryIds.CountryId.AZERBAIJAN,
1481
+ flag: '🇦🇿',
1482
+ name: 'Azerbaijan',
1483
+ mask: '(##)-###-##-##'
1484
+ }, {
1485
+ code: '+995',
1486
+ id: _CountryIds.CountryId.GEORGIA,
1487
+ flag: '🇬🇪',
1488
+ name: 'Georgia',
1489
+ mask: '(###)-###-###'
1490
+ }, {
1491
+ code: '+996',
1492
+ id: _CountryIds.CountryId.KYRGYZSTAN,
1493
+ flag: '🇰🇬',
1494
+ name: 'Kyrgyzstan',
1495
+ mask: '(###)-###-###'
1496
+ }, {
1497
+ code: '+998',
1498
+ id: _CountryIds.CountryId.UZBEKISTAN,
1499
+ flag: '🇺🇿',
1500
+ name: 'Uzbekistan',
1501
+ mask: '(##)-###-##-##'
1502
+ }];
1503
+ //# sourceMappingURL=regions.js.map