intl-tel-input 27.3.0 → 28.0.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.
- package/dist/css/intlTelInput-no-assets.css +2 -2
- package/dist/css/intlTelInput.css +3 -3
- package/dist/js/data.d.ts +1 -4
- package/dist/js/data.js +3 -9
- package/dist/js/data.min.js +2 -2
- package/dist/js/data.mjs +2 -8
- package/dist/js/i18n.d.ts +1 -1592
- package/dist/js/intlTelInput.d.ts +62 -49
- package/dist/js/intlTelInput.js +221 -182
- package/dist/js/intlTelInput.min.js +6 -6
- package/dist/js/intlTelInput.mjs +219 -180
- package/dist/js/intlTelInputWithUtils.js +622 -568
- package/dist/js/intlTelInputWithUtils.min.js +6 -6
- package/dist/js/intlTelInputWithUtils.mjs +620 -566
- package/dist/js/utils.js +56 -55
- package/package.json +14 -181
- package/CHANGELOG.md +0 -33
- package/angular/README.md +0 -13
- package/angular/dist/IntlTelInput.d.ts +0 -110
- package/angular/dist/IntlTelInput.js +0 -5096
- package/angular/dist/IntlTelInputWithUtils.d.ts +0 -3
- package/angular/dist/IntlTelInputWithUtils.js +0 -11435
- package/react/README.md +0 -13
- package/react/dist/IntlTelInput.d.ts +0 -25
- package/react/dist/IntlTelInput.js +0 -4788
- package/react/dist/IntlTelInputWithUtils.d.ts +0 -4
- package/react/dist/IntlTelInputWithUtils.js +0 -11127
- package/svelte/README.md +0 -14
- package/svelte/src/IntlTelInput.svelte +0 -233
- package/svelte/src/IntlTelInput.svelte.d.ts +0 -36
- package/svelte/src/IntlTelInputWithUtils.svelte +0 -24
- package/vue/README.md +0 -14
- package/vue/dist/IntlTelInput-jw1tkqdD.js +0 -2657
- package/vue/dist/IntlTelInput.js +0 -5
- package/vue/dist/IntlTelInput.vue.d.ts +0 -43
- package/vue/dist/IntlTelInputWithUtils.js +0 -49403
- package/vue/dist/index.d.ts +0 -4
- package/vue/dist/indexWithUtils.d.ts +0 -3
package/vue/dist/IntlTelInput.js
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { SomeOptions } from 'intl-tel-input';
|
|
2
|
-
import { InputHTMLAttributes } from 'vue';
|
|
3
|
-
interface Props {
|
|
4
|
-
usePreciseValidation?: boolean;
|
|
5
|
-
disabled?: boolean;
|
|
6
|
-
readonly?: boolean;
|
|
7
|
-
inputProps?: InputHTMLAttributes;
|
|
8
|
-
initialValue?: string | null;
|
|
9
|
-
modelValue?: string | null;
|
|
10
|
-
}
|
|
11
|
-
type __VLS_Props = Props & SomeOptions;
|
|
12
|
-
type StrictRejectSource = "key" | "paste";
|
|
13
|
-
type StrictRejectReason = "invalid" | "max-length";
|
|
14
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
15
|
-
instance: import('vue').ShallowRef<import('intl-tel-input').Iti | null, import('intl-tel-input').Iti | null>;
|
|
16
|
-
input: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
17
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
18
|
-
changeNumber: (value: string) => any;
|
|
19
|
-
changeCountry: (value: string) => any;
|
|
20
|
-
changeValidity: (value: boolean) => any;
|
|
21
|
-
changeErrorCode: (value: number | null) => any;
|
|
22
|
-
openCountryDropdown: () => any;
|
|
23
|
-
closeCountryDropdown: () => any;
|
|
24
|
-
strictReject: (source: StrictRejectSource, rejectedInput: string, reason: StrictRejectReason) => any;
|
|
25
|
-
"update:modelValue": (value: string) => any;
|
|
26
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
27
|
-
onChangeNumber?: ((value: string) => any) | undefined;
|
|
28
|
-
onChangeCountry?: ((value: string) => any) | undefined;
|
|
29
|
-
onChangeValidity?: ((value: boolean) => any) | undefined;
|
|
30
|
-
onChangeErrorCode?: ((value: number | null) => any) | undefined;
|
|
31
|
-
onOpenCountryDropdown?: (() => any) | undefined;
|
|
32
|
-
onCloseCountryDropdown?: (() => any) | undefined;
|
|
33
|
-
onStrictReject?: ((source: StrictRejectSource, rejectedInput: string, reason: StrictRejectReason) => any) | undefined;
|
|
34
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
35
|
-
}>, {
|
|
36
|
-
usePreciseValidation: boolean;
|
|
37
|
-
disabled: boolean;
|
|
38
|
-
readonly: boolean;
|
|
39
|
-
inputProps: InputHTMLAttributes;
|
|
40
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
41
|
-
input: HTMLInputElement;
|
|
42
|
-
}, any>;
|
|
43
|
-
export default _default;
|