@progress/kendo-vue-inputs 3.0.2 → 3.0.3-dev.202201280639
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/numerictextbox/NumericTextBox.js +6 -2
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/radiobutton/RadioGroup.js +2 -1
- package/dist/es/slider/Slider.js +6 -2
- package/dist/npm/numerictextbox/NumericTextBox.js +6 -2
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/radiobutton/RadioGroup.js +2 -1
- package/dist/npm/slider/Slider.js +6 -2
- package/package.json +10 -10
|
@@ -528,13 +528,15 @@ var NumericTextBoxVue2 = {
|
|
|
528
528
|
}
|
|
529
529
|
}, [// @ts-ignore
|
|
530
530
|
h(KButton, {
|
|
531
|
-
|
|
531
|
+
type: "button",
|
|
532
532
|
attrs: this.v3 ? undefined : {
|
|
533
|
+
type: "button",
|
|
533
534
|
tabIndex: -1,
|
|
534
535
|
icon: 'arrow-n',
|
|
535
536
|
"aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
|
|
536
537
|
title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue])
|
|
537
538
|
},
|
|
539
|
+
tabIndex: -1,
|
|
538
540
|
icon: 'arrow-n',
|
|
539
541
|
"class": "k-spinner-increase",
|
|
540
542
|
"aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
|
|
@@ -545,13 +547,15 @@ var NumericTextBoxVue2 = {
|
|
|
545
547
|
}
|
|
546
548
|
}), // @ts-ignore
|
|
547
549
|
h(KButton, {
|
|
548
|
-
|
|
550
|
+
type: "button",
|
|
549
551
|
attrs: this.v3 ? undefined : {
|
|
552
|
+
type: "button",
|
|
550
553
|
tabIndex: -1,
|
|
551
554
|
icon: 'arrow-s',
|
|
552
555
|
"aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
|
|
553
556
|
title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue])
|
|
554
557
|
},
|
|
558
|
+
tabIndex: -1,
|
|
555
559
|
"class": "k-spinner-decrease",
|
|
556
560
|
icon: 'arrow-s',
|
|
557
561
|
"aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
|
|
@@ -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: 1643351335,
|
|
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/es/slider/Slider.js
CHANGED
|
@@ -175,13 +175,15 @@ var SliderVue2 = {
|
|
|
175
175
|
"class": classNames('k-slider-wrap')
|
|
176
176
|
}, [this.$props.buttons && // @ts-ignore
|
|
177
177
|
h(Button, {
|
|
178
|
-
|
|
178
|
+
type: "button",
|
|
179
179
|
attrs: this.v3 ? undefined : {
|
|
180
|
+
type: "button",
|
|
180
181
|
tabIndex: -1,
|
|
181
182
|
icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
|
|
182
183
|
rounded: 'full',
|
|
183
184
|
title: lS.toLanguageString(sliderDecreaseValue, messages[sliderDecreaseValue])
|
|
184
185
|
},
|
|
186
|
+
tabIndex: -1,
|
|
185
187
|
icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
|
|
186
188
|
style: {
|
|
187
189
|
position: 'relative'
|
|
@@ -260,13 +262,15 @@ var SliderVue2 = {
|
|
|
260
262
|
} : (_a = {}, _a[_this.currentDir === 'rtl' ? 'right' : 'left'] = percentValue + '%', _a.zIndex = 1, _a)
|
|
261
263
|
})])])]), this.$props.buttons && // @ts-ignore
|
|
262
264
|
h(Button, {
|
|
263
|
-
|
|
265
|
+
type: "button",
|
|
264
266
|
attrs: this.v3 ? undefined : {
|
|
267
|
+
type: "button",
|
|
265
268
|
tabIndex: -1,
|
|
266
269
|
icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
|
|
267
270
|
rounded: 'full',
|
|
268
271
|
title: lS.toLanguageString(sliderIncreaseValue, messages[sliderIncreaseValue])
|
|
269
272
|
},
|
|
273
|
+
tabIndex: -1,
|
|
270
274
|
icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
|
|
271
275
|
rounded: 'full',
|
|
272
276
|
style: {
|
|
@@ -543,13 +543,15 @@ var NumericTextBoxVue2 = {
|
|
|
543
543
|
}
|
|
544
544
|
}, [// @ts-ignore
|
|
545
545
|
h(kendo_vue_buttons_1.Button, {
|
|
546
|
-
|
|
546
|
+
type: "button",
|
|
547
547
|
attrs: this.v3 ? undefined : {
|
|
548
|
+
type: "button",
|
|
548
549
|
tabIndex: -1,
|
|
549
550
|
icon: 'arrow-n',
|
|
550
551
|
"aria-label": localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue]),
|
|
551
552
|
title: localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue])
|
|
552
553
|
},
|
|
554
|
+
tabIndex: -1,
|
|
553
555
|
icon: 'arrow-n',
|
|
554
556
|
"class": "k-spinner-increase",
|
|
555
557
|
"aria-label": localizationService.toLanguageString(messages_1.numericIncreaseValue, messages_1.messages[messages_1.numericIncreaseValue]),
|
|
@@ -560,13 +562,15 @@ var NumericTextBoxVue2 = {
|
|
|
560
562
|
}
|
|
561
563
|
}), // @ts-ignore
|
|
562
564
|
h(kendo_vue_buttons_1.Button, {
|
|
563
|
-
|
|
565
|
+
type: "button",
|
|
564
566
|
attrs: this.v3 ? undefined : {
|
|
567
|
+
type: "button",
|
|
565
568
|
tabIndex: -1,
|
|
566
569
|
icon: 'arrow-s',
|
|
567
570
|
"aria-label": localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue]),
|
|
568
571
|
title: localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue])
|
|
569
572
|
},
|
|
573
|
+
tabIndex: -1,
|
|
570
574
|
"class": "k-spinner-decrease",
|
|
571
575
|
icon: 'arrow-s',
|
|
572
576
|
"aria-label": localizationService.toLanguageString(messages_1.numericDecreaseValue, messages_1.messages[messages_1.numericDecreaseValue]),
|
|
@@ -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: 1643351335,
|
|
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
|
};
|
|
@@ -190,13 +190,15 @@ var SliderVue2 = {
|
|
|
190
190
|
"class": kendo_vue_common_2.classNames('k-slider-wrap')
|
|
191
191
|
}, [this.$props.buttons && // @ts-ignore
|
|
192
192
|
h(kendo_vue_buttons_1.Button, {
|
|
193
|
-
|
|
193
|
+
type: "button",
|
|
194
194
|
attrs: this.v3 ? undefined : {
|
|
195
|
+
type: "button",
|
|
195
196
|
tabIndex: -1,
|
|
196
197
|
icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
|
|
197
198
|
rounded: 'full',
|
|
198
199
|
title: lS.toLanguageString(messages_1.sliderDecreaseValue, messages_1.messages[messages_1.sliderDecreaseValue])
|
|
199
200
|
},
|
|
201
|
+
tabIndex: -1,
|
|
200
202
|
icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
|
|
201
203
|
style: {
|
|
202
204
|
position: 'relative'
|
|
@@ -275,13 +277,15 @@ var SliderVue2 = {
|
|
|
275
277
|
} : (_a = {}, _a[_this.currentDir === 'rtl' ? 'right' : 'left'] = percentValue + '%', _a.zIndex = 1, _a)
|
|
276
278
|
})])])]), this.$props.buttons && // @ts-ignore
|
|
277
279
|
h(kendo_vue_buttons_1.Button, {
|
|
278
|
-
|
|
280
|
+
type: "button",
|
|
279
281
|
attrs: this.v3 ? undefined : {
|
|
282
|
+
type: "button",
|
|
280
283
|
tabIndex: -1,
|
|
281
284
|
icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
|
|
282
285
|
rounded: 'full',
|
|
283
286
|
title: lS.toLanguageString(messages_1.sliderIncreaseValue, messages_1.messages[messages_1.sliderIncreaseValue])
|
|
284
287
|
},
|
|
288
|
+
tabIndex: -1,
|
|
285
289
|
icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
|
|
286
290
|
rounded: 'full',
|
|
287
291
|
style: {
|
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.0.
|
|
4
|
+
"version": "3.0.3-dev.202201280639",
|
|
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.0.
|
|
42
|
-
"@progress/kendo-vue-common": "3.0.
|
|
43
|
-
"@progress/kendo-vue-labels": "3.0.
|
|
44
|
-
"@progress/kendo-vue-popup": "3.0.
|
|
41
|
+
"@progress/kendo-vue-buttons": "3.0.3-dev.202201280639",
|
|
42
|
+
"@progress/kendo-vue-common": "3.0.3-dev.202201280639",
|
|
43
|
+
"@progress/kendo-vue-labels": "3.0.3-dev.202201280639",
|
|
44
|
+
"@progress/kendo-vue-popup": "3.0.3-dev.202201280639"
|
|
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.0.
|
|
52
|
-
"@progress/kendo-vue-form": "3.0.
|
|
53
|
-
"@progress/kendo-vue-intl": "3.0.
|
|
54
|
-
"@progress/kendo-vue-labels": "3.0.
|
|
55
|
-
"@progress/kendo-vue-tooltip": "3.0.
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.0.3-dev.202201280639",
|
|
52
|
+
"@progress/kendo-vue-form": "3.0.3-dev.202201280639",
|
|
53
|
+
"@progress/kendo-vue-intl": "3.0.3-dev.202201280639",
|
|
54
|
+
"@progress/kendo-vue-labels": "3.0.3-dev.202201280639",
|
|
55
|
+
"@progress/kendo-vue-tooltip": "3.0.3-dev.202201280639",
|
|
56
56
|
"cldr-core": "^34.0.0",
|
|
57
57
|
"cldr-dates-full": "^34.0.0",
|
|
58
58
|
"cldr-numbers-full": "^34.0.0"
|