intl-tel-input 27.0.0 → 27.0.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/dist/js/data.d.ts CHANGED
@@ -1590,7 +1590,7 @@ export declare const rawCountryData: readonly [
1590
1590
  "0"
1591
1591
  ]
1592
1592
  ];
1593
- export type Iso2 = typeof rawCountryData[number][0];
1593
+ export type Iso2 = (typeof rawCountryData)[number][0];
1594
1594
  export type Country = {
1595
1595
  iso2: Iso2;
1596
1596
  dialCode: string;
package/dist/js/data.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v27.0.0
2
+ * International Telephone Input v27.0.2
3
3
  * https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
@@ -301,7 +301,63 @@ var _factory = (() => {
301
301
  // Canada
302
302
  "1",
303
303
  1,
304
- ["204", "226", "236", "249", "250", "257", "263", "289", "306", "343", "354", "365", "367", "368", "382", "403", "416", "418", "428", "431", "437", "438", "450", "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", "879", "902", "905", "942"],
304
+ [
305
+ "204",
306
+ "226",
307
+ "236",
308
+ "249",
309
+ "250",
310
+ "257",
311
+ "263",
312
+ "289",
313
+ "306",
314
+ "343",
315
+ "354",
316
+ "365",
317
+ "367",
318
+ "368",
319
+ "382",
320
+ "403",
321
+ "416",
322
+ "418",
323
+ "428",
324
+ "431",
325
+ "437",
326
+ "438",
327
+ "450",
328
+ "468",
329
+ "474",
330
+ "506",
331
+ "514",
332
+ "519",
333
+ "548",
334
+ "579",
335
+ "581",
336
+ "584",
337
+ "587",
338
+ "604",
339
+ "613",
340
+ "639",
341
+ "647",
342
+ "672",
343
+ "683",
344
+ "705",
345
+ "709",
346
+ "742",
347
+ "753",
348
+ "778",
349
+ "780",
350
+ "782",
351
+ "807",
352
+ "819",
353
+ "825",
354
+ "867",
355
+ "873",
356
+ "879",
357
+ "902",
358
+ "905",
359
+ "942"
360
+ ],
305
361
  "1"
306
362
  ],
307
363
  [
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v27.0.0
2
+ * International Telephone Input v27.0.2
3
3
  * https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
package/dist/js/data.mjs CHANGED
@@ -269,7 +269,63 @@ var rawCountryData = [
269
269
  // Canada
270
270
  "1",
271
271
  1,
272
- ["204", "226", "236", "249", "250", "257", "263", "289", "306", "343", "354", "365", "367", "368", "382", "403", "416", "418", "428", "431", "437", "438", "450", "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", "879", "902", "905", "942"],
272
+ [
273
+ "204",
274
+ "226",
275
+ "236",
276
+ "249",
277
+ "250",
278
+ "257",
279
+ "263",
280
+ "289",
281
+ "306",
282
+ "343",
283
+ "354",
284
+ "365",
285
+ "367",
286
+ "368",
287
+ "382",
288
+ "403",
289
+ "416",
290
+ "418",
291
+ "428",
292
+ "431",
293
+ "437",
294
+ "438",
295
+ "450",
296
+ "468",
297
+ "474",
298
+ "506",
299
+ "514",
300
+ "519",
301
+ "548",
302
+ "579",
303
+ "581",
304
+ "584",
305
+ "587",
306
+ "604",
307
+ "613",
308
+ "639",
309
+ "647",
310
+ "672",
311
+ "683",
312
+ "705",
313
+ "709",
314
+ "742",
315
+ "753",
316
+ "778",
317
+ "780",
318
+ "782",
319
+ "807",
320
+ "819",
321
+ "825",
322
+ "867",
323
+ "873",
324
+ "879",
325
+ "902",
326
+ "905",
327
+ "942"
328
+ ],
273
329
  "1"
274
330
  ],
275
331
  [
package/dist/js/i18n.d.ts CHANGED
@@ -1590,7 +1590,7 @@ declare const rawCountryData: readonly [
1590
1590
  "0"
1591
1591
  ]
1592
1592
  ];
1593
- export type Iso2 = typeof rawCountryData[number][0];
1593
+ export type Iso2 = (typeof rawCountryData)[number][0];
1594
1594
  export type I18n = Partial<Record<Iso2, string>> & {
1595
1595
  selectedCountryAriaLabel?: string;
1596
1596
  searchPlaceholder?: string;
@@ -1590,7 +1590,7 @@ declare const rawCountryData: readonly [
1590
1590
  "0"
1591
1591
  ]
1592
1592
  ];
1593
- export type Iso2 = typeof rawCountryData[number][0];
1593
+ export type Iso2 = (typeof rawCountryData)[number][0];
1594
1594
  export type Country = {
1595
1595
  iso2: Iso2;
1596
1596
  dialCode: string;