@progress/kendo-vue-inputs 3.9.4-dev.202304210655 → 3.9.4-dev.202304241333
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/package-metadata.js +1 -1
- package/dist/es/textarea/TextArea.js +14 -13
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/textarea/TextArea.js +14 -13
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/textarea/TextArea.js +14 -13
- package/package.json +13 -13
|
@@ -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: 1682342608,
|
|
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
|
};
|
|
@@ -276,18 +276,7 @@ var TextAreaVue2 = {
|
|
|
276
276
|
onFocus: this.handleFocus,
|
|
277
277
|
onBlur: this.handleBlur
|
|
278
278
|
}));
|
|
279
|
-
|
|
280
|
-
"class": this.rootClassName,
|
|
281
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
282
|
-
attrs: this.v3 ? undefined : {
|
|
283
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
284
|
-
},
|
|
285
|
-
style: this.$attrs.style
|
|
286
|
-
}, [this.$props.inputPrefix && h("span", {
|
|
287
|
-
"class": this.prefixRenderClass
|
|
288
|
-
}, [inputPrefix]), h("span", {
|
|
289
|
-
"class": "k-hstack k-flex"
|
|
290
|
-
}, [iconName && h("span", {
|
|
279
|
+
var renderWithIcons = [iconName && h("span", {
|
|
291
280
|
"class": "k-flex-wrap"
|
|
292
281
|
}, [h(Icon, {
|
|
293
282
|
name: iconName,
|
|
@@ -330,7 +319,19 @@ var TextAreaVue2 = {
|
|
|
330
319
|
attrs: this.v3 ? undefined : {
|
|
331
320
|
name: 'x'
|
|
332
321
|
}
|
|
333
|
-
})])])]
|
|
322
|
+
})])])];
|
|
323
|
+
return h("span", {
|
|
324
|
+
"class": this.rootClassName,
|
|
325
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
326
|
+
attrs: this.v3 ? undefined : {
|
|
327
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
328
|
+
},
|
|
329
|
+
style: this.$attrs.style
|
|
330
|
+
}, [this.$props.inputPrefix && h("span", {
|
|
331
|
+
"class": this.prefixRenderClass
|
|
332
|
+
}, [inputPrefix]), iconName || showValidationIcon || showLoadingIcon || showClearButton ? h("span", {
|
|
333
|
+
"class": "k-hstack k-flex"
|
|
334
|
+
}, [renderWithIcons]) : renderWithIcons, this.$props.inputSuffix && h("span", {
|
|
334
335
|
"class": this.suffixRenderClass
|
|
335
336
|
}, [inputSuffix])]);
|
|
336
337
|
},
|
|
@@ -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: 1682342608,
|
|
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
|
};
|
|
@@ -276,18 +276,7 @@ var TextAreaVue2 = {
|
|
|
276
276
|
onFocus: this.handleFocus,
|
|
277
277
|
onBlur: this.handleBlur
|
|
278
278
|
}));
|
|
279
|
-
|
|
280
|
-
"class": this.rootClassName,
|
|
281
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
282
|
-
attrs: this.v3 ? undefined : {
|
|
283
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
284
|
-
},
|
|
285
|
-
style: this.$attrs.style
|
|
286
|
-
}, [this.$props.inputPrefix && h("span", {
|
|
287
|
-
"class": this.prefixRenderClass
|
|
288
|
-
}, [inputPrefix]), h("span", {
|
|
289
|
-
"class": "k-hstack k-flex"
|
|
290
|
-
}, [iconName && h("span", {
|
|
279
|
+
var renderWithIcons = [iconName && h("span", {
|
|
291
280
|
"class": "k-flex-wrap"
|
|
292
281
|
}, [h(Icon, {
|
|
293
282
|
name: iconName,
|
|
@@ -330,7 +319,19 @@ var TextAreaVue2 = {
|
|
|
330
319
|
attrs: this.v3 ? undefined : {
|
|
331
320
|
name: 'x'
|
|
332
321
|
}
|
|
333
|
-
})])])]
|
|
322
|
+
})])])];
|
|
323
|
+
return h("span", {
|
|
324
|
+
"class": this.rootClassName,
|
|
325
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
326
|
+
attrs: this.v3 ? undefined : {
|
|
327
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
328
|
+
},
|
|
329
|
+
style: this.$attrs.style
|
|
330
|
+
}, [this.$props.inputPrefix && h("span", {
|
|
331
|
+
"class": this.prefixRenderClass
|
|
332
|
+
}, [inputPrefix]), iconName || showValidationIcon || showLoadingIcon || showClearButton ? h("span", {
|
|
333
|
+
"class": "k-hstack k-flex"
|
|
334
|
+
}, [renderWithIcons]) : renderWithIcons, this.$props.inputSuffix && h("span", {
|
|
334
335
|
"class": this.suffixRenderClass
|
|
335
336
|
}, [inputSuffix])]);
|
|
336
337
|
},
|
|
@@ -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: 1682342608,
|
|
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
|
};
|
|
@@ -280,18 +280,7 @@ var TextAreaVue2 = {
|
|
|
280
280
|
onFocus: this.handleFocus,
|
|
281
281
|
onBlur: this.handleBlur
|
|
282
282
|
}));
|
|
283
|
-
|
|
284
|
-
"class": this.rootClassName,
|
|
285
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
286
|
-
attrs: this.v3 ? undefined : {
|
|
287
|
-
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
288
|
-
},
|
|
289
|
-
style: this.$attrs.style
|
|
290
|
-
}, [this.$props.inputPrefix && h("span", {
|
|
291
|
-
"class": this.prefixRenderClass
|
|
292
|
-
}, [inputPrefix]), h("span", {
|
|
293
|
-
"class": "k-hstack k-flex"
|
|
294
|
-
}, [iconName && h("span", {
|
|
283
|
+
var renderWithIcons = [iconName && h("span", {
|
|
295
284
|
"class": "k-flex-wrap"
|
|
296
285
|
}, [h(kendo_vue_common_1.Icon, {
|
|
297
286
|
name: iconName,
|
|
@@ -334,7 +323,19 @@ var TextAreaVue2 = {
|
|
|
334
323
|
attrs: this.v3 ? undefined : {
|
|
335
324
|
name: 'x'
|
|
336
325
|
}
|
|
337
|
-
})])])]
|
|
326
|
+
})])])];
|
|
327
|
+
return h("span", {
|
|
328
|
+
"class": this.rootClassName,
|
|
329
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : '',
|
|
330
|
+
attrs: this.v3 ? undefined : {
|
|
331
|
+
dir: this.currentDir === 'rtl' ? this.currentDir : ''
|
|
332
|
+
},
|
|
333
|
+
style: this.$attrs.style
|
|
334
|
+
}, [this.$props.inputPrefix && h("span", {
|
|
335
|
+
"class": this.prefixRenderClass
|
|
336
|
+
}, [inputPrefix]), iconName || showValidationIcon || showLoadingIcon || showClearButton ? h("span", {
|
|
337
|
+
"class": "k-hstack k-flex"
|
|
338
|
+
}, [renderWithIcons]) : renderWithIcons, this.$props.inputSuffix && h("span", {
|
|
338
339
|
"class": this.suffixRenderClass
|
|
339
340
|
}, [inputSuffix])]);
|
|
340
341
|
},
|
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.9.4-dev.
|
|
4
|
+
"version": "3.9.4-dev.202304241333",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@progress/kendo-inputs-common": "^3.1.0",
|
|
49
|
-
"@progress/kendo-vue-buttons": "3.9.4-dev.
|
|
50
|
-
"@progress/kendo-vue-common": "3.9.4-dev.
|
|
51
|
-
"@progress/kendo-vue-dialogs": "3.9.4-dev.
|
|
52
|
-
"@progress/kendo-vue-labels": "3.9.4-dev.
|
|
53
|
-
"@progress/kendo-vue-popup": "3.9.4-dev.
|
|
49
|
+
"@progress/kendo-vue-buttons": "3.9.4-dev.202304241333",
|
|
50
|
+
"@progress/kendo-vue-common": "3.9.4-dev.202304241333",
|
|
51
|
+
"@progress/kendo-vue-dialogs": "3.9.4-dev.202304241333",
|
|
52
|
+
"@progress/kendo-vue-labels": "3.9.4-dev.202304241333",
|
|
53
|
+
"@progress/kendo-vue-popup": "3.9.4-dev.202304241333"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@progress/kendo-data-query": "^1.5.5",
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
"@progress/kendo-file-saver": "^1.1.1",
|
|
60
60
|
"@progress/kendo-licensing": "^1.3.0",
|
|
61
61
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
62
|
-
"@progress/kendo-vue-buttons": "3.9.4-dev.
|
|
63
|
-
"@progress/kendo-vue-dropdowns": "3.9.4-dev.
|
|
64
|
-
"@progress/kendo-vue-form": "3.9.4-dev.
|
|
65
|
-
"@progress/kendo-vue-intl": "3.9.4-dev.
|
|
66
|
-
"@progress/kendo-vue-labels": "3.9.4-dev.
|
|
67
|
-
"@progress/kendo-vue-tooltip": "3.9.4-dev.
|
|
68
|
-
"@progress/kendo-vue-upload": "3.9.4-dev.
|
|
62
|
+
"@progress/kendo-vue-buttons": "3.9.4-dev.202304241333",
|
|
63
|
+
"@progress/kendo-vue-dropdowns": "3.9.4-dev.202304241333",
|
|
64
|
+
"@progress/kendo-vue-form": "3.9.4-dev.202304241333",
|
|
65
|
+
"@progress/kendo-vue-intl": "3.9.4-dev.202304241333",
|
|
66
|
+
"@progress/kendo-vue-labels": "3.9.4-dev.202304241333",
|
|
67
|
+
"@progress/kendo-vue-tooltip": "3.9.4-dev.202304241333",
|
|
68
|
+
"@progress/kendo-vue-upload": "3.9.4-dev.202304241333",
|
|
69
69
|
"cldr-core": "^41.0.0",
|
|
70
70
|
"cldr-dates-full": "^41.0.0",
|
|
71
71
|
"cldr-numbers-full": "^41.0.0"
|