intl-tel-input 24.1.3 → 24.2.1
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 +35 -32
- package/build/js/data.js +251 -7
- package/build/js/data.min.js +2 -2
- package/build/js/i18n/index.js +1 -0
- package/build/js/i18n/pl/countries.js +245 -0
- package/build/js/i18n/pl/index.js +5 -0
- package/build/js/i18n/pl/interface.js +13 -0
- package/build/js/intlTelInput.d.ts +19 -0
- package/build/js/intlTelInput.js +253 -9
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +253 -9
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/package.json +2 -2
- package/react/README.md +1 -1
- package/react/build/IntlTelInput.cjs +252 -8
- package/react/build/IntlTelInput.d.ts +19 -0
- package/react/build/IntlTelInput.js +252 -8
- package/react/build/IntlTelInputWithUtils.cjs +252 -8
- package/react/build/IntlTelInputWithUtils.js +252 -8
|
@@ -900,6 +900,24 @@ declare module "intl-tel-input/i18n/nl" {
|
|
|
900
900
|
const allTranslations: I18n;
|
|
901
901
|
export default allTranslations;
|
|
902
902
|
}
|
|
903
|
+
declare module "intl-tel-input/i18n/pl/countries" {
|
|
904
|
+
import { I18n } from "intl-tel-input/i18n/types";
|
|
905
|
+
const countryTranslations: I18n;
|
|
906
|
+
export default countryTranslations;
|
|
907
|
+
}
|
|
908
|
+
declare module "intl-tel-input/i18n/pl/interface" {
|
|
909
|
+
import { I18n } from "intl-tel-input/i18n/types";
|
|
910
|
+
const interfaceTranslations: I18n;
|
|
911
|
+
export default interfaceTranslations;
|
|
912
|
+
}
|
|
913
|
+
declare module "intl-tel-input/i18n/pl" {
|
|
914
|
+
import { I18n } from "intl-tel-input/i18n/types";
|
|
915
|
+
import countryTranslations from "intl-tel-input/i18n/pl/countries";
|
|
916
|
+
import interfaceTranslations from "intl-tel-input/i18n/pl/interface";
|
|
917
|
+
export { countryTranslations, interfaceTranslations };
|
|
918
|
+
const allTranslations: I18n;
|
|
919
|
+
export default allTranslations;
|
|
920
|
+
}
|
|
903
921
|
declare module "intl-tel-input/i18n/pt/countries" {
|
|
904
922
|
import { I18n } from "intl-tel-input/i18n/types";
|
|
905
923
|
const countryTranslations: I18n;
|
|
@@ -1103,6 +1121,7 @@ declare module "intl-tel-input/i18n" {
|
|
|
1103
1121
|
export { default as ko, countryTranslations as koCountryTranslations, interfaceTranslations as koInterfaceTranslations } from "intl-tel-input/i18n/ko";
|
|
1104
1122
|
export { default as mr, countryTranslations as mrCountryTranslations, interfaceTranslations as mrInterfaceTranslations } from "intl-tel-input/i18n/mr";
|
|
1105
1123
|
export { default as nl, countryTranslations as nlCountryTranslations, interfaceTranslations as nlInterfaceTranslations } from "intl-tel-input/i18n/nl";
|
|
1124
|
+
export { default as pl, countryTranslations as plCountryTranslations, interfaceTranslations as plInterfaceTranslations } from "intl-tel-input/i18n/pl";
|
|
1106
1125
|
export { default as pt, countryTranslations as ptCountryTranslations, interfaceTranslations as ptInterfaceTranslations } from "intl-tel-input/i18n/pt";
|
|
1107
1126
|
export { default as ro, countryTranslations as roCountryTranslations, interfaceTranslations as roInterfaceTranslations } from "intl-tel-input/i18n/ro";
|
|
1108
1127
|
export { default as ru, countryTranslations as ruCountryTranslations, interfaceTranslations as ruInterfaceTranslations } from "intl-tel-input/i18n/ru";
|