vue-tel-input 5.14.1 → 5.15.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.
@@ -1429,6 +1429,57 @@ module.exports = function (V, P) {
1429
1429
  };
1430
1430
 
1431
1431
 
1432
+ /***/ }),
1433
+
1434
+ /***/ 647:
1435
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1436
+
1437
+ var uncurryThis = __webpack_require__(1702);
1438
+ var toObject = __webpack_require__(7908);
1439
+
1440
+ var floor = Math.floor;
1441
+ var charAt = uncurryThis(''.charAt);
1442
+ var replace = uncurryThis(''.replace);
1443
+ var stringSlice = uncurryThis(''.slice);
1444
+ var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
1445
+ var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
1446
+
1447
+ // `GetSubstitution` abstract operation
1448
+ // https://tc39.es/ecma262/#sec-getsubstitution
1449
+ module.exports = function (matched, str, position, captures, namedCaptures, replacement) {
1450
+ var tailPos = position + matched.length;
1451
+ var m = captures.length;
1452
+ var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
1453
+ if (namedCaptures !== undefined) {
1454
+ namedCaptures = toObject(namedCaptures);
1455
+ symbols = SUBSTITUTION_SYMBOLS;
1456
+ }
1457
+ return replace(replacement, symbols, function (match, ch) {
1458
+ var capture;
1459
+ switch (charAt(ch, 0)) {
1460
+ case '$': return '$';
1461
+ case '&': return matched;
1462
+ case '`': return stringSlice(str, 0, position);
1463
+ case "'": return stringSlice(str, tailPos);
1464
+ case '<':
1465
+ capture = namedCaptures[stringSlice(ch, 1, -1)];
1466
+ break;
1467
+ default: // \d\d?
1468
+ var n = +ch;
1469
+ if (n === 0) return match;
1470
+ if (n > m) {
1471
+ var f = floor(n / 10);
1472
+ if (f === 0) return match;
1473
+ if (f <= m) return captures[f - 1] === undefined ? charAt(ch, 1) : captures[f - 1] + charAt(ch, 1);
1474
+ return match;
1475
+ }
1476
+ capture = captures[n - 1];
1477
+ }
1478
+ return capture === undefined ? '' : capture;
1479
+ });
1480
+ };
1481
+
1482
+
1432
1483
  /***/ }),
1433
1484
 
1434
1485
  /***/ 7854:
@@ -5927,6 +5978,151 @@ fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNa
5927
5978
  });
5928
5979
 
5929
5980
 
5981
+ /***/ }),
5982
+
5983
+ /***/ 5306:
5984
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
5985
+
5986
+ "use strict";
5987
+
5988
+ var apply = __webpack_require__(2104);
5989
+ var call = __webpack_require__(6916);
5990
+ var uncurryThis = __webpack_require__(1702);
5991
+ var fixRegExpWellKnownSymbolLogic = __webpack_require__(7007);
5992
+ var fails = __webpack_require__(7293);
5993
+ var anObject = __webpack_require__(9670);
5994
+ var isCallable = __webpack_require__(614);
5995
+ var isNullOrUndefined = __webpack_require__(8554);
5996
+ var toIntegerOrInfinity = __webpack_require__(9303);
5997
+ var toLength = __webpack_require__(7466);
5998
+ var toString = __webpack_require__(1340);
5999
+ var requireObjectCoercible = __webpack_require__(4488);
6000
+ var advanceStringIndex = __webpack_require__(1530);
6001
+ var getMethod = __webpack_require__(8173);
6002
+ var getSubstitution = __webpack_require__(647);
6003
+ var regExpExec = __webpack_require__(7651);
6004
+ var wellKnownSymbol = __webpack_require__(5112);
6005
+
6006
+ var REPLACE = wellKnownSymbol('replace');
6007
+ var max = Math.max;
6008
+ var min = Math.min;
6009
+ var concat = uncurryThis([].concat);
6010
+ var push = uncurryThis([].push);
6011
+ var stringIndexOf = uncurryThis(''.indexOf);
6012
+ var stringSlice = uncurryThis(''.slice);
6013
+
6014
+ var maybeToString = function (it) {
6015
+ return it === undefined ? it : String(it);
6016
+ };
6017
+
6018
+ // IE <= 11 replaces $0 with the whole match, as if it was $&
6019
+ // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0
6020
+ var REPLACE_KEEPS_$0 = (function () {
6021
+ // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing
6022
+ return 'a'.replace(/./, '$0') === '$0';
6023
+ })();
6024
+
6025
+ // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string
6026
+ var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
6027
+ if (/./[REPLACE]) {
6028
+ return /./[REPLACE]('a', '$0') === '';
6029
+ }
6030
+ return false;
6031
+ })();
6032
+
6033
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
6034
+ var re = /./;
6035
+ re.exec = function () {
6036
+ var result = [];
6037
+ result.groups = { a: '7' };
6038
+ return result;
6039
+ };
6040
+ // eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive
6041
+ return ''.replace(re, '$<a>') !== '7';
6042
+ });
6043
+
6044
+ // @@replace logic
6045
+ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
6046
+ var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
6047
+
6048
+ return [
6049
+ // `String.prototype.replace` method
6050
+ // https://tc39.es/ecma262/#sec-string.prototype.replace
6051
+ function replace(searchValue, replaceValue) {
6052
+ var O = requireObjectCoercible(this);
6053
+ var replacer = isNullOrUndefined(searchValue) ? undefined : getMethod(searchValue, REPLACE);
6054
+ return replacer
6055
+ ? call(replacer, searchValue, O, replaceValue)
6056
+ : call(nativeReplace, toString(O), searchValue, replaceValue);
6057
+ },
6058
+ // `RegExp.prototype[@@replace]` method
6059
+ // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
6060
+ function (string, replaceValue) {
6061
+ var rx = anObject(this);
6062
+ var S = toString(string);
6063
+
6064
+ if (
6065
+ typeof replaceValue == 'string' &&
6066
+ stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 &&
6067
+ stringIndexOf(replaceValue, '$<') === -1
6068
+ ) {
6069
+ var res = maybeCallNative(nativeReplace, rx, S, replaceValue);
6070
+ if (res.done) return res.value;
6071
+ }
6072
+
6073
+ var functionalReplace = isCallable(replaceValue);
6074
+ if (!functionalReplace) replaceValue = toString(replaceValue);
6075
+
6076
+ var global = rx.global;
6077
+ if (global) {
6078
+ var fullUnicode = rx.unicode;
6079
+ rx.lastIndex = 0;
6080
+ }
6081
+ var results = [];
6082
+ while (true) {
6083
+ var result = regExpExec(rx, S);
6084
+ if (result === null) break;
6085
+
6086
+ push(results, result);
6087
+ if (!global) break;
6088
+
6089
+ var matchStr = toString(result[0]);
6090
+ if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
6091
+ }
6092
+
6093
+ var accumulatedResult = '';
6094
+ var nextSourcePosition = 0;
6095
+ for (var i = 0; i < results.length; i++) {
6096
+ result = results[i];
6097
+
6098
+ var matched = toString(result[0]);
6099
+ var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);
6100
+ var captures = [];
6101
+ // NOTE: This is equivalent to
6102
+ // captures = result.slice(1).map(maybeToString)
6103
+ // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
6104
+ // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
6105
+ // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
6106
+ for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j]));
6107
+ var namedCaptures = result.groups;
6108
+ if (functionalReplace) {
6109
+ var replacerArgs = concat([matched], captures, position, S);
6110
+ if (namedCaptures !== undefined) push(replacerArgs, namedCaptures);
6111
+ var replacement = toString(apply(replaceValue, undefined, replacerArgs));
6112
+ } else {
6113
+ replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
6114
+ }
6115
+ if (position >= nextSourcePosition) {
6116
+ accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement;
6117
+ nextSourcePosition = position + matched.length;
6118
+ }
6119
+ }
6120
+ return accumulatedResult + stringSlice(S, nextSourcePosition);
6121
+ }
6122
+ ];
6123
+ }, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
6124
+
6125
+
5930
6126
  /***/ }),
5931
6127
 
5932
6128
  /***/ 3123:
@@ -6980,6 +7176,7 @@ var es_array_map = __webpack_require__(1249);
6980
7176
  ;// CONCATENATED MODULE: ./src/assets/all-countries.js
6981
7177
 
6982
7178
 
7179
+ // A fork of https://github.com/jackocnr/intl-tel-input/blob/master/src/js/data.js
6983
7180
  // Array of country objects for the flag dropdown.
6984
7181
  // Here is the criteria for the plugin to support a given country/territory
6985
7182
  // - It has an iso2 code: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
@@ -6990,19 +7187,27 @@ var es_array_map = __webpack_require__(1249);
6990
7187
  // [
6991
7188
  // Country name,
6992
7189
  // iso2 code,
6993
- // International dial code
7190
+ // International dial code,
7191
+ // Order (if >1 country with same dial code),
7192
+ // Area codes
6994
7193
  // ]
6995
- var allCountries = [['Afghanistan (‫افغانستان‬‎)', 'af', '93'], ['Albania (Shqipëri)', 'al', '355'], ['Algeria (‫الجزائر‬‎)', 'dz', '213'], ['American Samoa', 'as', '1684'], ['Andorra', 'ad', '376'], ['Angola', 'ao', '244'], ['Anguilla', 'ai', '1264'], ['Antigua and Barbuda', 'ag', '1268'], ['Argentina', 'ar', '54'], ['Armenia (Հայաստան)', 'am', '374'], ['Aruba', 'aw', '297'], ['Australia', 'au', '61'], ['Austria (Österreich)', 'at', '43'], ['Azerbaijan (Azərbaycan)', 'az', '994'], ['Bahamas', 'bs', '1242'], ['Bahrain (‫البحرين‬‎)', 'bh', '973'], ['Bangladesh (বাংলাদেশ)', 'bd', '880'], ['Barbados', 'bb', '1246'], ['Belarus (Беларусь)', 'by', '375'], ['Belgium (België)', 'be', '32'], ['Belize', 'bz', '501'], ['Benin (Bénin)', 'bj', '229'], ['Bermuda', 'bm', '1441'], ['Bhutan (འབྲུག)', 'bt', '975'], ['Bolivia', 'bo', '591'], ['Bosnia and Herzegovina (Босна и Херцеговина)', 'ba', '387'], ['Botswana', 'bw', '267'], ['Brazil (Brasil)', 'br', '55'], ['British Indian Ocean Territory', 'io', '246'], ['British Virgin Islands', 'vg', '1284'], ['Brunei', 'bn', '673'], ['Bulgaria (България)', 'bg', '359'], ['Burkina Faso', 'bf', '226'], ['Burundi (Uburundi)', 'bi', '257'], ['Cambodia (កម្ពុជា)', 'kh', '855'], ['Cameroon (Cameroun)', 'cm', '237'], ['Canada', 'ca', '1'], ['Cape Verde (Kabu Verdi)', 'cv', '238'], ['Caribbean Netherlands', 'bq', '599'], ['Cayman Islands', 'ky', '1345'], ['Central African Republic (République centrafricaine)', 'cf', '236'], ['Chad (Tchad)', 'td', '235'], ['Chile', 'cl', '56'], ['China (中国)', 'cn', '86'], ['Christmas Island', 'cx', '61'], ['Cocos (Keeling) Islands', 'cc', '61'], ['Colombia', 'co', '57'], ['Comoros (‫جزر القمر‬‎)', 'km', '269'], ['Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)', 'cd', '243'], ['Congo (Republic) (Congo-Brazzaville)', 'cg', '242'], ['Cook Islands', 'ck', '682'], ['Costa Rica', 'cr', '506'], ['Côte d’Ivoire', 'ci', '225'], ['Croatia (Hrvatska)', 'hr', '385'], ['Cuba', 'cu', '53'], ['Curaçao', 'cw', '599'], ['Cyprus (Κύπρος)', 'cy', '357'], ['Czech Republic (Česká republika)', 'cz', '420'], ['Denmark (Danmark)', 'dk', '45'], ['Djibouti', 'dj', '253'], ['Dominica', 'dm', '1767'], ['Dominican Republic (República Dominicana)', 'do', '1'], ['Ecuador', 'ec', '593'], ['Egypt (‫مصر‬‎)', 'eg', '20'], ['El Salvador', 'sv', '503'], ['Equatorial Guinea (Guinea Ecuatorial)', 'gq', '240'], ['Eritrea', 'er', '291'], ['Estonia (Eesti)', 'ee', '372'], ['Ethiopia', 'et', '251'], ['Falkland Islands (Islas Malvinas)', 'fk', '500'], ['Faroe Islands (Føroyar)', 'fo', '298'], ['Fiji', 'fj', '679'], ['Finland (Suomi)', 'fi', '358'], ['France', 'fr', '33'], ['French Guiana (Guyane française)', 'gf', '594'], ['French Polynesia (Polynésie française)', 'pf', '689'], ['Gabon', 'ga', '241'], ['Gambia', 'gm', '220'], ['Georgia (საქართველო)', 'ge', '995'], ['Germany (Deutschland)', 'de', '49'], ['Ghana (Gaana)', 'gh', '233'], ['Gibraltar', 'gi', '350'], ['Greece (Ελλάδα)', 'gr', '30'], ['Greenland (Kalaallit Nunaat)', 'gl', '299'], ['Grenada', 'gd', '1473'], ['Guadeloupe', 'gp', '590'], ['Guam', 'gu', '1671'], ['Guatemala', 'gt', '502'], ['Guernsey', 'gg', '44', 1], ['Guinea (Guinée)', 'gn', '224'], ['Guinea-Bissau (Guiné Bissau)', 'gw', '245'], ['Guyana', 'gy', '592'], ['Haiti', 'ht', '509'], ['Honduras', 'hn', '504'], ['Hong Kong (香港)', 'hk', '852'], ['Hungary (Magyarország)', 'hu', '36'], ['Iceland (Ísland)', 'is', '354'], ['India (भारत)', 'in', '91'], ['Indonesia', 'id', '62'], ['Iran (‫ایران‬‎)', 'ir', '98'], ['Iraq (‫العراق‬‎)', 'iq', '964'], ['Ireland', 'ie', '353'], ['Isle of Man', 'im', '44'], ['Israel (‫ישראל‬‎)', 'il', '972'], ['Italy (Italia)', 'it', '39'], ['Jamaica', 'jm', '1876'], ['Japan (日本)', 'jp', '81'], ['Jersey', 'je', '44'], ['Jordan (‫الأردن‬‎)', 'jo', '962'], ['Kazakhstan (Казахстан)', 'kz', '7'], ['Kenya', 'ke', '254'], ['Kiribati', 'ki', '686'], ['Kosovo', 'xk', '383'], ['Kuwait (‫الكويت‬‎)', 'kw', '965'], ['Kyrgyzstan (Кыргызстан)', 'kg', '996'], ['Laos (ລາວ)', 'la', '856'], ['Latvia (Latvija)', 'lv', '371'], ['Lebanon (‫لبنان‬‎)', 'lb', '961'], ['Lesotho', 'ls', '266'], ['Liberia', 'lr', '231'], ['Libya (‫ليبيا‬‎)', 'ly', '218'], ['Liechtenstein', 'li', '423'], ['Lithuania (Lietuva)', 'lt', '370'], ['Luxembourg', 'lu', '352'], ['Macau (澳門)', 'mo', '853'], ['Macedonia (FYROM) (Македонија)', 'mk', '389'], ['Madagascar (Madagasikara)', 'mg', '261'], ['Malawi', 'mw', '265'], ['Malaysia', 'my', '60'], ['Maldives', 'mv', '960'], ['Mali', 'ml', '223'], ['Malta', 'mt', '356'], ['Marshall Islands', 'mh', '692'], ['Martinique', 'mq', '596'], ['Mauritania (‫موريتانيا‬‎)', 'mr', '222'], ['Mauritius (Moris)', 'mu', '230'], ['Mayotte', 'yt', '262'], ['Mexico (México)', 'mx', '52'], ['Micronesia', 'fm', '691'], ['Moldova (Republica Moldova)', 'md', '373'], ['Monaco', 'mc', '377'], ['Mongolia (Монгол)', 'mn', '976'], ['Montenegro (Crna Gora)', 'me', '382'], ['Montserrat', 'ms', '1664'], ['Morocco (‫المغرب‬‎)', 'ma', '212'], ['Mozambique (Moçambique)', 'mz', '258'], ['Myanmar (Burma) (မြန်မာ)', 'mm', '95'], ['Namibia (Namibië)', 'na', '264'], ['Nauru', 'nr', '674'], ['Nepal (नेपाल)', 'np', '977'], ['Netherlands (Nederland)', 'nl', '31'], ['New Caledonia (Nouvelle-Calédonie)', 'nc', '687'], ['New Zealand', 'nz', '64'], ['Nicaragua', 'ni', '505'], ['Niger (Nijar)', 'ne', '227'], ['Nigeria', 'ng', '234'], ['Niue', 'nu', '683'], ['Norfolk Island', 'nf', '672'], ['North Korea (조선 민주주의 인민 공화국)', 'kp', '850'], ['Northern Mariana Islands', 'mp', '1670'], ['Norway (Norge)', 'no', '47'], ['Oman (‫عُمان‬‎)', 'om', '968'], ['Pakistan (‫پاکستان‬‎)', 'pk', '92'], ['Palau', 'pw', '680'], ['Palestine (‫فلسطين‬‎)', 'ps', '970'], ['Panama (Panamá)', 'pa', '507'], ['Papua New Guinea', 'pg', '675'], ['Paraguay', 'py', '595'], ['Peru (Perú)', 'pe', '51'], ['Philippines', 'ph', '63'], ['Poland (Polska)', 'pl', '48'], ['Portugal', 'pt', '351'], ['Puerto Rico', 'pr', '1'], ['Qatar (‫قطر‬‎)', 'qa', '974'], ['Réunion (La Réunion)', 're', '262'], ['Romania (România)', 'ro', '40'], ['Russia (Россия)', 'ru', '7'], ['Rwanda', 'rw', '250'], ['Saint Barthélemy', 'bl', '590'], ['Saint Helena', 'sh', '290'], ['Saint Kitts and Nevis', 'kn', '1869'], ['Saint Lucia', 'lc', '1758'], ['Saint Martin (Saint-Martin (partie française))', 'mf', '590'], ['Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)', 'pm', '508'], ['Saint Vincent and the Grenadines', 'vc', '1784'], ['Samoa', 'ws', '685'], ['San Marino', 'sm', '378'], ['São Tomé and Príncipe (São Tomé e Príncipe)', 'st', '239'], ['Saudi Arabia (‫المملكة العربية السعودية‬‎)', 'sa', '966'], ['Senegal (Sénégal)', 'sn', '221'], ['Serbia (Србија)', 'rs', '381'], ['Seychelles', 'sc', '248'], ['Sierra Leone', 'sl', '232'], ['Singapore', 'sg', '65'], ['Sint Maarten', 'sx', '1721'], ['Slovakia (Slovensko)', 'sk', '421'], ['Slovenia (Slovenija)', 'si', '386'], ['Solomon Islands', 'sb', '677'], ['Somalia (Soomaaliya)', 'so', '252'], ['South Africa', 'za', '27'], ['South Korea (대한민국)', 'kr', '82'], ['South Sudan (‫جنوب السودان‬‎)', 'ss', '211'], ['Spain (España)', 'es', '34'], ['Sri Lanka (ශ්‍රී ලංකාව)', 'lk', '94'], ['Sudan (‫السودان‬‎)', 'sd', '249'], ['Suriname', 'sr', '597'], ['Svalbard and Jan Mayen', 'sj', '47'], ['Swaziland', 'sz', '268'], ['Sweden (Sverige)', 'se', '46'], ['Switzerland (Schweiz)', 'ch', '41'], ['Syria (‫سوريا‬‎)', 'sy', '963'], ['Taiwan (台灣)', 'tw', '886'], ['Tajikistan', 'tj', '992'], ['Tanzania', 'tz', '255'], ['Thailand (ไทย)', 'th', '66'], ['Timor-Leste', 'tl', '670'], ['Togo', 'tg', '228'], ['Tokelau', 'tk', '690'], ['Tonga', 'to', '676'], ['Trinidad and Tobago', 'tt', '1868'], ['Tunisia (‫تونس‬‎)', 'tn', '216'], ['Turkey (Türkiye)', 'tr', '90'], ['Turkmenistan', 'tm', '993'], ['Turks and Caicos Islands', 'tc', '1649'], ['Tuvalu', 'tv', '688'], ['U.S. Virgin Islands', 'vi', '1340'], ['Uganda', 'ug', '256'], ['Ukraine (Україна)', 'ua', '380'], ['United Arab Emirates (‫الإمارات العربية المتحدة‬‎)', 'ae', '971'], ['United Kingdom', 'gb', '44'], ['United States', 'us', '1'], ['Uruguay', 'uy', '598'], ['Uzbekistan (Oʻzbekiston)', 'uz', '998'], ['Vanuatu', 'vu', '678'], ['Vatican City (Città del Vaticano)', 'va', '39'], ['Venezuela', 've', '58'], ['Vietnam (Việt Nam)', 'vn', '84'], ['Wallis and Futuna (Wallis-et-Futuna)', 'wf', '681'], ['Western Sahara (‫الصحراء الغربية‬‎)', 'eh', '212'], ['Yemen (‫اليمن‬‎)', 'ye', '967'], ['Zambia', 'zm', '260'], ['Zimbabwe', 'zw', '263'], ['Åland Islands', 'ax', '358']];
7194
+ var allCountries = [['Afghanistan (‫افغانستان‬‎)', 'af', '93'], ['Albania (Shqipëri)', 'al', '355'], ['Algeria (‫الجزائر‬‎)', 'dz', '213'], ['American Samoa', 'as', '1', 5, ['684']], ['Andorra', 'ad', '376'], ['Angola', 'ao', '244'], ['Anguilla', 'ai', '1', 6, ['264']], ['Antigua and Barbuda', 'ag', '1', 7, ['268']], ['Argentina', 'ar', '54'], ['Armenia (Հայաստան)', 'am', '374'], ['Aruba', 'aw', '297'], ['Ascension Island', 'ac', '247'], ['Australia', 'au', '61', 0], ['Austria (Österreich)', 'at', '43'], ['Azerbaijan (Azərbaycan)', 'az', '994'], ['Bahamas', 'bs', '1', 8, ['242']], ['Bahrain (‫البحرين‬‎)', 'bh', '973'], ['Bangladesh (বাংলাদেশ)', 'bd', '880'], ['Barbados', 'bb', '1', 9, ['246']], ['Belarus (Беларусь)', 'by', '375'], ['Belgium (België)', 'be', '32'], ['Belize', 'bz', '501'], ['Benin (Bénin)', 'bj', '229'], ['Bermuda', 'bm', '1', 10, ['441']], ['Bhutan (འབྲུག)', 'bt', '975'], ['Bolivia', 'bo', '591'], ['Bosnia and Herzegovina (Босна и Херцеговина)', 'ba', '387'], ['Botswana', 'bw', '267'], ['Brazil (Brasil)', 'br', '55'], ['British Indian Ocean Territory', 'io', '246'], ['British Virgin Islands', 'vg', '1', 11, ['284']], ['Brunei', 'bn', '673'], ['Bulgaria (България)', 'bg', '359'], ['Burkina Faso', 'bf', '226'], ['Burundi (Uburundi)', 'bi', '257'], ['Cambodia (កម្ពុជា)', 'kh', '855'], ['Cameroon (Cameroun)', 'cm', '237'], ['Canada', 'ca', '1', 1, ['204', '226', '236', '249', '250', '263', '289', '306', '343', '354', '365', '367', '368', '382', '387', '403', '416', '418', '428', '431', '437', '438', '450', '584', '468', '474', '506', '514', '519', '548', '579', '581', '584', '587', '604', '613', '639', '647', '672', '683', '705', '709', '742', '753', '778', '780', '782', '807', '819', '825', '867', '873', '902', '905']], ['Cape Verde (Kabu Verdi)', 'cv', '238'], ['Caribbean Netherlands', 'bq', '599', 1, ['3', '4', '7']], ['Cayman Islands', 'ky', '1', 12, ['345']], ['Central African Republic (République centrafricaine)', 'cf', '236'], ['Chad (Tchad)', 'td', '235'], ['Chile', 'cl', '56'], ['China (中国)', 'cn', '86'], ['Christmas Island', 'cx', '61', 2, ['89164']], ['Cocos (Keeling) Islands', 'cc', '61', 1, ['89162']], ['Colombia', 'co', '57'], ['Comoros (‫جزر القمر‬‎)', 'km', '269'], ['Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)', 'cd', '243'], ['Congo (Republic) (Congo-Brazzaville)', 'cg', '242'], ['Cook Islands', 'ck', '682'], ['Costa Rica', 'cr', '506'], ['Côte d’Ivoire', 'ci', '225'], ['Croatia (Hrvatska)', 'hr', '385'], ['Cuba', 'cu', '53'], ['Curaçao', 'cw', '599', 0], ['Cyprus (Κύπρος)', 'cy', '357'], ['Czech Republic (Česká republika)', 'cz', '420'], ['Denmark (Danmark)', 'dk', '45'], ['Djibouti', 'dj', '253'], ['Dominica', 'dm', '1', 13, ['767']], ['Dominican Republic (República Dominicana)', 'do', '1', 2, ['809', '829', '849']], ['Ecuador', 'ec', '593'], ['Egypt (‫مصر‬‎)', 'eg', '20'], ['El Salvador', 'sv', '503'], ['Equatorial Guinea (Guinea Ecuatorial)', 'gq', '240'], ['Eritrea', 'er', '291'], ['Estonia (Eesti)', 'ee', '372'], ['Eswatini', 'sz', '268'], ['Ethiopia', 'et', '251'], ['Falkland Islands (Islas Malvinas)', 'fk', '500'], ['Faroe Islands (Føroyar)', 'fo', '298'], ['Fiji', 'fj', '679'], ['Finland (Suomi)', 'fi', '358', 0], ['France', 'fr', '33'], ['French Guiana (Guyane française)', 'gf', '594'], ['French Polynesia (Polynésie française)', 'pf', '689'], ['Gabon', 'ga', '241'], ['Gambia', 'gm', '220'], ['Georgia (საქართველო)', 'ge', '995'], ['Germany (Deutschland)', 'de', '49'], ['Ghana (Gaana)', 'gh', '233'], ['Gibraltar', 'gi', '350'], ['Greece (Ελλάδα)', 'gr', '30'], ['Greenland (Kalaallit Nunaat)', 'gl', '299'], ['Grenada', 'gd', '1', 14, ['473']], ['Guadeloupe', 'gp', '590', 0], ['Guam', 'gu', '1', 15, ['671']], ['Guatemala', 'gt', '502'], ['Guernsey', 'gg', '44', 1, ['1481', '7781', '7839', '7911']], ['Guinea (Guinée)', 'gn', '224'], ['Guinea-Bissau (Guiné Bissau)', 'gw', '245'], ['Guyana', 'gy', '592'], ['Haiti', 'ht', '509'], ['Honduras', 'hn', '504'], ['Hong Kong (香港)', 'hk', '852'], ['Hungary (Magyarország)', 'hu', '36'], ['Iceland (Ísland)', 'is', '354'], ['India (भारत)', 'in', '91'], ['Indonesia', 'id', '62'], ['Iran (‫ایران‬‎)', 'ir', '98'], ['Iraq (‫العراق‬‎)', 'iq', '964'], ['Ireland', 'ie', '353'], ['Isle of Man', 'im', '44', 2, ['1624', '74576', '7524', '7924', '7624']], ['Israel (‫ישראל‬‎)', 'il', '972'], ['Italy (Italia)', 'it', '39', 0], ['Jamaica', 'jm', '1', 4, ['876', '658']], ['Japan (日本)', 'jp', '81'], ['Jersey', 'je', '44', 3, ['1534', '7509', '7700', '7797', '7829', '7937']], ['Jordan (‫الأردن‬‎)', 'jo', '962'], ['Kazakhstan (Казахстан)', 'kz', '7', 1, ['33', '7']], ['Kenya', 'ke', '254'], ['Kiribati', 'ki', '686'], ['Kosovo', 'xk', '383'], ['Kuwait (‫الكويت‬‎)', 'kw', '965'], ['Kyrgyzstan (Кыргызстан)', 'kg', '996'], ['Laos (ລາວ)', 'la', '856'], ['Latvia (Latvija)', 'lv', '371'], ['Lebanon (‫لبنان‬‎)', 'lb', '961'], ['Lesotho', 'ls', '266'], ['Liberia', 'lr', '231'], ['Libya (‫ليبيا‬‎)', 'ly', '218'], ['Liechtenstein', 'li', '423'], ['Lithuania (Lietuva)', 'lt', '370'], ['Luxembourg', 'lu', '352'], ['Macau (澳門)', 'mo', '853'], ['Madagascar (Madagasikara)', 'mg', '261'], ['Malawi', 'mw', '265'], ['Malaysia', 'my', '60'], ['Maldives', 'mv', '960'], ['Mali', 'ml', '223'], ['Malta', 'mt', '356'], ['Marshall Islands', 'mh', '692'], ['Martinique', 'mq', '596'], ['Mauritania (‫موريتانيا‬‎)', 'mr', '222'], ['Mauritius (Moris)', 'mu', '230'], ['Mayotte', 'yt', '262', 1, ['269', '639']], ['Mexico (México)', 'mx', '52'], ['Micronesia', 'fm', '691'], ['Moldova (Republica Moldova)', 'md', '373'], ['Monaco', 'mc', '377'], ['Mongolia (Монгол)', 'mn', '976'], ['Montenegro (Crna Gora)', 'me', '382'], ['Montserrat', 'ms', '1', 16, ['664']], ['Morocco (‫المغرب‬‎)', 'ma', '212', 0], ['Mozambique (Moçambique)', 'mz', '258'], ['Myanmar (Burma) (မြန်မာ)', 'mm', '95'], ['Namibia (Namibië)', 'na', '264'], ['Nauru', 'nr', '674'], ['Nepal (नेपाल)', 'np', '977'], ['Netherlands (Nederland)', 'nl', '31'], ['New Caledonia (Nouvelle-Calédonie)', 'nc', '687'], ['New Zealand', 'nz', '64'], ['Nicaragua', 'ni', '505'], ['Niger (Nijar)', 'ne', '227'], ['Nigeria', 'ng', '234'], ['Niue', 'nu', '683'], ['Norfolk Island', 'nf', '672'], ['North Korea (조선 민주주의 인민 공화국)', 'kp', '850'], ['North Macedonia (Северна Македонија)', 'mk', '389'], ['Northern Mariana Islands', 'mp', '1', 17, ['670']], ['Norway (Norge)', 'no', '47', 0], ['Oman (‫عُمان‬‎)', 'om', '968'], ['Pakistan (‫پاکستان‬‎)', 'pk', '92'], ['Palau', 'pw', '680'], ['Palestine (‫فلسطين‬‎)', 'ps', '970'], ['Panama (Panamá)', 'pa', '507'], ['Papua New Guinea', 'pg', '675'], ['Paraguay', 'py', '595'], ['Peru (Perú)', 'pe', '51'], ['Philippines', 'ph', '63'], ['Poland (Polska)', 'pl', '48'], ['Portugal', 'pt', '351'], ['Puerto Rico', 'pr', '1', 3, ['787', '939']], ['Qatar (‫قطر‬‎)', 'qa', '974'], ['Réunion (La Réunion)', 're', '262', 0], ['Romania (România)', 'ro', '40'], ['Russia (Россия)', 'ru', '7', 0], ['Rwanda', 'rw', '250'], ['Saint Barthélemy', 'bl', '590', 1], ['Saint Helena', 'sh', '290'], ['Saint Kitts and Nevis', 'kn', '1', 18, ['869']], ['Saint Lucia', 'lc', '1', 19, ['758']], ['Saint Martin (Saint-Martin (partie française))', 'mf', '590', 2], ['Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)', 'pm', '508'], ['Saint Vincent and the Grenadines', 'vc', '1', 20, ['784']], ['Samoa', 'ws', '685'], ['San Marino', 'sm', '378'], ['São Tomé and Príncipe (São Tomé e Príncipe)', 'st', '239'], ['Saudi Arabia (‫المملكة العربية السعودية‬‎)', 'sa', '966'], ['Senegal (Sénégal)', 'sn', '221'], ['Serbia (Србија)', 'rs', '381'], ['Seychelles', 'sc', '248'], ['Sierra Leone', 'sl', '232'], ['Singapore', 'sg', '65'], ['Sint Maarten', 'sx', '1', 21, ['721']], ['Slovakia (Slovensko)', 'sk', '421'], ['Slovenia (Slovenija)', 'si', '386'], ['Solomon Islands', 'sb', '677'], ['Somalia (Soomaaliya)', 'so', '252'], ['South Africa', 'za', '27'], ['South Korea (대한민국)', 'kr', '82'], ['South Sudan (‫جنوب السودان‬‎)', 'ss', '211'], ['Spain (España)', 'es', '34'], ['Sri Lanka (ශ්‍රී ලංකාව)', 'lk', '94'], ['Sudan (‫السودان‬‎)', 'sd', '249'], ['Suriname', 'sr', '597'], ['Svalbard and Jan Mayen', 'sj', '47', 1, ['79']], ['Sweden (Sverige)', 'se', '46'], ['Switzerland (Schweiz)', 'ch', '41'], ['Syria (‫سوريا‬‎)', 'sy', '963'], ['Taiwan (台灣)', 'tw', '886'], ['Tajikistan', 'tj', '992'], ['Tanzania', 'tz', '255'], ['Thailand (ไทย)', 'th', '66'], ['Timor-Leste', 'tl', '670'], ['Togo', 'tg', '228'], ['Tokelau', 'tk', '690'], ['Tonga', 'to', '676'], ['Trinidad and Tobago', 'tt', '1', 22, ['868']], ['Tunisia (‫تونس‬‎)', 'tn', '216'], ['Turkey (Türkiye)', 'tr', '90'], ['Turkmenistan', 'tm', '993'], ['Turks and Caicos Islands', 'tc', '1', 23, ['649']], ['Tuvalu', 'tv', '688'], ['U.S. Virgin Islands', 'vi', '1', 24, ['340']], ['Uganda', 'ug', '256'], ['Ukraine (Україна)', 'ua', '380'], ['United Arab Emirates (‫الإمارات العربية المتحدة‬‎)', 'ae', '971'], ['United Kingdom', 'gb', '44', 0], ['United States', 'us', '1', 0], ['Uruguay', 'uy', '598'], ['Uzbekistan (Oʻzbekiston)', 'uz', '998'], ['Vanuatu', 'vu', '678'], ['Vatican City (Città del Vaticano)', 'va', '39', 1, ['06698']], ['Venezuela', 've', '58'], ['Vietnam (Việt Nam)', 'vn', '84'], ['Wallis and Futuna (Wallis-et-Futuna)', 'wf', '681'], ['Western Sahara (‫الصحراء الغربية‬‎)', 'eh', '212', 1, ['5288', '5289']], ['Yemen (‫اليمن‬‎)', 'ye', '967'], ['Zambia', 'zm', '260'], ['Zimbabwe', 'zw', '263'], ['Åland Islands', 'ax', '358', 1, ['18']]];
6996
7195
  /* harmony default export */ var all_countries = (allCountries.map(function (_ref) {
6997
- var _ref2 = _slicedToArray(_ref, 3),
7196
+ var _ref2 = _slicedToArray(_ref, 5),
6998
7197
  name = _ref2[0],
6999
7198
  iso2 = _ref2[1],
7000
- dialCode = _ref2[2];
7199
+ dialCode = _ref2[2],
7200
+ _ref2$ = _ref2[3],
7201
+ priority = _ref2$ === void 0 ? 0 : _ref2$,
7202
+ _ref2$2 = _ref2[4],
7203
+ areaCodes = _ref2$2 === void 0 ? null : _ref2$2;
7001
7204
 
7002
7205
  return {
7003
7206
  name: name,
7004
7207
  iso2: iso2.toUpperCase(),
7005
- dialCode: dialCode
7208
+ dialCode: dialCode,
7209
+ priority: priority,
7210
+ areaCodes: areaCodes
7006
7211
  };
7007
7212
  }));
7008
7213
  ;// CONCATENATED MODULE: ./src/utils.js
@@ -7289,7 +7494,7 @@ var defaultOptions = [].concat(allProps).reduce(function (prv, crr) {
7289
7494
  /* harmony default export */ var utils = ({
7290
7495
  options: _objectSpread2({}, defaultOptions)
7291
7496
  });
7292
- ;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/vue-tel-input.vue?vue&type=template&id=143e10df&
7497
+ ;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/vue-tel-input.vue?vue&type=template&id=2da290d5&
7293
7498
 
7294
7499
 
7295
7500
 
@@ -7548,7 +7753,7 @@ var render = function render() {
7548
7753
 
7549
7754
  var staticRenderFns = [];
7550
7755
 
7551
- ;// CONCATENATED MODULE: ./src/components/vue-tel-input.vue?vue&type=template&id=143e10df&
7756
+ ;// CONCATENATED MODULE: ./src/components/vue-tel-input.vue?vue&type=template&id=2da290d5&
7552
7757
 
7553
7758
  ;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
7554
7759
 
@@ -7580,6 +7785,8 @@ function _nonIterableSpread() {
7580
7785
  function _toConsumableArray(arr) {
7581
7786
  return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
7582
7787
  }
7788
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
7789
+ var es_string_replace = __webpack_require__(5306);
7583
7790
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.trim.js
7584
7791
  var es_string_trim = __webpack_require__(3210);
7585
7792
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
@@ -10691,6 +10898,7 @@ var _excluded = ["metadata"];
10691
10898
 
10692
10899
 
10693
10900
 
10901
+
10694
10902
 
10695
10903
 
10696
10904
  function getDefault(key) {
@@ -10875,8 +11083,6 @@ function getDefault(key) {
10875
11083
  return this.allCountries;
10876
11084
  },
10877
11085
  sortedCountries: function sortedCountries() {
10878
- var _this2 = this;
10879
-
10880
11086
  // Sort the list countries: from preferred countries to all countries
10881
11087
  var preferredCountries = this.getCountries(this.preferredCountries).map(function (country) {
10882
11088
  return _objectSpread2(_objectSpread2({}, country), {}, {
@@ -10889,8 +11095,10 @@ function getDefault(key) {
10889
11095
  return countriesList;
10890
11096
  }
10891
11097
 
11098
+ var userInput = this.searchQuery;
11099
+ var cleanInput = userInput.replace(/[~`!@#$%^&*()+={}\[\];:\'\"<>.,\/\\\?-_]|^0{2,}/g, '');
10892
11100
  return countriesList.filter(function (c) {
10893
- return new RegExp(_this2.searchQuery, 'i').test(c.name) || new RegExp(_this2.searchQuery, 'i').test(c.iso2) || new RegExp(_this2.searchQuery, 'i').test(c.dialCode);
11101
+ return new RegExp(cleanInput, 'i').test(c.name) || new RegExp(cleanInput, 'i').test(c.iso2) || new RegExp(cleanInput, 'i').test(c.dialCode);
10894
11102
  });
10895
11103
  },
10896
11104
  phoneObject: function phoneObject() {
@@ -10967,7 +11175,7 @@ function getDefault(key) {
10967
11175
  this.$emit('validate', this.phoneObject);
10968
11176
  },
10969
11177
  'phoneObject.formatted': function phoneObjectFormatted(value) {
10970
- var _this3 = this;
11178
+ var _this2 = this;
10971
11179
 
10972
11180
  if (!this.autoFormat || this.customValidate) {
10973
11181
  return;
@@ -10976,8 +11184,8 @@ function getDefault(key) {
10976
11184
  this.emitInput(value);
10977
11185
  this.$nextTick(function () {
10978
11186
  // In case `v-model` is not set, we need to update the `phone` to be new formatted value
10979
- if (value && !_this3.value) {
10980
- _this3.phone = value;
11187
+ if (value && !_this2.value) {
11188
+ _this2.phone = value;
10981
11189
  }
10982
11190
  });
10983
11191
  },
@@ -10988,13 +11196,13 @@ function getDefault(key) {
10988
11196
  this.resetPlaceholder();
10989
11197
  },
10990
11198
  value: function value(_value, oldValue) {
10991
- var _this4 = this;
11199
+ var _this3 = this;
10992
11200
 
10993
11201
  if (!this.testCharacters()) {
10994
11202
  this.$nextTick(function () {
10995
- _this4.phone = oldValue;
11203
+ _this3.phone = oldValue;
10996
11204
 
10997
- _this4.onInput();
11205
+ _this3.onInput();
10998
11206
  });
10999
11207
  } else {
11000
11208
  this.phone = _value;
@@ -11011,7 +11219,7 @@ function getDefault(key) {
11011
11219
  }
11012
11220
  },
11013
11221
  mounted: function mounted() {
11014
- var _this5 = this;
11222
+ var _this4 = this;
11015
11223
 
11016
11224
  if (this.value) {
11017
11225
  this.phone = this.value.trim();
@@ -11019,15 +11227,15 @@ function getDefault(key) {
11019
11227
 
11020
11228
  this.cleanInvalidCharacters();
11021
11229
  this.initializeCountry().then(function () {
11022
- var _this5$inputOptions;
11230
+ var _this4$inputOptions;
11023
11231
 
11024
- if (!_this5.phone && (_this5$inputOptions = _this5.inputOptions) !== null && _this5$inputOptions !== void 0 && _this5$inputOptions.showDialCode && _this5.activeCountryCode) {
11025
- _this5.phone = "+".concat(_this5.activeCountryCode);
11232
+ if (!_this4.phone && (_this4$inputOptions = _this4.inputOptions) !== null && _this4$inputOptions !== void 0 && _this4$inputOptions.showDialCode && _this4.activeCountryCode) {
11233
+ _this4.phone = "+".concat(_this4.activeCountryCode);
11026
11234
  }
11027
11235
 
11028
- _this5.$emit('validate', _this5.phoneObject);
11236
+ _this4.$emit('validate', _this4.phoneObject);
11029
11237
  }).catch(console.error).then(function () {
11030
- _this5.finishMounted = true;
11238
+ _this4.finishMounted = true;
11031
11239
  });
11032
11240
  },
11033
11241
  methods: {
@@ -11046,15 +11254,15 @@ function getDefault(key) {
11046
11254
  // .catch(console.error);
11047
11255
  },
11048
11256
  initializeCountry: function initializeCountry() {
11049
- var _this6 = this;
11257
+ var _this5 = this;
11050
11258
 
11051
11259
  return new Promise(function (resolve) {
11052
- var _this6$phone;
11260
+ var _this5$phone;
11053
11261
 
11054
11262
  /**
11055
11263
  * 1. If the phone included prefix (i.e. +12), try to get the country and set it
11056
11264
  */
11057
- if (((_this6$phone = _this6.phone) === null || _this6$phone === void 0 ? void 0 : _this6$phone[0]) === '+') {
11265
+ if (((_this5$phone = _this5.phone) === null || _this5$phone === void 0 ? void 0 : _this5$phone[0]) === '+') {
11058
11266
  resolve();
11059
11267
  return;
11060
11268
  }
@@ -11063,19 +11271,19 @@ function getDefault(key) {
11063
11271
  */
11064
11272
 
11065
11273
 
11066
- if (_this6.defaultCountry) {
11067
- if (typeof _this6.defaultCountry === 'string') {
11068
- _this6.choose(_this6.defaultCountry);
11274
+ if (_this5.defaultCountry) {
11275
+ if (typeof _this5.defaultCountry === 'string') {
11276
+ _this5.choose(_this5.defaultCountry);
11069
11277
 
11070
11278
  resolve();
11071
11279
  return;
11072
11280
  }
11073
11281
 
11074
- if (typeof _this6.defaultCountry === 'number') {
11075
- var country = _this6.findCountryByDialCode(_this6.defaultCountry);
11282
+ if (typeof _this5.defaultCountry === 'number') {
11283
+ var country = _this5.findCountryByDialCode(_this5.defaultCountry);
11076
11284
 
11077
11285
  if (country) {
11078
- _this6.choose(country.iso2);
11286
+ _this5.choose(country.iso2);
11079
11287
 
11080
11288
  resolve();
11081
11289
  return;
@@ -11083,21 +11291,21 @@ function getDefault(key) {
11083
11291
  }
11084
11292
  }
11085
11293
 
11086
- var fallbackCountry = _this6.preferredCountries[0] || _this6.filteredCountries[0];
11294
+ var fallbackCountry = _this5.preferredCountries[0] || _this5.filteredCountries[0];
11087
11295
  /**
11088
11296
  * 3. Check if fetching country based on user's IP is allowed, set it as the default country
11089
11297
  */
11090
11298
 
11091
- if (_this6.autoDefaultCountry) {
11299
+ if (_this5.autoDefaultCountry) {
11092
11300
  getCountry().then(function (res) {
11093
- _this6.choose(res || _this6.activeCountryCode);
11301
+ _this5.choose(res || _this5.activeCountryCode);
11094
11302
  }).catch(function (error) {
11095
11303
  console.warn(error);
11096
11304
  /**
11097
11305
  * 4. Use the first country from preferred list (if available) or all countries list
11098
11306
  */
11099
11307
 
11100
- _this6.choose(fallbackCountry);
11308
+ _this5.choose(fallbackCountry);
11101
11309
  }).then(function () {
11102
11310
  resolve();
11103
11311
  });
@@ -11105,7 +11313,7 @@ function getDefault(key) {
11105
11313
  /**
11106
11314
  * 4. Use the first country from preferred list (if available) or all countries list
11107
11315
  */
11108
- _this6.choose(fallbackCountry);
11316
+ _this5.choose(fallbackCountry);
11109
11317
 
11110
11318
  resolve();
11111
11319
  }
@@ -11116,11 +11324,11 @@ function getDefault(key) {
11116
11324
  * Get the list of countries from the list of iso2 code
11117
11325
  */
11118
11326
  getCountries: function getCountries() {
11119
- var _this7 = this;
11327
+ var _this6 = this;
11120
11328
 
11121
11329
  var list = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
11122
11330
  return list.map(function (countryCode) {
11123
- return _this7.findCountry(countryCode);
11331
+ return _this6.findCountry(countryCode);
11124
11332
  }).filter(Boolean);
11125
11333
  },
11126
11334
  findCountry: function findCountry() {
@@ -11253,7 +11461,7 @@ function getDefault(key) {
11253
11461
  this.open = false;
11254
11462
  },
11255
11463
  keyboardNav: function keyboardNav(e) {
11256
- var _this8 = this;
11464
+ var _this7 = this;
11257
11465
 
11258
11466
  if (e.keyCode === 40) {
11259
11467
  // down arrow
@@ -11302,11 +11510,11 @@ function getDefault(key) {
11302
11510
  this.typeToFindInput += e.key;
11303
11511
  clearTimeout(this.typeToFindTimer);
11304
11512
  this.typeToFindTimer = setTimeout(function () {
11305
- _this8.typeToFindInput = '';
11513
+ _this7.typeToFindInput = '';
11306
11514
  }, 700); // don't include preferred countries so we jump to the right place in the alphabet
11307
11515
 
11308
11516
  var typedCountryI = this.sortedCountries.slice(this.preferredCountries.length).findIndex(function (c) {
11309
- return c.name.toLowerCase().startsWith(_this8.typeToFindInput);
11517
+ return c.name.toLowerCase().startsWith(_this7.typeToFindInput);
11310
11518
  });
11311
11519
 
11312
11520
  if (typedCountryI >= 0) {