@progress/kendo-vue-inputs 3.1.4 → 3.2.0-dev.202204120815
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/cdn/js/kendo-vue-inputs.js +1 -1
- package/dist/es/input/Input.js +3 -3
- package/dist/es/maskedtextbox/MaskedTextBox.js +1 -1
- package/dist/es/numerictextbox/NumericTextBox.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/input/Input.js +3 -3
- package/dist/npm/maskedtextbox/MaskedTextBox.js +1 -1
- package/dist/npm/numerictextbox/NumericTextBox.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +10 -10
package/dist/es/input/Input.js
CHANGED
|
@@ -302,9 +302,9 @@ var InputVue2 = {
|
|
|
302
302
|
if (e.animationName === 'autoFillStart') {
|
|
303
303
|
var parent_1 = e.target.parentNode;
|
|
304
304
|
|
|
305
|
-
if (parent_1 && parent_1.classList.contains('k-
|
|
305
|
+
if (parent_1 && parent_1.classList.contains('k-empty')) {
|
|
306
306
|
this.$data.autofill = true;
|
|
307
|
-
parent_1.classList.remove('k-
|
|
307
|
+
parent_1.classList.remove('k-empty');
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
},
|
|
@@ -341,7 +341,7 @@ var InputVue2 = {
|
|
|
341
341
|
return {
|
|
342
342
|
'k-floating-label-container': true,
|
|
343
343
|
'k-focus': this.$data.focused,
|
|
344
|
-
'k-
|
|
344
|
+
'k-empty': !((this.computedValue === 0 ? true : this.computedValue) || this.$props.placeholder || this.$data.autofill),
|
|
345
345
|
'k-autofill': this.$data.autofill,
|
|
346
346
|
'k-invalid': !isValid && isValid !== undefined,
|
|
347
347
|
'k-rtl': this.$props.dir === 'rtl'
|
|
@@ -195,7 +195,7 @@ var MaskedTextBoxVue2 = {
|
|
|
195
195
|
return {
|
|
196
196
|
'k-floating-label-container': true,
|
|
197
197
|
'k-focus': this.currentFocused,
|
|
198
|
-
'k-
|
|
198
|
+
'k-empty': !this.computedValue(),
|
|
199
199
|
'k-invalid': !isValid && isValid !== undefined,
|
|
200
200
|
'k-rtl': this.$props.dir === 'rtl'
|
|
201
201
|
};
|
|
@@ -176,7 +176,7 @@ var NumericTextBoxVue2 = {
|
|
|
176
176
|
return {
|
|
177
177
|
'k-floating-label-container': true,
|
|
178
178
|
'k-focus': this.$data.focused,
|
|
179
|
-
'k-
|
|
179
|
+
'k-empty': !(compValue === 0 ? true : compValue || this.$props.placeholder),
|
|
180
180
|
'k-invalid': !isValid && isValid !== undefined,
|
|
181
181
|
'k-rtl': this.$props.dir === 'rtl'
|
|
182
182
|
};
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-inputs',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1649750818,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/npm/input/Input.js
CHANGED
|
@@ -313,9 +313,9 @@ var InputVue2 = {
|
|
|
313
313
|
if (e.animationName === 'autoFillStart') {
|
|
314
314
|
var parent_1 = e.target.parentNode;
|
|
315
315
|
|
|
316
|
-
if (parent_1 && parent_1.classList.contains('k-
|
|
316
|
+
if (parent_1 && parent_1.classList.contains('k-empty')) {
|
|
317
317
|
this.$data.autofill = true;
|
|
318
|
-
parent_1.classList.remove('k-
|
|
318
|
+
parent_1.classList.remove('k-empty');
|
|
319
319
|
}
|
|
320
320
|
}
|
|
321
321
|
},
|
|
@@ -352,7 +352,7 @@ var InputVue2 = {
|
|
|
352
352
|
return {
|
|
353
353
|
'k-floating-label-container': true,
|
|
354
354
|
'k-focus': this.$data.focused,
|
|
355
|
-
'k-
|
|
355
|
+
'k-empty': !((this.computedValue === 0 ? true : this.computedValue) || this.$props.placeholder || this.$data.autofill),
|
|
356
356
|
'k-autofill': this.$data.autofill,
|
|
357
357
|
'k-invalid': !isValid && isValid !== undefined,
|
|
358
358
|
'k-rtl': this.$props.dir === 'rtl'
|
|
@@ -207,7 +207,7 @@ var MaskedTextBoxVue2 = {
|
|
|
207
207
|
return {
|
|
208
208
|
'k-floating-label-container': true,
|
|
209
209
|
'k-focus': this.currentFocused,
|
|
210
|
-
'k-
|
|
210
|
+
'k-empty': !this.computedValue(),
|
|
211
211
|
'k-invalid': !isValid && isValid !== undefined,
|
|
212
212
|
'k-rtl': this.$props.dir === 'rtl'
|
|
213
213
|
};
|
|
@@ -191,7 +191,7 @@ var NumericTextBoxVue2 = {
|
|
|
191
191
|
return {
|
|
192
192
|
'k-floating-label-container': true,
|
|
193
193
|
'k-focus': this.$data.focused,
|
|
194
|
-
'k-
|
|
194
|
+
'k-empty': !(compValue === 0 ? true : compValue || this.$props.placeholder),
|
|
195
195
|
'k-invalid': !isValid && isValid !== undefined,
|
|
196
196
|
'k-rtl': this.$props.dir === 'rtl'
|
|
197
197
|
};
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-inputs',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1649750818,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-inputs",
|
|
3
3
|
"description": "Kendo UI for Vue Input package",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.2.0-dev.202204120815",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
"vue": "^2.6.12 || ^3.0.2"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@progress/kendo-vue-buttons": "3.
|
|
42
|
-
"@progress/kendo-vue-common": "3.
|
|
43
|
-
"@progress/kendo-vue-labels": "3.
|
|
44
|
-
"@progress/kendo-vue-popup": "3.
|
|
41
|
+
"@progress/kendo-vue-buttons": "3.2.0-dev.202204120815",
|
|
42
|
+
"@progress/kendo-vue-common": "3.2.0-dev.202204120815",
|
|
43
|
+
"@progress/kendo-vue-labels": "3.2.0-dev.202204120815",
|
|
44
|
+
"@progress/kendo-vue-popup": "3.2.0-dev.202204120815"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@progress/kendo-data-query": "^1.5.5",
|
|
48
48
|
"@progress/kendo-date-math": "^1.5.4",
|
|
49
49
|
"@progress/kendo-drawing": "^1.8.0",
|
|
50
50
|
"@progress/kendo-licensing": "^1.1.0",
|
|
51
|
-
"@progress/kendo-vue-buttons": "3.
|
|
52
|
-
"@progress/kendo-vue-form": "3.
|
|
53
|
-
"@progress/kendo-vue-intl": "3.
|
|
54
|
-
"@progress/kendo-vue-labels": "3.
|
|
55
|
-
"@progress/kendo-vue-tooltip": "3.
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.2.0-dev.202204120815",
|
|
52
|
+
"@progress/kendo-vue-form": "3.2.0-dev.202204120815",
|
|
53
|
+
"@progress/kendo-vue-intl": "3.2.0-dev.202204120815",
|
|
54
|
+
"@progress/kendo-vue-labels": "3.2.0-dev.202204120815",
|
|
55
|
+
"@progress/kendo-vue-tooltip": "3.2.0-dev.202204120815",
|
|
56
56
|
"cldr-core": "^34.0.0",
|
|
57
57
|
"cldr-dates-full": "^34.0.0",
|
|
58
58
|
"cldr-numbers-full": "^34.0.0"
|