@types/vue-tel-input 2.1.6 → 2.1.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.
vue-tel-input/README.md CHANGED
@@ -17,7 +17,7 @@ export const VueTelInput: VueTelInputConstructor;
17
17
  export interface VueTelInputProps {
18
18
  value: string;
19
19
  placeholder: string;
20
- disabledFetchingCountry: boolean;
20
+ autoDefaultCountry: boolean;
21
21
  disabled: boolean;
22
22
  disabledFormatting: boolean;
23
23
  invalidMsg: string;
@@ -25,7 +25,7 @@ export interface VueTelInputProps {
25
25
  defaultCountry: string;
26
26
  enabledCountryCode: boolean;
27
27
  enabledFlags: boolean;
28
- preferredCountries: boolean;
28
+ preferredCountries: any[];
29
29
  onlyCountries: any[];
30
30
  ignoredCountries: any[];
31
31
  autocomplete: string;
@@ -109,7 +109,7 @@ export interface VueTelInputConstructor extends VueConstructor {
109
109
  ````
110
110
 
111
111
  ### Additional Details
112
- * Last updated: Tue, 07 Nov 2023 15:11:36 GMT
112
+ * Last updated: Tue, 06 Aug 2024 21:07:20 GMT
113
113
  * Dependencies: [vue](https://npmjs.com/package/vue)
114
114
 
115
115
  # Credits
vue-tel-input/index.d.ts CHANGED
@@ -7,7 +7,7 @@ export const VueTelInput: VueTelInputConstructor;
7
7
  export interface VueTelInputProps {
8
8
  value: string;
9
9
  placeholder: string;
10
- disabledFetchingCountry: boolean;
10
+ autoDefaultCountry: boolean;
11
11
  disabled: boolean;
12
12
  disabledFormatting: boolean;
13
13
  invalidMsg: string;
@@ -15,7 +15,7 @@ export interface VueTelInputProps {
15
15
  defaultCountry: string;
16
16
  enabledCountryCode: boolean;
17
17
  enabledFlags: boolean;
18
- preferredCountries: boolean;
18
+ preferredCountries: any[];
19
19
  onlyCountries: any[];
20
20
  ignoredCountries: any[];
21
21
  autocomplete: string;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/vue-tel-input",
3
- "version": "2.1.6",
3
+ "version": "2.1.7",
4
4
  "description": "TypeScript definitions for vue-tel-input",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vue-tel-input",
6
6
  "license": "MIT",
@@ -22,6 +22,6 @@
22
22
  "dependencies": {
23
23
  "vue": "^2.0.0"
24
24
  },
25
- "typesPublisherContentHash": "7d94537d633ce24fc59d1d0d006dbb7a57bb7d3819a41314367adc276dbfe3f4",
26
- "typeScriptVersion": "4.5"
25
+ "typesPublisherContentHash": "55f25f3f17109df697ced2cbed21ba78aff5ec479ab4cc199fe779f4fbeed0b6",
26
+ "typeScriptVersion": "4.8"
27
27
  }