@alikhalilll/a-tel-input 1.0.1 → 1.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/index.cjs +13331 -473
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +13332 -474
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +9 -4
- package/src/components/ACountrySelect.vue +79 -1
- package/web-types.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -547,8 +547,8 @@ declare const __VLS_base$2: import("vue").DefineComponent<__VLS_PublicProps$1, {
|
|
|
547
547
|
"onUpdate:phone"?: ((value: string) => any) | undefined;
|
|
548
548
|
"onUpdate:country"?: ((value: number | null) => any) | undefined;
|
|
549
549
|
}>, {
|
|
550
|
-
placeholder: string;
|
|
551
550
|
size: ATelInputSize;
|
|
551
|
+
placeholder: string;
|
|
552
552
|
showValidationIcon: boolean;
|
|
553
553
|
detectCountry: DetectionStrategy;
|
|
554
554
|
defaultCountry: string;
|
|
@@ -581,18 +581,18 @@ declare const __VLS_base$1: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
581
581
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
582
582
|
"onUpdate:selected"?: ((value: string) => any) | undefined;
|
|
583
583
|
}>, {
|
|
584
|
-
size: ATelInputSize;
|
|
585
584
|
searchPlaceholder: string;
|
|
586
585
|
emptyText: string;
|
|
587
586
|
loadingText: string;
|
|
588
587
|
suggestedLabel: string;
|
|
589
588
|
allCountriesLabel: string;
|
|
590
|
-
|
|
591
|
-
selectCountryLabel: string;
|
|
589
|
+
size: ATelInputSize;
|
|
592
590
|
suggestedLimit: number;
|
|
593
591
|
maxResults: number;
|
|
594
592
|
kbdOpen: string | null;
|
|
595
593
|
kbdClose: string | null;
|
|
594
|
+
countryLabel: string;
|
|
595
|
+
selectCountryLabel: string;
|
|
596
596
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
597
597
|
declare const __VLS_export$1: typeof __VLS_base$1;
|
|
598
598
|
declare const _default$1: typeof __VLS_export$1;
|
package/dist/index.d.ts
CHANGED
|
@@ -547,8 +547,8 @@ declare const __VLS_base$2: import("vue").DefineComponent<__VLS_PublicProps$1, {
|
|
|
547
547
|
"onUpdate:phone"?: ((value: string) => any) | undefined;
|
|
548
548
|
"onUpdate:country"?: ((value: number | null) => any) | undefined;
|
|
549
549
|
}>, {
|
|
550
|
-
placeholder: string;
|
|
551
550
|
size: ATelInputSize;
|
|
551
|
+
placeholder: string;
|
|
552
552
|
showValidationIcon: boolean;
|
|
553
553
|
detectCountry: DetectionStrategy;
|
|
554
554
|
defaultCountry: string;
|
|
@@ -581,18 +581,18 @@ declare const __VLS_base$1: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
581
581
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
582
582
|
"onUpdate:selected"?: ((value: string) => any) | undefined;
|
|
583
583
|
}>, {
|
|
584
|
-
size: ATelInputSize;
|
|
585
584
|
searchPlaceholder: string;
|
|
586
585
|
emptyText: string;
|
|
587
586
|
loadingText: string;
|
|
588
587
|
suggestedLabel: string;
|
|
589
588
|
allCountriesLabel: string;
|
|
590
|
-
|
|
591
|
-
selectCountryLabel: string;
|
|
589
|
+
size: ATelInputSize;
|
|
592
590
|
suggestedLimit: number;
|
|
593
591
|
maxResults: number;
|
|
594
592
|
kbdOpen: string | null;
|
|
595
593
|
kbdClose: string | null;
|
|
594
|
+
countryLabel: string;
|
|
595
|
+
selectCountryLabel: string;
|
|
596
596
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
597
597
|
declare const __VLS_export$1: typeof __VLS_base$1;
|
|
598
598
|
declare const _default$1: typeof __VLS_export$1;
|