intl-tel-input 23.0.4 → 23.0.6
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 +3 -3
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/intlTelInput.js +6 -3
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +131 -247
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/build/js/utils.js +15 -15
- package/package.json +4 -4
- package/react/build/IntlTelInput.cjs +2845 -1
- package/react/build/IntlTelInput.d.ts +6 -4
- package/react/build/IntlTelInput.js +2813 -1
- package/react/build/IntlTelInputWithUtils.cjs +9043 -1
- package/react/build/IntlTelInputWithUtils.js +9011 -1
|
@@ -976,7 +976,7 @@ declare module "intl-tel-input" {
|
|
|
976
976
|
declare module "intl-tel-input/react" {
|
|
977
977
|
import { SomeOptions } from "intl-tel-input";
|
|
978
978
|
import React from "react";
|
|
979
|
-
|
|
979
|
+
type ItiProps = {
|
|
980
980
|
initialValue?: string;
|
|
981
981
|
onChangeNumber?: (number: string) => void;
|
|
982
982
|
onChangeCountry?: (country: string) => void;
|
|
@@ -985,7 +985,8 @@ declare module "intl-tel-input/react" {
|
|
|
985
985
|
usePreciseValidation?: boolean;
|
|
986
986
|
initOptions?: SomeOptions;
|
|
987
987
|
inputProps?: object;
|
|
988
|
-
}
|
|
988
|
+
};
|
|
989
|
+
const IntlTelInput: React.ForwardRefExoticComponent<ItiProps & React.RefAttributes<unknown>>;
|
|
989
990
|
export default IntlTelInput;
|
|
990
991
|
}
|
|
991
992
|
declare module "intl-tel-input/utils-compiled" {
|
|
@@ -999,7 +1000,7 @@ declare module "intl-tel-input/intlTelInputWithUtils" {
|
|
|
999
1000
|
declare module "intl-tel-input/reactWithUtils" {
|
|
1000
1001
|
import { SomeOptions } from "intl-tel-input";
|
|
1001
1002
|
import React from "react";
|
|
1002
|
-
|
|
1003
|
+
type ItiProps = {
|
|
1003
1004
|
initialValue?: string;
|
|
1004
1005
|
onChangeNumber?: (number: string) => void;
|
|
1005
1006
|
onChangeCountry?: (country: string) => void;
|
|
@@ -1008,6 +1009,7 @@ declare module "intl-tel-input/reactWithUtils" {
|
|
|
1008
1009
|
usePreciseValidation?: boolean;
|
|
1009
1010
|
initOptions?: SomeOptions;
|
|
1010
1011
|
inputProps?: object;
|
|
1011
|
-
}
|
|
1012
|
+
};
|
|
1013
|
+
const IntlTelInput: React.ForwardRefExoticComponent<ItiProps & React.RefAttributes<unknown>>;
|
|
1012
1014
|
export default IntlTelInput;
|
|
1013
1015
|
}
|