@progress/kendo-vue-inputs 3.1.3 → 3.1.5-dev.202204110939
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/NOTICE.txt +49 -6
- package/dist/cdn/js/kendo-vue-inputs.js +1 -1
- package/dist/es/colors/ColorPicker.js +3 -1
- package/dist/es/input/Input.js +1 -1
- package/dist/es/maskedtextbox/MaskedTextBox.js +2 -2
- package/dist/es/numerictextbox/NumericTextBox.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/textarea/TextArea.js +1 -1
- package/dist/npm/colors/ColorPicker.js +3 -1
- package/dist/npm/input/Input.js +1 -1
- package/dist/npm/maskedtextbox/MaskedTextBox.js +2 -2
- package/dist/npm/numerictextbox/NumericTextBox.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/textarea/TextArea.js +1 -1
- package/package.json +10 -10
|
@@ -123,7 +123,7 @@ var ColorPickerVue2 = {
|
|
|
123
123
|
return _a = {
|
|
124
124
|
'k-picker': true,
|
|
125
125
|
'k-colorpicker': true
|
|
126
|
-
}, _a["k-picker-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-picker-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
126
|
+
}, _a["k-picker-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-picker-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !this.valid, _a['k-disabled'] = this.disabled, _a['k-focus'] = this.focused, _a;
|
|
127
127
|
}
|
|
128
128
|
},
|
|
129
129
|
created: function created() {
|
|
@@ -208,6 +208,7 @@ var ColorPickerVue2 = {
|
|
|
208
208
|
type: "button",
|
|
209
209
|
attrs: this.v3 ? undefined : {
|
|
210
210
|
type: "button",
|
|
211
|
+
rounded: null,
|
|
211
212
|
icon: 'arrow-s'
|
|
212
213
|
},
|
|
213
214
|
ref: this.v3 ? function (el) {
|
|
@@ -217,6 +218,7 @@ var ColorPickerVue2 = {
|
|
|
217
218
|
on: this.v3 ? undefined : {
|
|
218
219
|
"click": this.onClickHandler
|
|
219
220
|
},
|
|
221
|
+
rounded: null,
|
|
220
222
|
"class": "k-input-button",
|
|
221
223
|
icon: 'arrow-s'
|
|
222
224
|
}), // @ts-ignore function children
|
package/dist/es/input/Input.js
CHANGED
|
@@ -331,7 +331,7 @@ var InputVue2 = {
|
|
|
331
331
|
return _a = {
|
|
332
332
|
'k-textbox': true,
|
|
333
333
|
'k-input': true
|
|
334
|
-
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
334
|
+
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a;
|
|
335
335
|
}
|
|
336
336
|
},
|
|
337
337
|
computed: {
|
|
@@ -356,7 +356,7 @@ var MaskedTextBoxVue2 = {
|
|
|
356
356
|
attrs: this.v3 ? undefined : {
|
|
357
357
|
dir: this.$props.dir
|
|
358
358
|
},
|
|
359
|
-
"class": classNames('k-maskedtextbox k-input', (_a = {}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
359
|
+
"class": classNames('k-maskedtextbox k-input', (_a = {}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a)),
|
|
360
360
|
style: !this.$props.label ? {
|
|
361
361
|
width: this.$props.width
|
|
362
362
|
} : undefined
|
|
@@ -384,7 +384,7 @@ var MaskedTextBoxVue2 = {
|
|
|
384
384
|
autoCorrect: "off",
|
|
385
385
|
autoCapitalize: "off",
|
|
386
386
|
spellCheck: false,
|
|
387
|
-
"class": "k-input
|
|
387
|
+
"class": "k-input-inner",
|
|
388
388
|
value: this.v3 ? newValue : null,
|
|
389
389
|
domProps: this.v3 ? undefined : {
|
|
390
390
|
"value": newValue
|
|
@@ -195,7 +195,7 @@ var NumericTextBoxVue2 = {
|
|
|
195
195
|
return _a = {
|
|
196
196
|
'k-input': true,
|
|
197
197
|
'k-numerictextbox': true
|
|
198
|
-
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
198
|
+
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = required, _a['k-disabled'] = disabled, _a;
|
|
199
199
|
}
|
|
200
200
|
},
|
|
201
201
|
methods: {
|
|
@@ -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: 1649669454,
|
|
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
|
};
|
|
@@ -103,7 +103,7 @@ var TextAreaVue2 = {
|
|
|
103
103
|
return _a = {
|
|
104
104
|
'k-input': true,
|
|
105
105
|
'k-textarea': true
|
|
106
|
-
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-disabled'] = this.$props.disabled, _a['k-
|
|
106
|
+
}, _a["k-input-" + (kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-disabled'] = this.$props.disabled, _a['k-invalid'] = invalid, _a['k-required'] = required, _a;
|
|
107
107
|
},
|
|
108
108
|
computedValue: function computedValue() {
|
|
109
109
|
return this.$props.value !== undefined ? this.$props.value : this.$props.modelValue !== undefined ? this.$props.modelValue : this.currentValue;
|
|
@@ -135,7 +135,7 @@ var ColorPickerVue2 = {
|
|
|
135
135
|
return _a = {
|
|
136
136
|
'k-picker': true,
|
|
137
137
|
'k-colorpicker': true
|
|
138
|
-
}, _a["k-picker-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-picker-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
138
|
+
}, _a["k-picker-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-picker-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !this.valid, _a['k-disabled'] = this.disabled, _a['k-focus'] = this.focused, _a;
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
141
|
created: function created() {
|
|
@@ -220,6 +220,7 @@ var ColorPickerVue2 = {
|
|
|
220
220
|
type: "button",
|
|
221
221
|
attrs: this.v3 ? undefined : {
|
|
222
222
|
type: "button",
|
|
223
|
+
rounded: null,
|
|
223
224
|
icon: 'arrow-s'
|
|
224
225
|
},
|
|
225
226
|
ref: this.v3 ? function (el) {
|
|
@@ -229,6 +230,7 @@ var ColorPickerVue2 = {
|
|
|
229
230
|
on: this.v3 ? undefined : {
|
|
230
231
|
"click": this.onClickHandler
|
|
231
232
|
},
|
|
233
|
+
rounded: null,
|
|
232
234
|
"class": "k-input-button",
|
|
233
235
|
icon: 'arrow-s'
|
|
234
236
|
}), // @ts-ignore function children
|
package/dist/npm/input/Input.js
CHANGED
|
@@ -342,7 +342,7 @@ var InputVue2 = {
|
|
|
342
342
|
return _a = {
|
|
343
343
|
'k-textbox': true,
|
|
344
344
|
'k-input': true
|
|
345
|
-
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
345
|
+
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a;
|
|
346
346
|
}
|
|
347
347
|
},
|
|
348
348
|
computed: {
|
|
@@ -368,7 +368,7 @@ var MaskedTextBoxVue2 = {
|
|
|
368
368
|
attrs: this.v3 ? undefined : {
|
|
369
369
|
dir: this.$props.dir
|
|
370
370
|
},
|
|
371
|
-
"class": kendo_vue_common_1.classNames('k-maskedtextbox k-input', (_a = {}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
371
|
+
"class": kendo_vue_common_1.classNames('k-maskedtextbox k-input', (_a = {}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = this.required, _a['k-disabled'] = this.$props.disabled, _a)),
|
|
372
372
|
style: !this.$props.label ? {
|
|
373
373
|
width: this.$props.width
|
|
374
374
|
} : undefined
|
|
@@ -396,7 +396,7 @@ var MaskedTextBoxVue2 = {
|
|
|
396
396
|
autoCorrect: "off",
|
|
397
397
|
autoCapitalize: "off",
|
|
398
398
|
spellCheck: false,
|
|
399
|
-
"class": "k-input
|
|
399
|
+
"class": "k-input-inner",
|
|
400
400
|
value: this.v3 ? newValue : null,
|
|
401
401
|
domProps: this.v3 ? undefined : {
|
|
402
402
|
"value": newValue
|
|
@@ -210,7 +210,7 @@ var NumericTextBoxVue2 = {
|
|
|
210
210
|
return _a = {
|
|
211
211
|
'k-input': true,
|
|
212
212
|
'k-numerictextbox': true
|
|
213
|
-
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-
|
|
213
|
+
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-invalid'] = !isValid, _a['k-required'] = required, _a['k-disabled'] = disabled, _a;
|
|
214
214
|
}
|
|
215
215
|
},
|
|
216
216
|
methods: {
|
|
@@ -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: 1649669454,
|
|
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
|
};
|
|
@@ -112,7 +112,7 @@ var TextAreaVue2 = {
|
|
|
112
112
|
return _a = {
|
|
113
113
|
'k-input': true,
|
|
114
114
|
'k-textarea': true
|
|
115
|
-
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-disabled'] = this.$props.disabled, _a['k-
|
|
115
|
+
}, _a["k-input-" + (kendo_vue_common_1.kendoThemeMaps.sizeMap[size] || size)] = size, _a["k-input-" + fillMode] = fillMode, _a["k-rounded-" + (kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded] || rounded)] = rounded, _a['k-disabled'] = this.$props.disabled, _a['k-invalid'] = invalid, _a['k-required'] = required, _a;
|
|
116
116
|
},
|
|
117
117
|
computedValue: function computedValue() {
|
|
118
118
|
return this.$props.value !== undefined ? this.$props.value : this.$props.modelValue !== undefined ? this.$props.modelValue : this.currentValue;
|
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.1.
|
|
4
|
+
"version": "3.1.5-dev.202204110939",
|
|
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.1.
|
|
42
|
-
"@progress/kendo-vue-common": "3.1.
|
|
43
|
-
"@progress/kendo-vue-labels": "3.1.
|
|
44
|
-
"@progress/kendo-vue-popup": "3.1.
|
|
41
|
+
"@progress/kendo-vue-buttons": "3.1.5-dev.202204110939",
|
|
42
|
+
"@progress/kendo-vue-common": "3.1.5-dev.202204110939",
|
|
43
|
+
"@progress/kendo-vue-labels": "3.1.5-dev.202204110939",
|
|
44
|
+
"@progress/kendo-vue-popup": "3.1.5-dev.202204110939"
|
|
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.1.
|
|
52
|
-
"@progress/kendo-vue-form": "3.1.
|
|
53
|
-
"@progress/kendo-vue-intl": "3.1.
|
|
54
|
-
"@progress/kendo-vue-labels": "3.1.
|
|
55
|
-
"@progress/kendo-vue-tooltip": "3.1.
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.1.5-dev.202204110939",
|
|
52
|
+
"@progress/kendo-vue-form": "3.1.5-dev.202204110939",
|
|
53
|
+
"@progress/kendo-vue-intl": "3.1.5-dev.202204110939",
|
|
54
|
+
"@progress/kendo-vue-labels": "3.1.5-dev.202204110939",
|
|
55
|
+
"@progress/kendo-vue-tooltip": "3.1.5-dev.202204110939",
|
|
56
56
|
"cldr-core": "^34.0.0",
|
|
57
57
|
"cldr-dates-full": "^34.0.0",
|
|
58
58
|
"cldr-numbers-full": "^34.0.0"
|