intl-tel-input 25.4.4 → 25.4.7
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/README.md +5 -5
- package/angular/build/IntlTelInput.cjs +5 -3
- package/angular/build/IntlTelInput.d.ts +374 -4
- package/angular/build/IntlTelInput.js +5 -3
- package/angular/build/IntlTelInputWithUtils.cjs +5 -3
- package/angular/build/IntlTelInputWithUtils.js +5 -3
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/intlTelInput.js +5 -2
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +5 -2
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/package.json +3 -2
- package/react/README.md +1 -1
- package/react/build/IntlTelInput.cjs +4 -1
- package/react/build/IntlTelInput.js +4 -1
- package/react/build/IntlTelInputWithUtils.cjs +4 -1
- package/react/build/IntlTelInputWithUtils.js +4 -1
- package/vue/README.md +1 -1
- package/vue/build/IntlTelInput.mjs +2 -2
- package/vue/build/IntlTelInputWithUtils.mjs +20 -20
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
declare module "intl-tel-input/angular.ngtypecheck" {
|
|
2
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
3
|
+
}
|
|
4
|
+
declare module "intl-tel-input.ngtypecheck" {
|
|
5
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
6
|
+
}
|
|
7
|
+
declare module "intl-tel-input/data.ngtypecheck" {
|
|
8
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
9
|
+
}
|
|
1
10
|
declare module "intl-tel-input/data" {
|
|
2
11
|
export type Country = {
|
|
3
12
|
name: string;
|
|
@@ -11,6 +20,9 @@ declare module "intl-tel-input/data" {
|
|
|
11
20
|
const allCountries: Country[];
|
|
12
21
|
export default allCountries;
|
|
13
22
|
}
|
|
23
|
+
declare module "intl-tel-input/i18n/types.ngtypecheck" {
|
|
24
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
25
|
+
}
|
|
14
26
|
declare module "intl-tel-input/i18n/types" {
|
|
15
27
|
export type I18n = {
|
|
16
28
|
af?: string;
|
|
@@ -267,11 +279,20 @@ declare module "intl-tel-input/i18n/types" {
|
|
|
267
279
|
searchResultsText?: (count: number) => string;
|
|
268
280
|
};
|
|
269
281
|
}
|
|
282
|
+
declare module "intl-tel-input/i18n/en/index.ngtypecheck" {
|
|
283
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
284
|
+
}
|
|
285
|
+
declare module "intl-tel-input/i18n/en/countries.ngtypecheck" {
|
|
286
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
287
|
+
}
|
|
270
288
|
declare module "intl-tel-input/i18n/en/countries" {
|
|
271
289
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
272
290
|
const countryTranslations: I18n;
|
|
273
291
|
export default countryTranslations;
|
|
274
292
|
}
|
|
293
|
+
declare module "intl-tel-input/i18n/en/interface.ngtypecheck" {
|
|
294
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
295
|
+
}
|
|
275
296
|
declare module "intl-tel-input/i18n/en/interface" {
|
|
276
297
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
277
298
|
const interfaceTranslations: I18n;
|
|
@@ -493,7 +514,7 @@ declare module "intl-tel-input/angular" {
|
|
|
493
514
|
import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors } from "@angular/forms";
|
|
494
515
|
export { intlTelInput };
|
|
495
516
|
export const PHONE_ERROR_MESSAGES: string[];
|
|
496
|
-
class IntlTelInputComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor, Validator {
|
|
517
|
+
export class IntlTelInputComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor, Validator {
|
|
497
518
|
inputRef: ElementRef<HTMLInputElement>;
|
|
498
519
|
initialValue: string;
|
|
499
520
|
usePreciseValidation: boolean;
|
|
@@ -524,7 +545,12 @@ declare module "intl-tel-input/angular" {
|
|
|
524
545
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
525
546
|
registerOnValidatorChange(fn: () => void): void;
|
|
526
547
|
}
|
|
527
|
-
|
|
548
|
+
}
|
|
549
|
+
declare module "intl-tel-input/angularWithUtils.ngtypecheck" {
|
|
550
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
551
|
+
}
|
|
552
|
+
declare module "intl-tel-input/intlTelInputWithUtils.ngtypecheck" {
|
|
553
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
528
554
|
}
|
|
529
555
|
declare module "intl-tel-input/utils" {
|
|
530
556
|
export default utils;
|
|
@@ -541,7 +567,7 @@ declare module "intl-tel-input/angularWithUtils" {
|
|
|
541
567
|
import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors } from "@angular/forms";
|
|
542
568
|
export { intlTelInput };
|
|
543
569
|
export const PHONE_ERROR_MESSAGES: string[];
|
|
544
|
-
class IntlTelInputComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor, Validator {
|
|
570
|
+
export class IntlTelInputComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor, Validator {
|
|
545
571
|
inputRef: ElementRef<HTMLInputElement>;
|
|
546
572
|
initialValue: string;
|
|
547
573
|
usePreciseValidation: boolean;
|
|
@@ -572,13 +598,24 @@ declare module "intl-tel-input/angularWithUtils" {
|
|
|
572
598
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
573
599
|
registerOnValidatorChange(fn: () => void): void;
|
|
574
600
|
}
|
|
575
|
-
|
|
601
|
+
}
|
|
602
|
+
declare module "intl-tel-input/i18n/index.ngtypecheck" {
|
|
603
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
604
|
+
}
|
|
605
|
+
declare module "intl-tel-input/i18n/ar/index.ngtypecheck" {
|
|
606
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
607
|
+
}
|
|
608
|
+
declare module "intl-tel-input/i18n/ar/countries.ngtypecheck" {
|
|
609
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
576
610
|
}
|
|
577
611
|
declare module "intl-tel-input/i18n/ar/countries" {
|
|
578
612
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
579
613
|
const countryTranslations: I18n;
|
|
580
614
|
export default countryTranslations;
|
|
581
615
|
}
|
|
616
|
+
declare module "intl-tel-input/i18n/ar/interface.ngtypecheck" {
|
|
617
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
618
|
+
}
|
|
582
619
|
declare module "intl-tel-input/i18n/ar/interface" {
|
|
583
620
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
584
621
|
const interfaceTranslations: I18n;
|
|
@@ -592,11 +629,20 @@ declare module "intl-tel-input/i18n/ar" {
|
|
|
592
629
|
const allTranslations: I18n;
|
|
593
630
|
export default allTranslations;
|
|
594
631
|
}
|
|
632
|
+
declare module "intl-tel-input/i18n/bg/index.ngtypecheck" {
|
|
633
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
634
|
+
}
|
|
635
|
+
declare module "intl-tel-input/i18n/bg/countries.ngtypecheck" {
|
|
636
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
637
|
+
}
|
|
595
638
|
declare module "intl-tel-input/i18n/bg/countries" {
|
|
596
639
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
597
640
|
const countryTranslations: I18n;
|
|
598
641
|
export default countryTranslations;
|
|
599
642
|
}
|
|
643
|
+
declare module "intl-tel-input/i18n/bg/interface.ngtypecheck" {
|
|
644
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
645
|
+
}
|
|
600
646
|
declare module "intl-tel-input/i18n/bg/interface" {
|
|
601
647
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
602
648
|
const interfaceTranslations: I18n;
|
|
@@ -610,11 +656,20 @@ declare module "intl-tel-input/i18n/bg" {
|
|
|
610
656
|
const allTranslations: I18n;
|
|
611
657
|
export default allTranslations;
|
|
612
658
|
}
|
|
659
|
+
declare module "intl-tel-input/i18n/bn/index.ngtypecheck" {
|
|
660
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
661
|
+
}
|
|
662
|
+
declare module "intl-tel-input/i18n/bn/countries.ngtypecheck" {
|
|
663
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
664
|
+
}
|
|
613
665
|
declare module "intl-tel-input/i18n/bn/countries" {
|
|
614
666
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
615
667
|
const countryTranslations: I18n;
|
|
616
668
|
export default countryTranslations;
|
|
617
669
|
}
|
|
670
|
+
declare module "intl-tel-input/i18n/bn/interface.ngtypecheck" {
|
|
671
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
672
|
+
}
|
|
618
673
|
declare module "intl-tel-input/i18n/bn/interface" {
|
|
619
674
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
620
675
|
const interfaceTranslations: I18n;
|
|
@@ -628,11 +683,20 @@ declare module "intl-tel-input/i18n/bn" {
|
|
|
628
683
|
const allTranslations: I18n;
|
|
629
684
|
export default allTranslations;
|
|
630
685
|
}
|
|
686
|
+
declare module "intl-tel-input/i18n/bs/index.ngtypecheck" {
|
|
687
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
688
|
+
}
|
|
689
|
+
declare module "intl-tel-input/i18n/bs/countries.ngtypecheck" {
|
|
690
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
691
|
+
}
|
|
631
692
|
declare module "intl-tel-input/i18n/bs/countries" {
|
|
632
693
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
633
694
|
const countryTranslations: I18n;
|
|
634
695
|
export default countryTranslations;
|
|
635
696
|
}
|
|
697
|
+
declare module "intl-tel-input/i18n/bs/interface.ngtypecheck" {
|
|
698
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
699
|
+
}
|
|
636
700
|
declare module "intl-tel-input/i18n/bs/interface" {
|
|
637
701
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
638
702
|
const interfaceTranslations: I18n;
|
|
@@ -646,11 +710,20 @@ declare module "intl-tel-input/i18n/bs" {
|
|
|
646
710
|
const allTranslations: I18n;
|
|
647
711
|
export default allTranslations;
|
|
648
712
|
}
|
|
713
|
+
declare module "intl-tel-input/i18n/ca/index.ngtypecheck" {
|
|
714
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
715
|
+
}
|
|
716
|
+
declare module "intl-tel-input/i18n/ca/countries.ngtypecheck" {
|
|
717
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
718
|
+
}
|
|
649
719
|
declare module "intl-tel-input/i18n/ca/countries" {
|
|
650
720
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
651
721
|
const countryTranslations: I18n;
|
|
652
722
|
export default countryTranslations;
|
|
653
723
|
}
|
|
724
|
+
declare module "intl-tel-input/i18n/ca/interface.ngtypecheck" {
|
|
725
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
726
|
+
}
|
|
654
727
|
declare module "intl-tel-input/i18n/ca/interface" {
|
|
655
728
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
656
729
|
const interfaceTranslations: I18n;
|
|
@@ -664,11 +737,20 @@ declare module "intl-tel-input/i18n/ca" {
|
|
|
664
737
|
const allTranslations: I18n;
|
|
665
738
|
export default allTranslations;
|
|
666
739
|
}
|
|
740
|
+
declare module "intl-tel-input/i18n/cs/index.ngtypecheck" {
|
|
741
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
742
|
+
}
|
|
743
|
+
declare module "intl-tel-input/i18n/cs/countries.ngtypecheck" {
|
|
744
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
745
|
+
}
|
|
667
746
|
declare module "intl-tel-input/i18n/cs/countries" {
|
|
668
747
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
669
748
|
const countryTranslations: I18n;
|
|
670
749
|
export default countryTranslations;
|
|
671
750
|
}
|
|
751
|
+
declare module "intl-tel-input/i18n/cs/interface.ngtypecheck" {
|
|
752
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
753
|
+
}
|
|
672
754
|
declare module "intl-tel-input/i18n/cs/interface" {
|
|
673
755
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
674
756
|
const interfaceTranslations: I18n;
|
|
@@ -682,11 +764,20 @@ declare module "intl-tel-input/i18n/cs" {
|
|
|
682
764
|
const allTranslations: I18n;
|
|
683
765
|
export default allTranslations;
|
|
684
766
|
}
|
|
767
|
+
declare module "intl-tel-input/i18n/da/index.ngtypecheck" {
|
|
768
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
769
|
+
}
|
|
770
|
+
declare module "intl-tel-input/i18n/da/countries.ngtypecheck" {
|
|
771
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
772
|
+
}
|
|
685
773
|
declare module "intl-tel-input/i18n/da/countries" {
|
|
686
774
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
687
775
|
const countryTranslations: I18n;
|
|
688
776
|
export default countryTranslations;
|
|
689
777
|
}
|
|
778
|
+
declare module "intl-tel-input/i18n/da/interface.ngtypecheck" {
|
|
779
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
780
|
+
}
|
|
690
781
|
declare module "intl-tel-input/i18n/da/interface" {
|
|
691
782
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
692
783
|
const interfaceTranslations: I18n;
|
|
@@ -700,11 +791,20 @@ declare module "intl-tel-input/i18n/da" {
|
|
|
700
791
|
const allTranslations: I18n;
|
|
701
792
|
export default allTranslations;
|
|
702
793
|
}
|
|
794
|
+
declare module "intl-tel-input/i18n/de/index.ngtypecheck" {
|
|
795
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
796
|
+
}
|
|
797
|
+
declare module "intl-tel-input/i18n/de/countries.ngtypecheck" {
|
|
798
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
799
|
+
}
|
|
703
800
|
declare module "intl-tel-input/i18n/de/countries" {
|
|
704
801
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
705
802
|
const countryTranslations: I18n;
|
|
706
803
|
export default countryTranslations;
|
|
707
804
|
}
|
|
805
|
+
declare module "intl-tel-input/i18n/de/interface.ngtypecheck" {
|
|
806
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
807
|
+
}
|
|
708
808
|
declare module "intl-tel-input/i18n/de/interface" {
|
|
709
809
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
710
810
|
const interfaceTranslations: I18n;
|
|
@@ -718,11 +818,20 @@ declare module "intl-tel-input/i18n/de" {
|
|
|
718
818
|
const allTranslations: I18n;
|
|
719
819
|
export default allTranslations;
|
|
720
820
|
}
|
|
821
|
+
declare module "intl-tel-input/i18n/ee/index.ngtypecheck" {
|
|
822
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
823
|
+
}
|
|
824
|
+
declare module "intl-tel-input/i18n/ee/countries.ngtypecheck" {
|
|
825
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
826
|
+
}
|
|
721
827
|
declare module "intl-tel-input/i18n/ee/countries" {
|
|
722
828
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
723
829
|
const countryTranslations: I18n;
|
|
724
830
|
export default countryTranslations;
|
|
725
831
|
}
|
|
832
|
+
declare module "intl-tel-input/i18n/ee/interface.ngtypecheck" {
|
|
833
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
834
|
+
}
|
|
726
835
|
declare module "intl-tel-input/i18n/ee/interface" {
|
|
727
836
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
728
837
|
const interfaceTranslations: I18n;
|
|
@@ -736,11 +845,20 @@ declare module "intl-tel-input/i18n/ee" {
|
|
|
736
845
|
const allTranslations: I18n;
|
|
737
846
|
export default allTranslations;
|
|
738
847
|
}
|
|
848
|
+
declare module "intl-tel-input/i18n/el/index.ngtypecheck" {
|
|
849
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
850
|
+
}
|
|
851
|
+
declare module "intl-tel-input/i18n/el/countries.ngtypecheck" {
|
|
852
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
853
|
+
}
|
|
739
854
|
declare module "intl-tel-input/i18n/el/countries" {
|
|
740
855
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
741
856
|
const countryTranslations: I18n;
|
|
742
857
|
export default countryTranslations;
|
|
743
858
|
}
|
|
859
|
+
declare module "intl-tel-input/i18n/el/interface.ngtypecheck" {
|
|
860
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
861
|
+
}
|
|
744
862
|
declare module "intl-tel-input/i18n/el/interface" {
|
|
745
863
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
746
864
|
const interfaceTranslations: I18n;
|
|
@@ -754,11 +872,20 @@ declare module "intl-tel-input/i18n/el" {
|
|
|
754
872
|
const allTranslations: I18n;
|
|
755
873
|
export default allTranslations;
|
|
756
874
|
}
|
|
875
|
+
declare module "intl-tel-input/i18n/es/index.ngtypecheck" {
|
|
876
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
877
|
+
}
|
|
878
|
+
declare module "intl-tel-input/i18n/es/countries.ngtypecheck" {
|
|
879
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
880
|
+
}
|
|
757
881
|
declare module "intl-tel-input/i18n/es/countries" {
|
|
758
882
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
759
883
|
const countryTranslations: I18n;
|
|
760
884
|
export default countryTranslations;
|
|
761
885
|
}
|
|
886
|
+
declare module "intl-tel-input/i18n/es/interface.ngtypecheck" {
|
|
887
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
888
|
+
}
|
|
762
889
|
declare module "intl-tel-input/i18n/es/interface" {
|
|
763
890
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
764
891
|
const interfaceTranslations: I18n;
|
|
@@ -772,11 +899,20 @@ declare module "intl-tel-input/i18n/es" {
|
|
|
772
899
|
const allTranslations: I18n;
|
|
773
900
|
export default allTranslations;
|
|
774
901
|
}
|
|
902
|
+
declare module "intl-tel-input/i18n/fa/index.ngtypecheck" {
|
|
903
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
904
|
+
}
|
|
905
|
+
declare module "intl-tel-input/i18n/fa/countries.ngtypecheck" {
|
|
906
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
907
|
+
}
|
|
775
908
|
declare module "intl-tel-input/i18n/fa/countries" {
|
|
776
909
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
777
910
|
const countryTranslations: I18n;
|
|
778
911
|
export default countryTranslations;
|
|
779
912
|
}
|
|
913
|
+
declare module "intl-tel-input/i18n/fa/interface.ngtypecheck" {
|
|
914
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
915
|
+
}
|
|
780
916
|
declare module "intl-tel-input/i18n/fa/interface" {
|
|
781
917
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
782
918
|
const interfaceTranslations: I18n;
|
|
@@ -790,11 +926,20 @@ declare module "intl-tel-input/i18n/fa" {
|
|
|
790
926
|
const allTranslations: I18n;
|
|
791
927
|
export default allTranslations;
|
|
792
928
|
}
|
|
929
|
+
declare module "intl-tel-input/i18n/fi/index.ngtypecheck" {
|
|
930
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
931
|
+
}
|
|
932
|
+
declare module "intl-tel-input/i18n/fi/countries.ngtypecheck" {
|
|
933
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
934
|
+
}
|
|
793
935
|
declare module "intl-tel-input/i18n/fi/countries" {
|
|
794
936
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
795
937
|
const countryTranslations: I18n;
|
|
796
938
|
export default countryTranslations;
|
|
797
939
|
}
|
|
940
|
+
declare module "intl-tel-input/i18n/fi/interface.ngtypecheck" {
|
|
941
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
942
|
+
}
|
|
798
943
|
declare module "intl-tel-input/i18n/fi/interface" {
|
|
799
944
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
800
945
|
const interfaceTranslations: I18n;
|
|
@@ -808,11 +953,20 @@ declare module "intl-tel-input/i18n/fi" {
|
|
|
808
953
|
const allTranslations: I18n;
|
|
809
954
|
export default allTranslations;
|
|
810
955
|
}
|
|
956
|
+
declare module "intl-tel-input/i18n/fr/index.ngtypecheck" {
|
|
957
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
958
|
+
}
|
|
959
|
+
declare module "intl-tel-input/i18n/fr/countries.ngtypecheck" {
|
|
960
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
961
|
+
}
|
|
811
962
|
declare module "intl-tel-input/i18n/fr/countries" {
|
|
812
963
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
813
964
|
const countryTranslations: I18n;
|
|
814
965
|
export default countryTranslations;
|
|
815
966
|
}
|
|
967
|
+
declare module "intl-tel-input/i18n/fr/interface.ngtypecheck" {
|
|
968
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
969
|
+
}
|
|
816
970
|
declare module "intl-tel-input/i18n/fr/interface" {
|
|
817
971
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
818
972
|
const interfaceTranslations: I18n;
|
|
@@ -826,11 +980,20 @@ declare module "intl-tel-input/i18n/fr" {
|
|
|
826
980
|
const allTranslations: I18n;
|
|
827
981
|
export default allTranslations;
|
|
828
982
|
}
|
|
983
|
+
declare module "intl-tel-input/i18n/hi/index.ngtypecheck" {
|
|
984
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
985
|
+
}
|
|
986
|
+
declare module "intl-tel-input/i18n/hi/countries.ngtypecheck" {
|
|
987
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
988
|
+
}
|
|
829
989
|
declare module "intl-tel-input/i18n/hi/countries" {
|
|
830
990
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
831
991
|
const countryTranslations: I18n;
|
|
832
992
|
export default countryTranslations;
|
|
833
993
|
}
|
|
994
|
+
declare module "intl-tel-input/i18n/hi/interface.ngtypecheck" {
|
|
995
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
996
|
+
}
|
|
834
997
|
declare module "intl-tel-input/i18n/hi/interface" {
|
|
835
998
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
836
999
|
const interfaceTranslations: I18n;
|
|
@@ -844,11 +1007,20 @@ declare module "intl-tel-input/i18n/hi" {
|
|
|
844
1007
|
const allTranslations: I18n;
|
|
845
1008
|
export default allTranslations;
|
|
846
1009
|
}
|
|
1010
|
+
declare module "intl-tel-input/i18n/hr/index.ngtypecheck" {
|
|
1011
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1012
|
+
}
|
|
1013
|
+
declare module "intl-tel-input/i18n/hr/countries.ngtypecheck" {
|
|
1014
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1015
|
+
}
|
|
847
1016
|
declare module "intl-tel-input/i18n/hr/countries" {
|
|
848
1017
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
849
1018
|
const countryTranslations: I18n;
|
|
850
1019
|
export default countryTranslations;
|
|
851
1020
|
}
|
|
1021
|
+
declare module "intl-tel-input/i18n/hr/interface.ngtypecheck" {
|
|
1022
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1023
|
+
}
|
|
852
1024
|
declare module "intl-tel-input/i18n/hr/interface" {
|
|
853
1025
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
854
1026
|
const interfaceTranslations: I18n;
|
|
@@ -862,11 +1034,20 @@ declare module "intl-tel-input/i18n/hr" {
|
|
|
862
1034
|
const allTranslations: I18n;
|
|
863
1035
|
export default allTranslations;
|
|
864
1036
|
}
|
|
1037
|
+
declare module "intl-tel-input/i18n/hu/index.ngtypecheck" {
|
|
1038
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1039
|
+
}
|
|
1040
|
+
declare module "intl-tel-input/i18n/hu/countries.ngtypecheck" {
|
|
1041
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1042
|
+
}
|
|
865
1043
|
declare module "intl-tel-input/i18n/hu/countries" {
|
|
866
1044
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
867
1045
|
const countryTranslations: I18n;
|
|
868
1046
|
export default countryTranslations;
|
|
869
1047
|
}
|
|
1048
|
+
declare module "intl-tel-input/i18n/hu/interface.ngtypecheck" {
|
|
1049
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1050
|
+
}
|
|
870
1051
|
declare module "intl-tel-input/i18n/hu/interface" {
|
|
871
1052
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
872
1053
|
const interfaceTranslations: I18n;
|
|
@@ -880,11 +1061,20 @@ declare module "intl-tel-input/i18n/hu" {
|
|
|
880
1061
|
const allTranslations: I18n;
|
|
881
1062
|
export default allTranslations;
|
|
882
1063
|
}
|
|
1064
|
+
declare module "intl-tel-input/i18n/id/index.ngtypecheck" {
|
|
1065
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1066
|
+
}
|
|
1067
|
+
declare module "intl-tel-input/i18n/id/countries.ngtypecheck" {
|
|
1068
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1069
|
+
}
|
|
883
1070
|
declare module "intl-tel-input/i18n/id/countries" {
|
|
884
1071
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
885
1072
|
const countryTranslations: I18n;
|
|
886
1073
|
export default countryTranslations;
|
|
887
1074
|
}
|
|
1075
|
+
declare module "intl-tel-input/i18n/id/interface.ngtypecheck" {
|
|
1076
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1077
|
+
}
|
|
888
1078
|
declare module "intl-tel-input/i18n/id/interface" {
|
|
889
1079
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
890
1080
|
const interfaceTranslations: I18n;
|
|
@@ -898,11 +1088,20 @@ declare module "intl-tel-input/i18n/id" {
|
|
|
898
1088
|
const allTranslations: I18n;
|
|
899
1089
|
export default allTranslations;
|
|
900
1090
|
}
|
|
1091
|
+
declare module "intl-tel-input/i18n/it/index.ngtypecheck" {
|
|
1092
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1093
|
+
}
|
|
1094
|
+
declare module "intl-tel-input/i18n/it/countries.ngtypecheck" {
|
|
1095
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1096
|
+
}
|
|
901
1097
|
declare module "intl-tel-input/i18n/it/countries" {
|
|
902
1098
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
903
1099
|
const countryTranslations: I18n;
|
|
904
1100
|
export default countryTranslations;
|
|
905
1101
|
}
|
|
1102
|
+
declare module "intl-tel-input/i18n/it/interface.ngtypecheck" {
|
|
1103
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1104
|
+
}
|
|
906
1105
|
declare module "intl-tel-input/i18n/it/interface" {
|
|
907
1106
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
908
1107
|
const interfaceTranslations: I18n;
|
|
@@ -916,11 +1115,20 @@ declare module "intl-tel-input/i18n/it" {
|
|
|
916
1115
|
const allTranslations: I18n;
|
|
917
1116
|
export default allTranslations;
|
|
918
1117
|
}
|
|
1118
|
+
declare module "intl-tel-input/i18n/ja/index.ngtypecheck" {
|
|
1119
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1120
|
+
}
|
|
1121
|
+
declare module "intl-tel-input/i18n/ja/countries.ngtypecheck" {
|
|
1122
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1123
|
+
}
|
|
919
1124
|
declare module "intl-tel-input/i18n/ja/countries" {
|
|
920
1125
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
921
1126
|
const countryTranslations: I18n;
|
|
922
1127
|
export default countryTranslations;
|
|
923
1128
|
}
|
|
1129
|
+
declare module "intl-tel-input/i18n/ja/interface.ngtypecheck" {
|
|
1130
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1131
|
+
}
|
|
924
1132
|
declare module "intl-tel-input/i18n/ja/interface" {
|
|
925
1133
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
926
1134
|
const interfaceTranslations: I18n;
|
|
@@ -934,11 +1142,20 @@ declare module "intl-tel-input/i18n/ja" {
|
|
|
934
1142
|
const allTranslations: I18n;
|
|
935
1143
|
export default allTranslations;
|
|
936
1144
|
}
|
|
1145
|
+
declare module "intl-tel-input/i18n/ko/index.ngtypecheck" {
|
|
1146
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1147
|
+
}
|
|
1148
|
+
declare module "intl-tel-input/i18n/ko/countries.ngtypecheck" {
|
|
1149
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1150
|
+
}
|
|
937
1151
|
declare module "intl-tel-input/i18n/ko/countries" {
|
|
938
1152
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
939
1153
|
const countryTranslations: I18n;
|
|
940
1154
|
export default countryTranslations;
|
|
941
1155
|
}
|
|
1156
|
+
declare module "intl-tel-input/i18n/ko/interface.ngtypecheck" {
|
|
1157
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1158
|
+
}
|
|
942
1159
|
declare module "intl-tel-input/i18n/ko/interface" {
|
|
943
1160
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
944
1161
|
const interfaceTranslations: I18n;
|
|
@@ -952,11 +1169,20 @@ declare module "intl-tel-input/i18n/ko" {
|
|
|
952
1169
|
const allTranslations: I18n;
|
|
953
1170
|
export default allTranslations;
|
|
954
1171
|
}
|
|
1172
|
+
declare module "intl-tel-input/i18n/mr/index.ngtypecheck" {
|
|
1173
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1174
|
+
}
|
|
1175
|
+
declare module "intl-tel-input/i18n/mr/countries.ngtypecheck" {
|
|
1176
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1177
|
+
}
|
|
955
1178
|
declare module "intl-tel-input/i18n/mr/countries" {
|
|
956
1179
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
957
1180
|
const countryTranslations: I18n;
|
|
958
1181
|
export default countryTranslations;
|
|
959
1182
|
}
|
|
1183
|
+
declare module "intl-tel-input/i18n/mr/interface.ngtypecheck" {
|
|
1184
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1185
|
+
}
|
|
960
1186
|
declare module "intl-tel-input/i18n/mr/interface" {
|
|
961
1187
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
962
1188
|
const interfaceTranslations: I18n;
|
|
@@ -970,11 +1196,20 @@ declare module "intl-tel-input/i18n/mr" {
|
|
|
970
1196
|
const allTranslations: I18n;
|
|
971
1197
|
export default allTranslations;
|
|
972
1198
|
}
|
|
1199
|
+
declare module "intl-tel-input/i18n/nl/index.ngtypecheck" {
|
|
1200
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1201
|
+
}
|
|
1202
|
+
declare module "intl-tel-input/i18n/nl/countries.ngtypecheck" {
|
|
1203
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1204
|
+
}
|
|
973
1205
|
declare module "intl-tel-input/i18n/nl/countries" {
|
|
974
1206
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
975
1207
|
const countryTranslations: I18n;
|
|
976
1208
|
export default countryTranslations;
|
|
977
1209
|
}
|
|
1210
|
+
declare module "intl-tel-input/i18n/nl/interface.ngtypecheck" {
|
|
1211
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1212
|
+
}
|
|
978
1213
|
declare module "intl-tel-input/i18n/nl/interface" {
|
|
979
1214
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
980
1215
|
const interfaceTranslations: I18n;
|
|
@@ -988,11 +1223,20 @@ declare module "intl-tel-input/i18n/nl" {
|
|
|
988
1223
|
const allTranslations: I18n;
|
|
989
1224
|
export default allTranslations;
|
|
990
1225
|
}
|
|
1226
|
+
declare module "intl-tel-input/i18n/no/index.ngtypecheck" {
|
|
1227
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1228
|
+
}
|
|
1229
|
+
declare module "intl-tel-input/i18n/no/countries.ngtypecheck" {
|
|
1230
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1231
|
+
}
|
|
991
1232
|
declare module "intl-tel-input/i18n/no/countries" {
|
|
992
1233
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
993
1234
|
const countryTranslations: I18n;
|
|
994
1235
|
export default countryTranslations;
|
|
995
1236
|
}
|
|
1237
|
+
declare module "intl-tel-input/i18n/no/interface.ngtypecheck" {
|
|
1238
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1239
|
+
}
|
|
996
1240
|
declare module "intl-tel-input/i18n/no/interface" {
|
|
997
1241
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
998
1242
|
const interfaceTranslations: I18n;
|
|
@@ -1006,11 +1250,20 @@ declare module "intl-tel-input/i18n/no" {
|
|
|
1006
1250
|
const allTranslations: I18n;
|
|
1007
1251
|
export default allTranslations;
|
|
1008
1252
|
}
|
|
1253
|
+
declare module "intl-tel-input/i18n/pl/index.ngtypecheck" {
|
|
1254
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1255
|
+
}
|
|
1256
|
+
declare module "intl-tel-input/i18n/pl/countries.ngtypecheck" {
|
|
1257
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1258
|
+
}
|
|
1009
1259
|
declare module "intl-tel-input/i18n/pl/countries" {
|
|
1010
1260
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1011
1261
|
const countryTranslations: I18n;
|
|
1012
1262
|
export default countryTranslations;
|
|
1013
1263
|
}
|
|
1264
|
+
declare module "intl-tel-input/i18n/pl/interface.ngtypecheck" {
|
|
1265
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1266
|
+
}
|
|
1014
1267
|
declare module "intl-tel-input/i18n/pl/interface" {
|
|
1015
1268
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1016
1269
|
const interfaceTranslations: I18n;
|
|
@@ -1024,11 +1277,20 @@ declare module "intl-tel-input/i18n/pl" {
|
|
|
1024
1277
|
const allTranslations: I18n;
|
|
1025
1278
|
export default allTranslations;
|
|
1026
1279
|
}
|
|
1280
|
+
declare module "intl-tel-input/i18n/pt/index.ngtypecheck" {
|
|
1281
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1282
|
+
}
|
|
1283
|
+
declare module "intl-tel-input/i18n/pt/countries.ngtypecheck" {
|
|
1284
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1285
|
+
}
|
|
1027
1286
|
declare module "intl-tel-input/i18n/pt/countries" {
|
|
1028
1287
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1029
1288
|
const countryTranslations: I18n;
|
|
1030
1289
|
export default countryTranslations;
|
|
1031
1290
|
}
|
|
1291
|
+
declare module "intl-tel-input/i18n/pt/interface.ngtypecheck" {
|
|
1292
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1293
|
+
}
|
|
1032
1294
|
declare module "intl-tel-input/i18n/pt/interface" {
|
|
1033
1295
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1034
1296
|
const interfaceTranslations: I18n;
|
|
@@ -1042,11 +1304,20 @@ declare module "intl-tel-input/i18n/pt" {
|
|
|
1042
1304
|
const allTranslations: I18n;
|
|
1043
1305
|
export default allTranslations;
|
|
1044
1306
|
}
|
|
1307
|
+
declare module "intl-tel-input/i18n/ro/index.ngtypecheck" {
|
|
1308
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1309
|
+
}
|
|
1310
|
+
declare module "intl-tel-input/i18n/ro/countries.ngtypecheck" {
|
|
1311
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1312
|
+
}
|
|
1045
1313
|
declare module "intl-tel-input/i18n/ro/countries" {
|
|
1046
1314
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1047
1315
|
const countryTranslations: I18n;
|
|
1048
1316
|
export default countryTranslations;
|
|
1049
1317
|
}
|
|
1318
|
+
declare module "intl-tel-input/i18n/ro/interface.ngtypecheck" {
|
|
1319
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1320
|
+
}
|
|
1050
1321
|
declare module "intl-tel-input/i18n/ro/interface" {
|
|
1051
1322
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1052
1323
|
const interfaceTranslations: I18n;
|
|
@@ -1060,11 +1331,20 @@ declare module "intl-tel-input/i18n/ro" {
|
|
|
1060
1331
|
const allTranslations: I18n;
|
|
1061
1332
|
export default allTranslations;
|
|
1062
1333
|
}
|
|
1334
|
+
declare module "intl-tel-input/i18n/ru/index.ngtypecheck" {
|
|
1335
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1336
|
+
}
|
|
1337
|
+
declare module "intl-tel-input/i18n/ru/countries.ngtypecheck" {
|
|
1338
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1339
|
+
}
|
|
1063
1340
|
declare module "intl-tel-input/i18n/ru/countries" {
|
|
1064
1341
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1065
1342
|
const countryTranslations: I18n;
|
|
1066
1343
|
export default countryTranslations;
|
|
1067
1344
|
}
|
|
1345
|
+
declare module "intl-tel-input/i18n/ru/interface.ngtypecheck" {
|
|
1346
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1347
|
+
}
|
|
1068
1348
|
declare module "intl-tel-input/i18n/ru/interface" {
|
|
1069
1349
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1070
1350
|
const interfaceTranslations: I18n;
|
|
@@ -1078,11 +1358,20 @@ declare module "intl-tel-input/i18n/ru" {
|
|
|
1078
1358
|
const allTranslations: I18n;
|
|
1079
1359
|
export default allTranslations;
|
|
1080
1360
|
}
|
|
1361
|
+
declare module "intl-tel-input/i18n/sk/index.ngtypecheck" {
|
|
1362
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1363
|
+
}
|
|
1364
|
+
declare module "intl-tel-input/i18n/sk/countries.ngtypecheck" {
|
|
1365
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1366
|
+
}
|
|
1081
1367
|
declare module "intl-tel-input/i18n/sk/countries" {
|
|
1082
1368
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1083
1369
|
const countryTranslations: I18n;
|
|
1084
1370
|
export default countryTranslations;
|
|
1085
1371
|
}
|
|
1372
|
+
declare module "intl-tel-input/i18n/sk/interface.ngtypecheck" {
|
|
1373
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1374
|
+
}
|
|
1086
1375
|
declare module "intl-tel-input/i18n/sk/interface" {
|
|
1087
1376
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1088
1377
|
const interfaceTranslations: I18n;
|
|
@@ -1096,11 +1385,20 @@ declare module "intl-tel-input/i18n/sk" {
|
|
|
1096
1385
|
const allTranslations: I18n;
|
|
1097
1386
|
export default allTranslations;
|
|
1098
1387
|
}
|
|
1388
|
+
declare module "intl-tel-input/i18n/sv/index.ngtypecheck" {
|
|
1389
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1390
|
+
}
|
|
1391
|
+
declare module "intl-tel-input/i18n/sv/countries.ngtypecheck" {
|
|
1392
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1393
|
+
}
|
|
1099
1394
|
declare module "intl-tel-input/i18n/sv/countries" {
|
|
1100
1395
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1101
1396
|
const countryTranslations: I18n;
|
|
1102
1397
|
export default countryTranslations;
|
|
1103
1398
|
}
|
|
1399
|
+
declare module "intl-tel-input/i18n/sv/interface.ngtypecheck" {
|
|
1400
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1401
|
+
}
|
|
1104
1402
|
declare module "intl-tel-input/i18n/sv/interface" {
|
|
1105
1403
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1106
1404
|
const interfaceTranslations: I18n;
|
|
@@ -1114,11 +1412,20 @@ declare module "intl-tel-input/i18n/sv" {
|
|
|
1114
1412
|
const allTranslations: I18n;
|
|
1115
1413
|
export default allTranslations;
|
|
1116
1414
|
}
|
|
1415
|
+
declare module "intl-tel-input/i18n/te/index.ngtypecheck" {
|
|
1416
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1417
|
+
}
|
|
1418
|
+
declare module "intl-tel-input/i18n/te/countries.ngtypecheck" {
|
|
1419
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1420
|
+
}
|
|
1117
1421
|
declare module "intl-tel-input/i18n/te/countries" {
|
|
1118
1422
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1119
1423
|
const countryTranslations: I18n;
|
|
1120
1424
|
export default countryTranslations;
|
|
1121
1425
|
}
|
|
1426
|
+
declare module "intl-tel-input/i18n/te/interface.ngtypecheck" {
|
|
1427
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1428
|
+
}
|
|
1122
1429
|
declare module "intl-tel-input/i18n/te/interface" {
|
|
1123
1430
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1124
1431
|
const interfaceTranslations: I18n;
|
|
@@ -1132,11 +1439,20 @@ declare module "intl-tel-input/i18n/te" {
|
|
|
1132
1439
|
const allTranslations: I18n;
|
|
1133
1440
|
export default allTranslations;
|
|
1134
1441
|
}
|
|
1442
|
+
declare module "intl-tel-input/i18n/th/index.ngtypecheck" {
|
|
1443
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1444
|
+
}
|
|
1445
|
+
declare module "intl-tel-input/i18n/th/countries.ngtypecheck" {
|
|
1446
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1447
|
+
}
|
|
1135
1448
|
declare module "intl-tel-input/i18n/th/countries" {
|
|
1136
1449
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1137
1450
|
const countryTranslations: I18n;
|
|
1138
1451
|
export default countryTranslations;
|
|
1139
1452
|
}
|
|
1453
|
+
declare module "intl-tel-input/i18n/th/interface.ngtypecheck" {
|
|
1454
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1455
|
+
}
|
|
1140
1456
|
declare module "intl-tel-input/i18n/th/interface" {
|
|
1141
1457
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1142
1458
|
const interfaceTranslations: I18n;
|
|
@@ -1150,11 +1466,20 @@ declare module "intl-tel-input/i18n/th" {
|
|
|
1150
1466
|
const allTranslations: I18n;
|
|
1151
1467
|
export default allTranslations;
|
|
1152
1468
|
}
|
|
1469
|
+
declare module "intl-tel-input/i18n/tr/index.ngtypecheck" {
|
|
1470
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1471
|
+
}
|
|
1472
|
+
declare module "intl-tel-input/i18n/tr/countries.ngtypecheck" {
|
|
1473
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1474
|
+
}
|
|
1153
1475
|
declare module "intl-tel-input/i18n/tr/countries" {
|
|
1154
1476
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1155
1477
|
const countryTranslations: I18n;
|
|
1156
1478
|
export default countryTranslations;
|
|
1157
1479
|
}
|
|
1480
|
+
declare module "intl-tel-input/i18n/tr/interface.ngtypecheck" {
|
|
1481
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1482
|
+
}
|
|
1158
1483
|
declare module "intl-tel-input/i18n/tr/interface" {
|
|
1159
1484
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1160
1485
|
const interfaceTranslations: I18n;
|
|
@@ -1168,11 +1493,20 @@ declare module "intl-tel-input/i18n/tr" {
|
|
|
1168
1493
|
const allTranslations: I18n;
|
|
1169
1494
|
export default allTranslations;
|
|
1170
1495
|
}
|
|
1496
|
+
declare module "intl-tel-input/i18n/uk/index.ngtypecheck" {
|
|
1497
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1498
|
+
}
|
|
1499
|
+
declare module "intl-tel-input/i18n/uk/countries.ngtypecheck" {
|
|
1500
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1501
|
+
}
|
|
1171
1502
|
declare module "intl-tel-input/i18n/uk/countries" {
|
|
1172
1503
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1173
1504
|
const countryTranslations: I18n;
|
|
1174
1505
|
export default countryTranslations;
|
|
1175
1506
|
}
|
|
1507
|
+
declare module "intl-tel-input/i18n/uk/interface.ngtypecheck" {
|
|
1508
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1509
|
+
}
|
|
1176
1510
|
declare module "intl-tel-input/i18n/uk/interface" {
|
|
1177
1511
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1178
1512
|
const interfaceTranslations: I18n;
|
|
@@ -1186,11 +1520,20 @@ declare module "intl-tel-input/i18n/uk" {
|
|
|
1186
1520
|
const allTranslations: I18n;
|
|
1187
1521
|
export default allTranslations;
|
|
1188
1522
|
}
|
|
1523
|
+
declare module "intl-tel-input/i18n/ur/index.ngtypecheck" {
|
|
1524
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1525
|
+
}
|
|
1526
|
+
declare module "intl-tel-input/i18n/ur/countries.ngtypecheck" {
|
|
1527
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1528
|
+
}
|
|
1189
1529
|
declare module "intl-tel-input/i18n/ur/countries" {
|
|
1190
1530
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1191
1531
|
const countryTranslations: I18n;
|
|
1192
1532
|
export default countryTranslations;
|
|
1193
1533
|
}
|
|
1534
|
+
declare module "intl-tel-input/i18n/ur/interface.ngtypecheck" {
|
|
1535
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1536
|
+
}
|
|
1194
1537
|
declare module "intl-tel-input/i18n/ur/interface" {
|
|
1195
1538
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1196
1539
|
const interfaceTranslations: I18n;
|
|
@@ -1204,11 +1547,20 @@ declare module "intl-tel-input/i18n/ur" {
|
|
|
1204
1547
|
const allTranslations: I18n;
|
|
1205
1548
|
export default allTranslations;
|
|
1206
1549
|
}
|
|
1550
|
+
declare module "intl-tel-input/i18n/uz/index.ngtypecheck" {
|
|
1551
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1552
|
+
}
|
|
1553
|
+
declare module "intl-tel-input/i18n/uz/countries.ngtypecheck" {
|
|
1554
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1555
|
+
}
|
|
1207
1556
|
declare module "intl-tel-input/i18n/uz/countries" {
|
|
1208
1557
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1209
1558
|
const countryTranslations: I18n;
|
|
1210
1559
|
export default countryTranslations;
|
|
1211
1560
|
}
|
|
1561
|
+
declare module "intl-tel-input/i18n/uz/interface.ngtypecheck" {
|
|
1562
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1563
|
+
}
|
|
1212
1564
|
declare module "intl-tel-input/i18n/uz/interface" {
|
|
1213
1565
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1214
1566
|
const interfaceTranslations: I18n;
|
|
@@ -1222,11 +1574,20 @@ declare module "intl-tel-input/i18n/uz" {
|
|
|
1222
1574
|
const allTranslations: I18n;
|
|
1223
1575
|
export default allTranslations;
|
|
1224
1576
|
}
|
|
1577
|
+
declare module "intl-tel-input/i18n/vi/index.ngtypecheck" {
|
|
1578
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1579
|
+
}
|
|
1580
|
+
declare module "intl-tel-input/i18n/vi/countries.ngtypecheck" {
|
|
1581
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1582
|
+
}
|
|
1225
1583
|
declare module "intl-tel-input/i18n/vi/countries" {
|
|
1226
1584
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1227
1585
|
const countryTranslations: I18n;
|
|
1228
1586
|
export default countryTranslations;
|
|
1229
1587
|
}
|
|
1588
|
+
declare module "intl-tel-input/i18n/vi/interface.ngtypecheck" {
|
|
1589
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1590
|
+
}
|
|
1230
1591
|
declare module "intl-tel-input/i18n/vi/interface" {
|
|
1231
1592
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1232
1593
|
const interfaceTranslations: I18n;
|
|
@@ -1240,11 +1601,20 @@ declare module "intl-tel-input/i18n/vi" {
|
|
|
1240
1601
|
const allTranslations: I18n;
|
|
1241
1602
|
export default allTranslations;
|
|
1242
1603
|
}
|
|
1604
|
+
declare module "intl-tel-input/i18n/zh/index.ngtypecheck" {
|
|
1605
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1606
|
+
}
|
|
1607
|
+
declare module "intl-tel-input/i18n/zh/countries.ngtypecheck" {
|
|
1608
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1609
|
+
}
|
|
1243
1610
|
declare module "intl-tel-input/i18n/zh/countries" {
|
|
1244
1611
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1245
1612
|
const countryTranslations: I18n;
|
|
1246
1613
|
export default countryTranslations;
|
|
1247
1614
|
}
|
|
1615
|
+
declare module "intl-tel-input/i18n/zh/interface.ngtypecheck" {
|
|
1616
|
+
export const USED_FOR_NG_TYPE_CHECKING = true;
|
|
1617
|
+
}
|
|
1248
1618
|
declare module "intl-tel-input/i18n/zh/interface" {
|
|
1249
1619
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
1250
1620
|
const interfaceTranslations: I18n;
|