@progress/kendo-vue-inputs 3.5.3-dev.202209051408 → 3.5.4-dev.202209091220

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.
@@ -206,7 +206,7 @@ var CheckboxVue2 = {
206
206
  });
207
207
  var inputClasses = classNames((_a = {
208
208
  'k-checkbox': true
209
- }, _a["k-checkbox-".concat(kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
209
+ }, _a["k-checkbox-".concat(kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-disabled'] = disabled, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
210
210
 
211
211
  var checkboxInput = function checkboxInput() {
212
212
  return h("input", {
@@ -105,12 +105,12 @@ var ColorInputVue2 = {
105
105
  tabIndex: this.tabIndex,
106
106
  type: "button",
107
107
  fillMode: 'flat',
108
- icon: 'arrows-kpi'
108
+ icon: 'caret-alt-expand'
109
109
  },
110
110
  tabIndex: this.tabIndex,
111
111
  type: "button",
112
112
  fillMode: 'flat',
113
- icon: 'arrows-kpi',
113
+ icon: 'caret-alt-expand',
114
114
  "class": "k-colorgradient-toggle-mode k-icon-button",
115
115
  onClick: this.onToggleModeChange,
116
116
  on: this.v3 ? undefined : {
@@ -313,7 +313,7 @@ var ColorPickerVue2 = {
313
313
  type: "button",
314
314
  tabindex: -1,
315
315
  rounded: null,
316
- icon: 'arrow-s'
316
+ icon: 'caret-alt-down'
317
317
  },
318
318
  tabindex: -1,
319
319
  ref: this.v3 ? function (el) {
@@ -325,7 +325,7 @@ var ColorPickerVue2 = {
325
325
  },
326
326
  rounded: null,
327
327
  "class": "k-input-button",
328
- icon: 'arrow-s'
328
+ icon: 'caret-alt-down'
329
329
  }), // @ts-ignore function children
330
330
  h(Picker, {
331
331
  dir: dir,
@@ -382,10 +382,10 @@ var FlatColorPickerVue2 = {
382
382
  onClick: this.handleResetColor
383
383
  }, this.v3 ? function () {
384
384
  return [h("span", {
385
- "class": "k-icon k-i-reset-color"
385
+ "class": "k-icon k-i-droplet-slash"
386
386
  })];
387
387
  } : [h("span", {
388
- "class": "k-icon k-i-reset-color"
388
+ "class": "k-icon k-i-droplet-slash"
389
389
  })]), this.$props.showPreview && h("div", {
390
390
  "class": "k-coloreditor-preview k-vstack"
391
391
  }, [h("span", {
@@ -555,7 +555,6 @@ var NumericTextBoxVue2 = {
555
555
  autocomplete: "off",
556
556
  autocorrect: "off",
557
557
  id: inputId,
558
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
559
558
  name: this.$props.name
560
559
  },
561
560
  accesskey: this.$props.accessKey,
@@ -575,7 +574,6 @@ var NumericTextBoxVue2 = {
575
574
  domProps: this.v3 ? undefined : {
576
575
  "value": this.looseValue
577
576
  },
578
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
579
577
  name: this.$props.name,
580
578
  onWheel: this.wheel,
581
579
  on: this.v3 ? undefined : {
@@ -620,13 +618,15 @@ var NumericTextBoxVue2 = {
620
618
  attrs: this.v3 ? undefined : {
621
619
  type: "button",
622
620
  tabIndex: -1,
623
- icon: 'arrow-n',
621
+ icon: 'caret-alt-up',
622
+ rounded: null,
624
623
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
625
624
  title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue])
626
625
  },
627
626
  tabIndex: -1,
628
- icon: 'arrow-n',
627
+ icon: 'caret-alt-up',
629
628
  "class": "k-spinner-increase",
629
+ rounded: null,
630
630
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
631
631
  title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
632
632
  onClick: this.increase,
@@ -639,13 +639,15 @@ var NumericTextBoxVue2 = {
639
639
  attrs: this.v3 ? undefined : {
640
640
  type: "button",
641
641
  tabIndex: -1,
642
- icon: 'arrow-s',
642
+ icon: 'caret-alt-down',
643
+ rounded: null,
643
644
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
644
645
  title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue])
645
646
  },
646
647
  tabIndex: -1,
647
648
  "class": "k-spinner-decrease",
648
- icon: 'arrow-s',
649
+ icon: 'caret-alt-down',
650
+ rounded: null,
649
651
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
650
652
  title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
651
653
  onClick: this.decrease,
@@ -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: 1662386211,
8
+ publishDate: 1662725363,
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
  };
@@ -191,12 +191,12 @@ var SliderVue2 = {
191
191
  attrs: this.v3 ? undefined : {
192
192
  type: "button",
193
193
  tabIndex: -1,
194
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
194
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
195
195
  rounded: 'full',
196
196
  title: lS.toLanguageString(sliderDecreaseValue, messages[sliderDecreaseValue])
197
197
  },
198
198
  tabIndex: -1,
199
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
199
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
200
200
  style: {
201
201
  position: 'relative'
202
202
  },
@@ -278,12 +278,12 @@ var SliderVue2 = {
278
278
  attrs: this.v3 ? undefined : {
279
279
  type: "button",
280
280
  tabIndex: -1,
281
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
281
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
282
282
  rounded: 'full',
283
283
  title: lS.toLanguageString(sliderIncreaseValue, messages[sliderIncreaseValue])
284
284
  },
285
285
  tabIndex: -1,
286
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
286
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
287
287
  rounded: 'full',
288
288
  style: {
289
289
  position: 'relative'
@@ -235,11 +235,11 @@ var SwitchVue2 = {
235
235
  "class": 'k-switch-label-on'
236
236
  }, [onLabel]), h("span", {
237
237
  "class": 'k-switch-label-off'
238
- }, [offLabel]), h("span", {
238
+ }, [offLabel])]), h("span", {
239
239
  "class": 'k-switch-thumb-wrap'
240
240
  }, [h("span", {
241
241
  "class": this.switchThumbClass
242
- })])])]);
242
+ })])]);
243
243
  },
244
244
  methods: {
245
245
  focus: function focus() {
@@ -206,7 +206,7 @@ var CheckboxVue2 = {
206
206
  });
207
207
  var inputClasses = classNames((_a = {
208
208
  'k-checkbox': true
209
- }, _a["k-checkbox-".concat(kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
209
+ }, _a["k-checkbox-".concat(kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-disabled'] = disabled, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
210
210
 
211
211
  var checkboxInput = function checkboxInput() {
212
212
  return h("input", {
@@ -105,12 +105,12 @@ var ColorInputVue2 = {
105
105
  tabIndex: this.tabIndex,
106
106
  type: "button",
107
107
  fillMode: 'flat',
108
- icon: 'arrows-kpi'
108
+ icon: 'caret-alt-expand'
109
109
  },
110
110
  tabIndex: this.tabIndex,
111
111
  type: "button",
112
112
  fillMode: 'flat',
113
- icon: 'arrows-kpi',
113
+ icon: 'caret-alt-expand',
114
114
  "class": "k-colorgradient-toggle-mode k-icon-button",
115
115
  onClick: this.onToggleModeChange,
116
116
  on: this.v3 ? undefined : {
@@ -313,7 +313,7 @@ var ColorPickerVue2 = {
313
313
  type: "button",
314
314
  tabindex: -1,
315
315
  rounded: null,
316
- icon: 'arrow-s'
316
+ icon: 'caret-alt-down'
317
317
  },
318
318
  tabindex: -1,
319
319
  ref: this.v3 ? function (el) {
@@ -325,7 +325,7 @@ var ColorPickerVue2 = {
325
325
  },
326
326
  rounded: null,
327
327
  "class": "k-input-button",
328
- icon: 'arrow-s'
328
+ icon: 'caret-alt-down'
329
329
  }), // @ts-ignore function children
330
330
  h(Picker, {
331
331
  dir: dir,
@@ -382,10 +382,10 @@ var FlatColorPickerVue2 = {
382
382
  onClick: this.handleResetColor
383
383
  }, this.v3 ? function () {
384
384
  return [h("span", {
385
- "class": "k-icon k-i-reset-color"
385
+ "class": "k-icon k-i-droplet-slash"
386
386
  })];
387
387
  } : [h("span", {
388
- "class": "k-icon k-i-reset-color"
388
+ "class": "k-icon k-i-droplet-slash"
389
389
  })]), this.$props.showPreview && h("div", {
390
390
  "class": "k-coloreditor-preview k-vstack"
391
391
  }, [h("span", {
@@ -555,7 +555,6 @@ var NumericTextBoxVue2 = {
555
555
  autocomplete: "off",
556
556
  autocorrect: "off",
557
557
  id: inputId,
558
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
559
558
  name: this.$props.name
560
559
  },
561
560
  accesskey: this.$props.accessKey,
@@ -575,7 +574,6 @@ var NumericTextBoxVue2 = {
575
574
  domProps: this.v3 ? undefined : {
576
575
  "value": this.looseValue
577
576
  },
578
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
579
577
  name: this.$props.name,
580
578
  onWheel: this.wheel,
581
579
  on: this.v3 ? undefined : {
@@ -620,13 +618,15 @@ var NumericTextBoxVue2 = {
620
618
  attrs: this.v3 ? undefined : {
621
619
  type: "button",
622
620
  tabIndex: -1,
623
- icon: 'arrow-n',
621
+ icon: 'caret-alt-up',
622
+ rounded: null,
624
623
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
625
624
  title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue])
626
625
  },
627
626
  tabIndex: -1,
628
- icon: 'arrow-n',
627
+ icon: 'caret-alt-up',
629
628
  "class": "k-spinner-increase",
629
+ rounded: null,
630
630
  "aria-label": localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
631
631
  title: localizationService.toLanguageString(numericIncreaseValue, messages[numericIncreaseValue]),
632
632
  onClick: this.increase,
@@ -639,13 +639,15 @@ var NumericTextBoxVue2 = {
639
639
  attrs: this.v3 ? undefined : {
640
640
  type: "button",
641
641
  tabIndex: -1,
642
- icon: 'arrow-s',
642
+ icon: 'caret-alt-down',
643
+ rounded: null,
643
644
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
644
645
  title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue])
645
646
  },
646
647
  tabIndex: -1,
647
648
  "class": "k-spinner-decrease",
648
- icon: 'arrow-s',
649
+ icon: 'caret-alt-down',
650
+ rounded: null,
649
651
  "aria-label": localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
650
652
  title: localizationService.toLanguageString(numericDecreaseValue, messages[numericDecreaseValue]),
651
653
  onClick: this.decrease,
@@ -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: 1662386211,
8
+ publishDate: 1662725363,
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
  };
@@ -191,12 +191,12 @@ var SliderVue2 = {
191
191
  attrs: this.v3 ? undefined : {
192
192
  type: "button",
193
193
  tabIndex: -1,
194
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
194
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
195
195
  rounded: 'full',
196
196
  title: lS.toLanguageString(sliderDecreaseValue, messages[sliderDecreaseValue])
197
197
  },
198
198
  tabIndex: -1,
199
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
199
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
200
200
  style: {
201
201
  position: 'relative'
202
202
  },
@@ -278,12 +278,12 @@ var SliderVue2 = {
278
278
  attrs: this.v3 ? undefined : {
279
279
  type: "button",
280
280
  tabIndex: -1,
281
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
281
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
282
282
  rounded: 'full',
283
283
  title: lS.toLanguageString(sliderIncreaseValue, messages[sliderIncreaseValue])
284
284
  },
285
285
  tabIndex: -1,
286
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
286
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
287
287
  rounded: 'full',
288
288
  style: {
289
289
  position: 'relative'
@@ -235,11 +235,11 @@ var SwitchVue2 = {
235
235
  "class": 'k-switch-label-on'
236
236
  }, [onLabel]), h("span", {
237
237
  "class": 'k-switch-label-off'
238
- }, [offLabel]), h("span", {
238
+ }, [offLabel])]), h("span", {
239
239
  "class": 'k-switch-thumb-wrap'
240
240
  }, [h("span", {
241
241
  "class": this.switchThumbClass
242
- })])])]);
242
+ })])]);
243
243
  },
244
244
  methods: {
245
245
  focus: function focus() {
@@ -218,7 +218,7 @@ var CheckboxVue2 = {
218
218
  });
219
219
  var inputClasses = (0, kendo_vue_common_1.classNames)((_a = {
220
220
  'k-checkbox': true
221
- }, _a["k-checkbox-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
221
+ }, _a["k-checkbox-".concat(kendo_vue_common_1.kendoThemeMaps.sizeMap[size])] = size, _a["k-rounded-".concat(kendo_vue_common_1.kendoThemeMaps.roundedMap[rounded])] = rounded, _a['k-indeterminate'] = this.indeterminateProp, _a['k-disabled'] = disabled, _a['k-invalid k-invalid'] = !(this.isValid || validityStyles !== undefined || validityStyles === true), _a));
222
222
 
223
223
  var checkboxInput = function checkboxInput() {
224
224
  return h("input", {
@@ -120,12 +120,12 @@ var ColorInputVue2 = {
120
120
  tabIndex: this.tabIndex,
121
121
  type: "button",
122
122
  fillMode: 'flat',
123
- icon: 'arrows-kpi'
123
+ icon: 'caret-alt-expand'
124
124
  },
125
125
  tabIndex: this.tabIndex,
126
126
  type: "button",
127
127
  fillMode: 'flat',
128
- icon: 'arrows-kpi',
128
+ icon: 'caret-alt-expand',
129
129
  "class": "k-colorgradient-toggle-mode k-icon-button",
130
130
  onClick: this.onToggleModeChange,
131
131
  on: this.v3 ? undefined : {
@@ -326,7 +326,7 @@ var ColorPickerVue2 = {
326
326
  type: "button",
327
327
  tabindex: -1,
328
328
  rounded: null,
329
- icon: 'arrow-s'
329
+ icon: 'caret-alt-down'
330
330
  },
331
331
  tabindex: -1,
332
332
  ref: this.v3 ? function (el) {
@@ -338,7 +338,7 @@ var ColorPickerVue2 = {
338
338
  },
339
339
  rounded: null,
340
340
  "class": "k-input-button",
341
- icon: 'arrow-s'
341
+ icon: 'caret-alt-down'
342
342
  }), // @ts-ignore function children
343
343
  h(Picker_1.Picker, {
344
344
  dir: dir,
@@ -399,10 +399,10 @@ var FlatColorPickerVue2 = {
399
399
  onClick: this.handleResetColor
400
400
  }, this.v3 ? function () {
401
401
  return [h("span", {
402
- "class": "k-icon k-i-reset-color"
402
+ "class": "k-icon k-i-droplet-slash"
403
403
  })];
404
404
  } : [h("span", {
405
- "class": "k-icon k-i-reset-color"
405
+ "class": "k-icon k-i-droplet-slash"
406
406
  })]), this.$props.showPreview && h("div", {
407
407
  "class": "k-coloreditor-preview k-vstack"
408
408
  }, [h("span", {
@@ -570,7 +570,6 @@ var NumericTextBoxVue2 = {
570
570
  autocomplete: "off",
571
571
  autocorrect: "off",
572
572
  id: inputId,
573
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
574
573
  name: this.$props.name
575
574
  },
576
575
  accesskey: this.$props.accessKey,
@@ -590,7 +589,6 @@ var NumericTextBoxVue2 = {
590
589
  domProps: this.v3 ? undefined : {
591
590
  "value": this.looseValue
592
591
  },
593
- "aria-valuenow": this.$data.currentValue !== null ? this.$data.currentValue : undefined,
594
592
  name: this.$props.name,
595
593
  onWheel: this.wheel,
596
594
  on: this.v3 ? undefined : {
@@ -635,13 +633,15 @@ var NumericTextBoxVue2 = {
635
633
  attrs: this.v3 ? undefined : {
636
634
  type: "button",
637
635
  tabIndex: -1,
638
- icon: 'arrow-n',
636
+ icon: 'caret-alt-up',
637
+ rounded: null,
639
638
  "aria-label": localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue]),
640
639
  title: localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue])
641
640
  },
642
641
  tabIndex: -1,
643
- icon: 'arrow-n',
642
+ icon: 'caret-alt-up',
644
643
  "class": "k-spinner-increase",
644
+ rounded: null,
645
645
  "aria-label": localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue]),
646
646
  title: localizationService.toLanguageString(main_1.numericIncreaseValue, main_1.messages[main_1.numericIncreaseValue]),
647
647
  onClick: this.increase,
@@ -654,13 +654,15 @@ var NumericTextBoxVue2 = {
654
654
  attrs: this.v3 ? undefined : {
655
655
  type: "button",
656
656
  tabIndex: -1,
657
- icon: 'arrow-s',
657
+ icon: 'caret-alt-down',
658
+ rounded: null,
658
659
  "aria-label": localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
659
660
  title: localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue])
660
661
  },
661
662
  tabIndex: -1,
662
663
  "class": "k-spinner-decrease",
663
- icon: 'arrow-s',
664
+ icon: 'caret-alt-down',
665
+ rounded: null,
664
666
  "aria-label": localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
665
667
  title: localizationService.toLanguageString(main_1.numericDecreaseValue, main_1.messages[main_1.numericDecreaseValue]),
666
668
  onClick: this.decrease,
@@ -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: 1662386211,
11
+ publishDate: 1662725363,
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
  };
@@ -205,12 +205,12 @@ var SliderVue2 = {
205
205
  attrs: this.v3 ? undefined : {
206
206
  type: "button",
207
207
  tabIndex: -1,
208
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
208
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
209
209
  rounded: 'full',
210
210
  title: lS.toLanguageString(main_1.sliderDecreaseValue, main_1.messages[main_1.sliderDecreaseValue])
211
211
  },
212
212
  tabIndex: -1,
213
- icon: this.$props.vertical ? 'arrow-s' : 'arrow-w',
213
+ icon: this.$props.vertical ? 'caret-alt-down' : 'caret-alt-left',
214
214
  style: {
215
215
  position: 'relative'
216
216
  },
@@ -292,12 +292,12 @@ var SliderVue2 = {
292
292
  attrs: this.v3 ? undefined : {
293
293
  type: "button",
294
294
  tabIndex: -1,
295
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
295
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
296
296
  rounded: 'full',
297
297
  title: lS.toLanguageString(main_1.sliderIncreaseValue, main_1.messages[main_1.sliderIncreaseValue])
298
298
  },
299
299
  tabIndex: -1,
300
- icon: this.$props.vertical ? 'arrow-n' : 'arrow-e',
300
+ icon: this.$props.vertical ? 'caret-alt-up' : 'caret-alt-right',
301
301
  rounded: 'full',
302
302
  style: {
303
303
  position: 'relative'
@@ -247,11 +247,11 @@ var SwitchVue2 = {
247
247
  "class": 'k-switch-label-on'
248
248
  }, [onLabel]), h("span", {
249
249
  "class": 'k-switch-label-off'
250
- }, [offLabel]), h("span", {
250
+ }, [offLabel])]), h("span", {
251
251
  "class": 'k-switch-thumb-wrap'
252
252
  }, [h("span", {
253
253
  "class": this.switchThumbClass
254
- })])])]);
254
+ })])]);
255
255
  },
256
256
  methods: {
257
257
  focus: function focus() {
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.5.3-dev.202209051408",
4
+ "version": "3.5.4-dev.202209091220",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -44,22 +44,22 @@
44
44
  "vue": "^2.6.12 || ^3.0.2"
45
45
  },
46
46
  "dependencies": {
47
- "@progress/kendo-vue-buttons": "3.5.3-dev.202209051408",
48
- "@progress/kendo-vue-common": "3.5.3-dev.202209051408",
49
- "@progress/kendo-vue-labels": "3.5.3-dev.202209051408",
50
- "@progress/kendo-vue-popup": "3.5.3-dev.202209051408"
47
+ "@progress/kendo-vue-buttons": "3.5.4-dev.202209091220",
48
+ "@progress/kendo-vue-common": "3.5.4-dev.202209091220",
49
+ "@progress/kendo-vue-labels": "3.5.4-dev.202209091220",
50
+ "@progress/kendo-vue-popup": "3.5.4-dev.202209091220"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@progress/kendo-data-query": "^1.5.5",
54
54
  "@progress/kendo-date-math": "^1.5.4",
55
55
  "@progress/kendo-drawing": "^1.8.0",
56
56
  "@progress/kendo-licensing": "^1.1.0",
57
- "@progress/kendo-vue-buttons": "3.5.3-dev.202209051408",
58
- "@progress/kendo-vue-dropdowns": "3.5.3-dev.202209051408",
59
- "@progress/kendo-vue-form": "3.5.3-dev.202209051408",
60
- "@progress/kendo-vue-intl": "3.5.3-dev.202209051408",
61
- "@progress/kendo-vue-labels": "3.5.3-dev.202209051408",
62
- "@progress/kendo-vue-tooltip": "3.5.3-dev.202209051408",
57
+ "@progress/kendo-vue-buttons": "3.5.4-dev.202209091220",
58
+ "@progress/kendo-vue-dropdowns": "3.5.4-dev.202209091220",
59
+ "@progress/kendo-vue-form": "3.5.4-dev.202209091220",
60
+ "@progress/kendo-vue-intl": "3.5.4-dev.202209091220",
61
+ "@progress/kendo-vue-labels": "3.5.4-dev.202209091220",
62
+ "@progress/kendo-vue-tooltip": "3.5.4-dev.202209091220",
63
63
  "cldr-core": "^41.0.0",
64
64
  "cldr-dates-full": "^41.0.0",
65
65
  "cldr-numbers-full": "^41.0.0"