@progress/kendo-vue-dateinputs 3.4.0 → 3.4.2-dev.202207070519

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.
Files changed (40) hide show
  1. package/dist/cdn/js/kendo-vue-dateinputs.js +1 -1
  2. package/dist/es/calendar/components/Calendar.js +3 -2
  3. package/dist/es/calendar/components/CalendarCell.js +3 -2
  4. package/dist/es/calendar/components/CalendarHeaderTitle.js +3 -2
  5. package/dist/es/calendar/components/CalendarWeekCell.js +6 -7
  6. package/dist/es/calendar/components/Header.js +5 -4
  7. package/dist/es/calendar/components/View.js +3 -2
  8. package/dist/es/calendar/components/ViewList.js +5 -4
  9. package/dist/es/common/PickerWrap.js +3 -2
  10. package/dist/es/dateinput/DateInput.js +12 -15
  11. package/dist/es/datepicker/DatePicker.js +10 -17
  12. package/dist/es/daterangepicker/DateRangePicker.js +5 -4
  13. package/dist/es/datetimepicker/DateTimePicker.js +3 -2
  14. package/dist/es/datetimepicker/DateTimeSelector.js +5 -4
  15. package/dist/es/package-metadata.js +1 -1
  16. package/dist/es/timepicker/TimeList.js +5 -4
  17. package/dist/es/timepicker/TimePart.js +5 -4
  18. package/dist/es/timepicker/TimePicker.js +3 -2
  19. package/dist/es/timepicker/TimeSelector.js +5 -4
  20. package/dist/es/virtualization/Virtualization.js +5 -4
  21. package/dist/npm/calendar/components/Calendar.js +3 -2
  22. package/dist/npm/calendar/components/CalendarCell.js +3 -2
  23. package/dist/npm/calendar/components/CalendarHeaderTitle.js +3 -2
  24. package/dist/npm/calendar/components/CalendarWeekCell.js +6 -7
  25. package/dist/npm/calendar/components/Header.js +5 -4
  26. package/dist/npm/calendar/components/View.js +3 -2
  27. package/dist/npm/calendar/components/ViewList.js +5 -4
  28. package/dist/npm/common/PickerWrap.js +3 -2
  29. package/dist/npm/dateinput/DateInput.js +11 -14
  30. package/dist/npm/datepicker/DatePicker.js +9 -16
  31. package/dist/npm/daterangepicker/DateRangePicker.js +5 -4
  32. package/dist/npm/datetimepicker/DateTimePicker.js +3 -2
  33. package/dist/npm/datetimepicker/DateTimeSelector.js +5 -4
  34. package/dist/npm/package-metadata.js +1 -1
  35. package/dist/npm/timepicker/TimeList.js +5 -4
  36. package/dist/npm/timepicker/TimePart.js +5 -4
  37. package/dist/npm/timepicker/TimePicker.js +3 -2
  38. package/dist/npm/timepicker/TimeSelector.js +5 -4
  39. package/dist/npm/virtualization/Virtualization.js +5 -4
  40. package/package.json +7 -7
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
 
13
14
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
14
15
  /**
@@ -26,8 +27,8 @@ var CalendarWeekCellVue2 = {
26
27
  'click': null
27
28
  },
28
29
  // @ts-ignore
29
- setup: !gh ? undefined : function () {
30
- var v3 = !!gh;
30
+ setup: !isV3 ? undefined : function () {
31
+ var v3 = !!isV3;
31
32
  return {
32
33
  v3: v3
33
34
  };
@@ -46,13 +47,11 @@ var CalendarWeekCellVue2 = {
46
47
  on: this.v3 ? undefined : {
47
48
  "click": this.handleClick
48
49
  },
49
- value: this.$props.value,
50
+ id: this.$props.id,
50
51
  attrs: this.v3 ? undefined : {
51
- value: this.$props.value,
52
52
  id: this.$props.id
53
- },
54
- id: this.$props.id
55
- }, [defaultSlot]);
53
+ }
54
+ }, [this.$props.value !== undefined ? this.$props.value : defaultSlot]);
56
55
  },
57
56
  methods: {
58
57
  handleClick: function handleClick(event) {
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var inject = allVue.inject;
13
14
 
14
15
  var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
@@ -171,8 +172,8 @@ var HeaderVue2 = {
171
172
  }
172
173
  },
173
174
  // @ts-ignore
174
- setup: !gh ? undefined : function () {
175
- var v3 = !!gh;
175
+ setup: !isV3 ? undefined : function () {
176
+ var v3 = !!isV3;
176
177
  var kendoLocalizationService = inject('kendoLocalizationService', {});
177
178
  return {
178
179
  v3: v3,
@@ -253,9 +254,9 @@ var HeaderVue2 = {
253
254
  }
254
255
  }), h("span", {
255
256
  "class": todayClassNames,
256
- tabIndex: this.$props.tabIndex,
257
+ tabindex: this.$props.tabIndex,
257
258
  attrs: this.v3 ? undefined : {
258
- tabIndex: this.$props.tabIndex
259
+ tabindex: this.$props.tabIndex
259
260
  },
260
261
  onKeydown: this.todayKeyDown,
261
262
  on: this.v3 ? undefined : {
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var inject = allVue.inject;
13
14
 
14
15
  var kendo_date_math_1 = require("@progress/kendo-date-math");
@@ -164,8 +165,8 @@ var ViewVue2 = {
164
165
  }
165
166
  },
166
167
  // @ts-ignore
167
- setup: !gh ? undefined : function () {
168
- var v3 = !!gh;
168
+ setup: !isV3 ? undefined : function () {
169
+ var v3 = !!isV3;
169
170
  var kendoIntlService = inject('kendoIntlService', {});
170
171
  return {
171
172
  v3: v3,
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var inject = allVue.inject;
13
14
 
14
15
  var kendo_date_math_1 = require("@progress/kendo-date-math");
@@ -220,8 +221,8 @@ var ViewListVue2 = {
220
221
  }
221
222
  },
222
223
  // @ts-ignore
223
- setup: !gh ? undefined : function () {
224
- var v3 = !!gh;
224
+ setup: !isV3 ? undefined : function () {
225
+ var v3 = !!isV3;
225
226
  var kendoIntlService = inject('kendoIntlService', {});
226
227
  return {
227
228
  v3: v3,
@@ -280,12 +281,12 @@ var ViewListVue2 = {
280
281
  "aria-label": this.$props.service.title(this.$props.focusedDate),
281
282
  "aria-live": 'polite',
282
283
  "aria-activedescendant": cellUID + this.$props.focusedDate.getTime(),
283
- tabIndex: this.$attrs.tabIndex
284
+ tabindex: this.$attrs.tabIndex
284
285
  },
285
286
  "aria-label": this.$props.service.title(this.$props.focusedDate),
286
287
  "aria-live": 'polite',
287
288
  "aria-activedescendant": cellUID + this.$props.focusedDate.getTime(),
288
- tabIndex: this.$attrs.tabIndex,
289
+ tabindex: this.$attrs.tabIndex,
289
290
  "class": tableClassNames,
290
291
  onKeydown: this.handleKeyDown,
291
292
  on: this.v3 ? undefined : {
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
 
13
14
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
14
15
  /**
@@ -21,8 +22,8 @@ var PickerWrapVue2 = {
21
22
  id: String
22
23
  },
23
24
  // @ts-ignore
24
- setup: !gh ? undefined : function () {
25
- var v3 = !!gh;
25
+ setup: !isV3 ? undefined : function () {
26
+ var v3 = !!isV3;
26
27
  return {
27
28
  v3: v3
28
29
  };
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var ref = allVue.ref;
13
14
  var inject = allVue.inject;
14
15
 
@@ -524,7 +525,7 @@ var DateInputVue2 = {
524
525
  }
525
526
  },
526
527
  mounted: function mounted() {
527
- this._element = this.v3 ? this.inputRef : this.$refs.input;
528
+ this._element = kendo_vue_common_1.getRef(this, 'input');
528
529
  this.setValidity();
529
530
  this.$data.hasMounted = true;
530
531
  },
@@ -536,8 +537,8 @@ var DateInputVue2 = {
536
537
  this.setValidity();
537
538
  },
538
539
  // @ts-ignore
539
- setup: !gh ? undefined : function () {
540
- var v3 = !!gh;
540
+ setup: !isV3 ? undefined : function () {
541
+ var v3 = !!isV3;
541
542
  var inputRef = ref(null);
542
543
  var kendoIntlService = inject('kendoIntlService', {});
543
544
  var kendoLocalizationService = inject('kendoLocalizationService', {});
@@ -550,8 +551,6 @@ var DateInputVue2 = {
550
551
  },
551
552
  // @ts-ignore
552
553
  render: function render(createElement) {
553
- var _this = this;
554
-
555
554
  var h = gh || createElement;
556
555
  var defaultSlot = kendo_vue_common_1.getDefaultSlots(this);
557
556
  var localizationService = kendo_vue_intl_1.provideLocalizationService(this);
@@ -594,13 +593,13 @@ var DateInputVue2 = {
594
593
  role: "spinbutton",
595
594
  attrs: this.v3 ? undefined : {
596
595
  role: "spinbutton",
597
- tabIndex: this.$props.tabIndex,
596
+ tabindex: this.$props.tabIndex,
598
597
  disabled: this.$props.disabled,
599
598
  title: this.$props.title !== undefined ? this.$props.title : currentText,
600
599
  type: "text",
601
600
  spellcheck: false,
602
- autoComplete: "off",
603
- autoCorrect: "off",
601
+ autocomplete: "off",
602
+ autocorrect: "off",
604
603
  id: inputId,
605
604
  placeholder: this.$props.placeholder,
606
605
  name: name,
@@ -609,13 +608,13 @@ var DateInputVue2 = {
609
608
  "aria-valuemax": max === null ? undefined : max.getTime(),
610
609
  "aria-valuetext": currentText
611
610
  },
612
- tabIndex: this.$props.tabIndex,
611
+ tabindex: this.$props.tabIndex,
613
612
  disabled: this.$props.disabled,
614
613
  title: this.$props.title !== undefined ? this.$props.title : currentText,
615
614
  type: "text",
616
615
  spellcheck: false,
617
- autoComplete: "off",
618
- autoCorrect: "off",
616
+ autocomplete: "off",
617
+ autocorrect: "off",
619
618
  "class": "k-input-inner",
620
619
  id: inputId,
621
620
  placeholder: this.$props.placeholder,
@@ -644,9 +643,7 @@ var DateInputVue2 = {
644
643
  "aria-valuemin": min === null ? undefined : min.getTime(),
645
644
  "aria-valuemax": max === null ? undefined : max.getTime(),
646
645
  "aria-valuetext": currentText,
647
- ref: this.v3 ? function (el) {
648
- _this.inputRef = el;
649
- } : 'input'
646
+ ref: kendo_vue_common_1.setRef(this, 'input')
650
647
  }), defaultSlot, this.$props.spinners && h("span", {
651
648
  "class": "k-input-spinner k-spin-button",
652
649
  onMousedown: this.spinnersMouseDown,
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var ref = allVue.ref;
13
14
  var inject = allVue.inject;
14
15
 
@@ -201,10 +202,10 @@ var DatePickerVue2 = {
201
202
  this.$data.currentShow = this.$props.defaultShow;
202
203
  },
203
204
  mounted: function mounted() {
204
- this._dateInput = this.v3 ? this.dateInputRef : this.$refs.dateInput;
205
+ this._dateInput = kendo_vue_common_1.getRef(this, 'dateInput');
205
206
 
206
207
  if (this.$refs.calendar || this.calendarRef) {
207
- this._calendar = this.v3 ? this.calendarRef : this.$refs.calendar;
208
+ this._calendar = kendo_vue_common_1.getRef(this, 'calendar');
208
209
  }
209
210
 
210
211
  if (this.computedShow) {
@@ -227,7 +228,7 @@ var DatePickerVue2 = {
227
228
  }
228
229
 
229
230
  if (this.$refs.calendar || this.calendarRef) {
230
- this._calendar = this.v3 ? this.calendarRef : this.$refs.calendar;
231
+ this._calendar = kendo_vue_common_1.getRef(this, 'calendar');
231
232
  }
232
233
 
233
234
  if (this.computedShow) {
@@ -408,8 +409,8 @@ var DatePickerVue2 = {
408
409
  }
409
410
  },
410
411
  // @ts-ignore
411
- setup: !gh ? undefined : function () {
412
- var v3 = !!gh;
412
+ setup: !isV3 ? undefined : function () {
413
+ var v3 = !!isV3;
413
414
  var listRef = ref(null);
414
415
  var kendoAnchorRef = ref(null);
415
416
  var kendoLocalizationService = inject('kendoLocalizationService', {});
@@ -424,8 +425,6 @@ var DatePickerVue2 = {
424
425
  render: function render(createElement) {
425
426
  var _a;
426
427
 
427
- var _this = this;
428
-
429
428
  var h = gh || createElement;
430
429
  var defaultSlot = kendo_vue_common_1.getDefaultSlots(this);
431
430
  var _b = this.$props,
@@ -493,9 +492,7 @@ var DatePickerVue2 = {
493
492
  var dateInput = this.$props.dateInput ? kendo_vue_common_1.templateRendering.call(this, this.$props.dateInput, kendo_vue_common_1.getListeners.call(this)) : undefined;
494
493
  var dateInputDefaultRendering = // @ts-ignore
495
494
  h(DateInput_1.DateInput, {
496
- ref: this.v3 ? function (el) {
497
- _this.dateInputRef = el;
498
- } : 'dateInput',
495
+ ref: kendo_vue_common_1.setRef(this, 'dateInput'),
499
496
  placeholder: this.$props.placeholder,
500
497
  attrs: this.v3 ? undefined : {
501
498
  placeholder: this.$props.placeholder,
@@ -547,9 +544,7 @@ var DatePickerVue2 = {
547
544
  var calendar = this.$props.calendar ? kendo_vue_common_1.templateRendering.call(this, this.$props.calendar, kendo_vue_common_1.getListeners.call(this)) : undefined;
548
545
  var calendarDefaultRendering = // @ts-ignore
549
546
  h(Calendar_1.Calendar, {
550
- ref: this.v3 ? function (el) {
551
- _this.calendarRef = el;
552
- } : 'calendar',
547
+ ref: kendo_vue_common_1.setRef(this, 'calendar'),
553
548
  onKeydown: this.handleKeyDown,
554
549
  on: this.v3 ? undefined : {
555
550
  "keydown": this.handleKeyDown,
@@ -622,9 +617,7 @@ var DatePickerVue2 = {
622
617
  defaultSlots: calendarRendering
623
618
  });
624
619
  var datepicker = h("span", {
625
- ref: this.v3 ? function (el) {
626
- _this.kendoAnchorRef = el;
627
- } : this._anchor,
620
+ ref: kendo_vue_common_1.setRef(this, 'kendoAnchor', this._anchor),
628
621
  role: "group",
629
622
  attrs: this.v3 ? undefined : {
630
623
  role: "group",
@@ -25,6 +25,7 @@ var Vue = require("vue");
25
25
 
26
26
  var allVue = Vue;
27
27
  var gh = allVue.h;
28
+ var isV3 = allVue.version[0] === '3';
28
29
  var ref = allVue.ref;
29
30
  var inject = allVue.inject;
30
31
 
@@ -247,8 +248,8 @@ var DateRangePickerVue2 = {
247
248
  }
248
249
  },
249
250
  // @ts-ignore
250
- setup: !gh ? undefined : function () {
251
- var v3 = !!gh;
251
+ setup: !isV3 ? undefined : function () {
252
+ var v3 = !!isV3;
252
253
  var kendoAnchorRef = ref(null);
253
254
  var kendoLocalizationService = inject('kendoLocalizationService', {});
254
255
  return {
@@ -452,11 +453,11 @@ var DateRangePickerVue2 = {
452
453
  id: this.$props.id,
453
454
  "aria-labelledby": this.$props.ariaLabelledBy,
454
455
  "aria-describedby": this.$props.ariaDescribedBy,
455
- tabIndex: this.$props.tabIndex
456
+ tabindex: this.$props.tabIndex
456
457
  },
457
458
  "aria-labelledby": this.$props.ariaLabelledBy,
458
459
  "aria-describedby": this.$props.ariaDescribedBy,
459
- tabIndex: this.$props.tabIndex,
460
+ tabindex: this.$props.tabIndex,
460
461
  onFocusin: this.handleFocus,
461
462
  on: this.v3 ? undefined : {
462
463
  "focusin": this.handleFocus,
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var ref = allVue.ref;
13
14
  var inject = allVue.inject;
14
15
 
@@ -291,8 +292,8 @@ var DateTimePickerVue2 = {
291
292
  this.shouldFocusDateInput = false;
292
293
  },
293
294
  // @ts-ignore
294
- setup: !gh ? undefined : function () {
295
- var v3 = !!gh;
295
+ setup: !isV3 ? undefined : function () {
296
+ var v3 = !!isV3;
296
297
  var kendoAnchorRef = ref(null);
297
298
  var kendoLocalizationService = inject('kendoLocalizationService', {});
298
299
  return {
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var ref = allVue.ref;
13
14
  var inject = allVue.inject;
14
15
 
@@ -131,8 +132,8 @@ var DateTimeSelectorVue2 = {
131
132
  this.shouldFocusPart = false;
132
133
  },
133
134
  // @ts-ignore
134
- setup: !gh ? undefined : function () {
135
- var v3 = !!gh;
135
+ setup: !isV3 ? undefined : function () {
136
+ var v3 = !!isV3;
136
137
  var kendoAnchorRef = ref(null);
137
138
  var kendoLocalizationService = inject('kendoLocalizationService', {});
138
139
  return {
@@ -202,9 +203,9 @@ var DateTimeSelectorVue2 = {
202
203
  "keydown": this.handleKeyDown
203
204
  },
204
205
  "class": rootClassName,
205
- tabIndex: -1,
206
+ tabindex: -1,
206
207
  attrs: this.v3 ? undefined : {
207
- tabIndex: -1
208
+ tabindex: -1
208
209
  }
209
210
  }, [h("div", {
210
211
  "class": "k-datetime-buttongroup"
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-dateinputs',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1655871837,
11
+ publishDate: 1657170785,
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
  };
@@ -11,6 +11,7 @@ var Vue = require("vue");
11
11
 
12
12
  var allVue = Vue;
13
13
  var gh = allVue.h;
14
+ var isV3 = allVue.version[0] === '3';
14
15
  var inject = allVue.inject;
15
16
 
16
17
  var kendo_date_math_1 = require("@progress/kendo-date-math");
@@ -129,8 +130,8 @@ var TimeListVue2 = {
129
130
  this.animateToIndex = true;
130
131
  },
131
132
  // @ts-ignore
132
- setup: !gh ? undefined : function () {
133
- var v3 = !!gh;
133
+ setup: !isV3 ? undefined : function () {
134
+ var v3 = !!isV3;
134
135
  var kendoIntlService = inject('kendoIntlService', {});
135
136
  return {
136
137
  v3: v3,
@@ -185,9 +186,9 @@ var TimeListVue2 = {
185
186
  id: String(this.$props.id || ''),
186
187
  attrs: this.v3 ? undefined : {
187
188
  id: String(this.$props.id || ''),
188
- tabIndex: this.$props.disabled ? -1 : 0
189
+ tabindex: this.$props.disabled ? -1 : 0
189
190
  },
190
- tabIndex: this.$props.disabled ? -1 : 0,
191
+ tabindex: this.$props.disabled ? -1 : 0,
191
192
  onKeydown: this.handleKeyDown,
192
193
  on: this.v3 ? undefined : {
193
194
  "keydown": this.handleKeyDown,
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var inject = allVue.inject;
13
14
 
14
15
  var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
@@ -150,8 +151,8 @@ var TimePartVue2 = {
150
151
  });
151
152
  },
152
153
  // @ts-ignore
153
- setup: !gh ? undefined : function () {
154
- var v3 = !!gh;
154
+ setup: !isV3 ? undefined : function () {
155
+ var v3 = !!isV3;
155
156
  var kendoIntlService = inject('kendoIntlService', {});
156
157
  var kendoLocalizationService = inject('kendoLocalizationService', {});
157
158
  return {
@@ -221,9 +222,9 @@ var TimePartVue2 = {
221
222
  role: "presentation",
222
223
  attrs: this.v3 ? undefined : {
223
224
  role: "presentation",
224
- tabIndex: -1
225
+ tabindex: -1
225
226
  },
226
- tabIndex: -1
227
+ tabindex: -1
227
228
  }, [h("span", {
228
229
  "class": "k-title",
229
230
  onMousedown: function onMousedown(e) {
@@ -25,6 +25,7 @@ var Vue = require("vue");
25
25
 
26
26
  var allVue = Vue;
27
27
  var gh = allVue.h;
28
+ var isV3 = allVue.version[0] === '3';
28
29
  var ref = allVue.ref;
29
30
  var inject = allVue.inject;
30
31
 
@@ -294,8 +295,8 @@ var TimePickerVue2 = {
294
295
  this.shouldFocusDateInput = false;
295
296
  },
296
297
  // @ts-ignore
297
- setup: !gh ? undefined : function () {
298
- var v3 = !!gh;
298
+ setup: !isV3 ? undefined : function () {
299
+ var v3 = !!isV3;
299
300
  var kendoAnchorRef = ref(null);
300
301
  var kendoLocalizationService = inject('kendoLocalizationService', {});
301
302
  return {
@@ -9,6 +9,7 @@ var Vue = require("vue");
9
9
 
10
10
  var allVue = Vue;
11
11
  var gh = allVue.h;
12
+ var isV3 = allVue.version[0] === '3';
12
13
  var inject = allVue.inject;
13
14
 
14
15
  var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
@@ -140,8 +141,8 @@ var TimeSelectorVue2 = {
140
141
  this._cancelButton = this.$refs.cancelButton;
141
142
  },
142
143
  // @ts-ignore
143
- setup: !gh ? undefined : function () {
144
- var v3 = !!gh;
144
+ setup: !isV3 ? undefined : function () {
145
+ var v3 = !!isV3;
145
146
  var kendoIntlService = inject('kendoIntlService', {});
146
147
  var kendoLocalizationService = inject('kendoLocalizationService', {});
147
148
  return {
@@ -168,9 +169,9 @@ var TimeSelectorVue2 = {
168
169
  var cancelMessage = localizationService.toLanguageString(messages_1.timePickerCancel, messages_1.messages[messages_1.timePickerCancel]);
169
170
  var setMessage = localizationService.toLanguageString(messages_1.timePickerSet, messages_1.messages[messages_1.timePickerSet]);
170
171
  return h("div", {
171
- tabIndex: !disabled ? tabIndex || 0 : undefined,
172
+ tabindex: !disabled ? tabIndex || 0 : undefined,
172
173
  attrs: this.v3 ? undefined : {
173
- tabIndex: !disabled ? tabIndex || 0 : undefined
174
+ tabindex: !disabled ? tabIndex || 0 : undefined
174
175
  },
175
176
  "class": kendo_vue_common_1.classNames('k-timeselector k-reset', {
176
177
  'k-state-disabled': disabled
@@ -11,6 +11,7 @@ var Vue = require("vue");
11
11
 
12
12
  var allVue = Vue;
13
13
  var gh = allVue.h;
14
+ var isV3 = allVue.version[0] === '3';
14
15
 
15
16
  var kendo_vue_common_1 = require("@progress/kendo-vue-common");
16
17
 
@@ -319,8 +320,8 @@ var VirtualizationVue2 = {
319
320
  }
320
321
  },
321
322
  // @ts-ignore
322
- setup: !gh ? undefined : function () {
323
- var v3 = !!gh;
323
+ setup: !isV3 ? undefined : function () {
324
+ var v3 = !!isV3;
324
325
  return {
325
326
  v3: v3
326
327
  };
@@ -356,9 +357,9 @@ var VirtualizationVue2 = {
356
357
  "scroll": this.handleScroll
357
358
  },
358
359
  "class": rootClassNames,
359
- tabIndex: this.$props.tabIndex,
360
+ tabindex: this.$props.tabIndex,
360
361
  attrs: this.v3 ? undefined : {
361
- tabIndex: this.$props.tabIndex,
362
+ tabindex: this.$props.tabIndex,
362
363
  role: this.$props.role
363
364
  },
364
365
  role: this.$props.role
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-dateinputs",
3
3
  "description": "Kendo UI for Vue Date Inputs package",
4
- "version": "3.4.0",
4
+ "version": "3.4.2-dev.202207070519",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -46,16 +46,16 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@progress/kendo-date-math": "1.5.1",
49
- "@progress/kendo-vue-buttons": "3.4.0",
50
- "@progress/kendo-vue-common": "3.4.0",
51
- "@progress/kendo-vue-labels": "3.4.0",
52
- "@progress/kendo-vue-popup": "3.4.0"
49
+ "@progress/kendo-vue-buttons": "3.4.2-dev.202207070519",
50
+ "@progress/kendo-vue-common": "3.4.2-dev.202207070519",
51
+ "@progress/kendo-vue-labels": "3.4.2-dev.202207070519",
52
+ "@progress/kendo-vue-popup": "3.4.2-dev.202207070519"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@progress/kendo-data-query": "^1.5.4",
56
56
  "@progress/kendo-licensing": "^1.1.0",
57
- "@progress/kendo-vue-dropdowns": "3.4.0",
58
- "@progress/kendo-vue-intl": "3.4.0"
57
+ "@progress/kendo-vue-dropdowns": "3.4.2-dev.202207070519",
58
+ "@progress/kendo-vue-intl": "3.4.2-dev.202207070519"
59
59
  },
60
60
  "author": "Progress",
61
61
  "license": "SEE LICENSE IN LICENSE.md",