@progress/kendo-vue-dateinputs 2.6.4 → 2.6.5-dev.202112031051

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.
@@ -1,5 +1,21 @@
1
1
  "use strict";
2
2
 
3
+ var __assign = undefined && undefined.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+
8
+ for (var p in s) {
9
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
10
+ }
11
+ }
12
+
13
+ return t;
14
+ };
15
+
16
+ return __assign.apply(this, arguments);
17
+ };
18
+
3
19
  Object.defineProperty(exports, "__esModule", {
4
20
  value: true
5
21
  });
@@ -44,7 +60,8 @@ var DateRangePicker = {
44
60
  emits: {
45
61
  blur: null,
46
62
  change: null,
47
- focus: null
63
+ focus: null,
64
+ keydown: null
48
65
  },
49
66
  props: {
50
67
  allowReverse: {
@@ -66,6 +83,8 @@ var DateRangePicker = {
66
83
  type: Boolean,
67
84
  default: false
68
85
  },
86
+ popup: [String, Object, Function],
87
+ calendar: [String, Object, Function],
69
88
  startDateInput: [String, Object, Function],
70
89
  endDateInput: [String, Object, Function],
71
90
  endDateInputSettings: Object,
@@ -76,26 +95,6 @@ var DateRangePicker = {
76
95
  return 'd';
77
96
  }
78
97
  },
79
- // PropTypes.oneOfType([
80
- // PropTypes.string,
81
- // PropTypes.shape({
82
- // skeleton: PropTypes.string,
83
- // pattern: PropTypes.string,
84
- // date: PropTypes.oneOf(['short', 'medium', 'long', 'full']),
85
- // time: PropTypes.oneOf(['short', 'medium', 'long', 'full']),
86
- // datetime: PropTypes.oneOf(['short', 'medium', 'long', 'full']),
87
- // era: PropTypes.oneOf(['narrow', 'short', 'long']),
88
- // year: PropTypes.oneOf(['numeric', '2-digit']),
89
- // month: PropTypes.oneOf(['numeric', '2-digit', 'narrow', 'short', 'long']),
90
- // day: PropTypes.oneOf(['numeric', '2-digit']),
91
- // weekday: PropTypes.oneOf(['narrow', 'short', 'long']),
92
- // hour: PropTypes.oneOf(['numeric', '2-digit']),
93
- // hour12: Boolean,
94
- // minute: PropTypes.oneOf(['numeric', '2-digit']),
95
- // second: PropTypes.oneOf(['numeric', '2-digit']),
96
- // timeZoneName: PropTypes.oneOf(['short', 'long'])
97
- // })
98
- // ]),
99
98
  id: String,
100
99
  ariaLabelledBy: String,
101
100
  ariaDescribedBy: String,
@@ -132,21 +131,19 @@ var DateRangePicker = {
132
131
  default: function _default() {
133
132
  return undefined;
134
133
  }
135
- } // PropTypes.shape({ start: Date, end: Date })
136
-
134
+ }
137
135
  },
138
136
  created: function created() {
139
137
  this._element = null;
140
138
  this._wrapper = null;
141
139
  this._calendar = null;
142
140
  this._startDateInput = null;
143
- this._endDateInput = null; // this.valueDuringOnChange = undefined;
144
- // this.showDuringOnChange?: boolean;
145
-
141
+ this._endDateInput = null;
146
142
  this._popupId = kendo_vue_common_1.guid();
147
143
  this._anchor = kendo_vue_common_1.guid();
148
144
  this._startInputId = kendo_vue_common_1.guid();
149
145
  this._endInputId = kendo_vue_common_1.guid();
146
+ this._calendarId = kendo_vue_common_1.guid();
150
147
  kendo_vue_common_2.validatePackage(package_metadata_1.packageMetadata);
151
148
  this.currentShow = this.$props.show || this.$props.defaultShow;
152
149
  this.currentValue = this.$props.value || this.$props.defaultValue;
@@ -166,9 +163,9 @@ var DateRangePicker = {
166
163
  }
167
164
  },
168
165
  updated: function updated() {
169
- if (!this._calendar) {
170
- this._calendar = this.v3 ? this.calendarRef : this.$refs.calendar;
171
- }
166
+ this._calendar = this.v3 ? this.calendarRef : this.$refs.calendar;
167
+ this._startDateInput = this.v3 ? this.startDateInputRef : this.$refs.startDateInput;
168
+ this._endDateInput = this.v3 ? this.endDateInputRef : this.$refs.endDateInput;
172
169
 
173
170
  if (this.shouldFocusCalendar) {
174
171
  this.focusCalendarElement();
@@ -226,25 +223,9 @@ var DateRangePicker = {
226
223
  var endMessage = localizationService.toLanguageString(messages_1.end, messages_1.messages[messages_1.end]);
227
224
  var separatorMessage = localizationService.toLanguageString(messages_1.separator, messages_1.messages[messages_1.separator]);
228
225
  var startDateInputRender = this.$props.startDateInput ? kendo_vue_common_2.templateRendering.call(this, this.$props.startDateInput, kendo_vue_common_2.getListeners.call(this)) : undefined;
229
- var startDateInputDefaultRendering = // @ts-ignore
230
- h(DateInput_1.DateInput, {
231
- ref: this.v3 ? function (el) {
232
- _this.startDateInputRef = el;
233
- } : 'startDateInput',
226
+
227
+ var startSettings = __assign({
234
228
  label: startMessage,
235
- attrs: this.v3 ? undefined : {
236
- label: startMessage,
237
- format: this.$props.format,
238
- min: this.min,
239
- max: this.max,
240
- id: this._startInputId,
241
- disabled: this.$props.disabled,
242
- valid: this.$props.valid,
243
- ariaHasPopup: true,
244
- ariaExpanded: this.computedShow // ...this.$props.startDateInputSettings,
245
- ,
246
- value: value.start
247
- },
248
229
  format: this.$props.format,
249
230
  min: this.min,
250
231
  max: this.max,
@@ -253,12 +234,20 @@ var DateRangePicker = {
253
234
  valid: this.$props.valid,
254
235
  ariaHasPopup: true,
255
236
  ariaExpanded: this.computedShow,
256
- value: value.start,
257
- onChange: this.handleStartChange,
237
+ value: value.start
238
+ }, this.$props.endDateInputSettings);
239
+
240
+ var startDateInputDefaultRendering = h(DateInput_1.DateInput, __assign(__assign({
241
+ ref: this.v3 ? function (el) {
242
+ _this.startDateInputRef = el;
243
+ } : 'startDateInput',
244
+ attrs: this.v3 ? undefined : startSettings
245
+ }, startSettings), {
246
+ onChange: this.handleEndChange,
258
247
  on: this.v3 ? undefined : {
259
- "change": this.handleStartChange
248
+ 'change': this.handleEndChange
260
249
  }
261
- });
250
+ }));
262
251
  var startDateInputRendering = kendo_vue_common_2.getTemplate.call(this, {
263
252
  h: h,
264
253
  template: startDateInputRender,
@@ -268,25 +257,9 @@ var DateRangePicker = {
268
257
  }
269
258
  });
270
259
  var endDateInputRender = this.$props.endDateInput ? kendo_vue_common_2.templateRendering.call(this, this.$props.endDateInput, kendo_vue_common_2.getListeners.call(this)) : undefined;
271
- var endDateInputDefaultRendering = // @ts-ignore
272
- h(DateInput_1.DateInput, {
273
- ref: this.v3 ? function (el) {
274
- _this.endDateInputRef = el;
275
- } : 'endDateInput',
260
+
261
+ var endSettings = __assign({
276
262
  label: endMessage,
277
- attrs: this.v3 ? undefined : {
278
- label: endMessage,
279
- format: this.$props.format,
280
- min: this.min,
281
- max: this.max,
282
- id: this._endInputId,
283
- disabled: this.$props.disabled,
284
- valid: this.$props.valid,
285
- ariaHasPopup: true,
286
- ariaExpanded: this.computedShow // ...this.$props.endDateInputSettings,
287
- ,
288
- value: value.end
289
- },
290
263
  format: this.$props.format,
291
264
  min: this.min,
292
265
  max: this.max,
@@ -295,12 +268,20 @@ var DateRangePicker = {
295
268
  valid: this.$props.valid,
296
269
  ariaHasPopup: true,
297
270
  ariaExpanded: this.computedShow,
298
- value: value.end,
271
+ value: value.end
272
+ }, this.$props.endDateInputSettings);
273
+
274
+ var endDateInputDefaultRendering = h(DateInput_1.DateInput, __assign(__assign({
275
+ ref: this.v3 ? function (el) {
276
+ _this.endDateInputRef = el;
277
+ } : 'endDateInput',
278
+ attrs: this.v3 ? undefined : endSettings
279
+ }, endSettings), {
299
280
  onChange: this.handleEndChange,
300
281
  on: this.v3 ? undefined : {
301
- "change": this.handleEndChange
282
+ 'change': this.handleEndChange
302
283
  }
303
- });
284
+ }));
304
285
  var endDateInputRendering = kendo_vue_common_2.getTemplate.call(this, {
305
286
  h: h,
306
287
  template: endDateInputRender,
@@ -310,72 +291,53 @@ var DateRangePicker = {
310
291
  }
311
292
  });
312
293
  var calendarRender = this.$props.calendar ? kendo_vue_common_2.templateRendering.call(this, this.$props.calendar, kendo_vue_common_2.getListeners.call(this)) : undefined;
313
- var calendarDefaultRendering = // @ts-ignore
314
- h(Calendar_1.Calendar, {
294
+
295
+ var calendarSettings = __assign({
296
+ id: this._calendarId,
297
+ min: this.min,
298
+ max: this.max,
299
+ views: 2,
300
+ allowReverse: this.$props.allowReverse,
301
+ mode: 'range',
302
+ focusedDate: this.$props.focusedDate,
303
+ disabled: this.$props.disabled,
304
+ value: value
305
+ }, this.$props.calendarSettings);
306
+
307
+ var calendarDefaultRendering = h(Calendar_1.Calendar, __assign({
315
308
  ref: this.v3 ? function (el) {
316
309
  _this.calendarRef = el;
317
310
  } : 'calendar',
311
+ attrs: this.v3 ? undefined : calendarSettings,
318
312
  onKeydown: this.handleKeyDown,
319
313
  on: this.v3 ? undefined : {
320
- "keydown": this.handleKeyDown,
321
- "focus": this.calendarFocus,
322
- "blur": this.calendarBlur,
323
- "change": this.handleCalendarChange
314
+ 'keydown': this.handleKeyDown,
315
+ 'focus': this.calendarFocus,
316
+ 'blur': this.calendarBlur,
317
+ 'change': this.handleCalendarChange
324
318
  },
325
319
  onFocus: this.calendarFocus,
326
320
  onBlur: this.calendarBlur,
327
- min: this.min,
328
- attrs: this.v3 ? undefined : {
329
- min: this.min,
330
- max: this.max,
331
- views: 2,
332
- allowReverse: this.$props.allowReverse,
333
- mode: 'range',
334
- focusedDate: this.$props.focusedDate,
335
- disabled: this.$props.disabled // ...this.$props.calendarSettings,
336
- ,
337
- value: value
338
- },
339
- max: this.max,
340
- views: 2,
341
- allowReverse: this.$props.allowReverse,
342
- mode: 'range',
343
- focusedDate: this.$props.focusedDate,
344
- disabled: this.$props.disabled,
345
- value: value,
346
321
  onChange: this.handleCalendarChange
347
- });
322
+ }, calendarSettings));
348
323
  var calendarRendering = kendo_vue_common_2.getTemplate.call(this, {
349
324
  h: h,
350
325
  template: calendarRender,
351
326
  defaultRendering: calendarDefaultRendering,
352
327
  additionalListeners: {
353
- change: this.handleCalendarChange
328
+ change: this.handleCalendarChange,
329
+ keydown: this.handleKeyDown,
330
+ focus: this.calendarFocus,
331
+ blur: this.calendarBlur
354
332
  }
355
333
  });
356
334
  var _a = this.$props.popupSettings,
357
335
  popupClass = _a.popupClass,
358
- animate = _a.animate,
359
- appendTo = _a.appendTo;
336
+ animate = _a.animate;
360
337
  var popupRender = this.$props.popup ? kendo_vue_common_2.templateRendering.call(this, this.$props.popup, kendo_vue_common_2.getListeners.call(this)) : undefined;
361
- var popupDefaultRendering = // @ts-ignore function children
362
- h(kendo_vue_popup_1.Popup, {
338
+
339
+ var popupSettings = __assign({
363
340
  show: this.computedShow,
364
- attrs: this.v3 ? undefined : {
365
- show: this.computedShow,
366
- anchor: this._anchor,
367
- id: this._popupId,
368
- anchorAlign: {
369
- horizontal: 'left',
370
- vertical: 'bottom'
371
- },
372
- popupAlign: {
373
- horizontal: 'left',
374
- vertical: 'top'
375
- },
376
- animate: this.initialAnimation ? false : animate,
377
- appendTo: appendTo
378
- },
379
341
  anchor: this._anchor,
380
342
  id: this._popupId,
381
343
  anchorAlign: {
@@ -386,10 +348,13 @@ var DateRangePicker = {
386
348
  horizontal: 'left',
387
349
  vertical: 'top'
388
350
  },
389
- animate: this.initialAnimation ? false : animate,
390
- appendTo: appendTo,
391
- "class": popupClass
392
- }, this.v3 ? function () {
351
+ animate: this.initialAnimation ? false : animate
352
+ }, this.$props.popupSettings);
353
+
354
+ var popupDefaultRendering = h(kendo_vue_popup_1.Popup, __assign({
355
+ attrs: this.v3 ? undefined : popupSettings,
356
+ 'class': popupClass
357
+ }, popupSettings), this.v3 ? function () {
393
358
  return [calendarRendering];
394
359
  } : [calendarRendering]);
395
360
  var popupRendering = kendo_vue_common_2.getTemplate.call(this, {
@@ -453,30 +418,35 @@ var DateRangePicker = {
453
418
  },
454
419
  methods: {
455
420
  focus: function focus() {
456
- if (this._startDateInput) {
457
- this._startDateInput.focus();
421
+ var startInput = this.getStartInput();
422
+
423
+ if (startInput) {
424
+ startInput.focus();
458
425
  }
459
426
  },
460
427
  focusCalendarElement: function focusCalendarElement() {
461
- var popup = document.getElementById(this._popupId);
428
+ var calendar = this.getCalendar();
462
429
 
463
- if (this._calendar && popup) {
464
- popup.getElementsByClassName('k-calendar-table')[0].focus({
430
+ if (calendar) {
431
+ calendar.focus({
465
432
  preventScroll: true
466
433
  });
467
434
  }
468
435
  },
469
436
  focusDateInputElement: function focusDateInputElement() {
470
- if (!document || !this._startDateInput || !this._startDateInput.element() || !this._endDateInput || !this._endDateInput.element()) {
437
+ var startInput = this.getStartInput();
438
+ var endInput = this.getEndInput();
439
+
440
+ if (!document || !startInput || !endInput) {
471
441
  return;
472
442
  }
473
443
 
474
- if ((this.computedValue.start === null || this.computedValue.end !== null) && document.activeElement !== this._endDateInput.element()) {
475
- this._startDateInput.focus({
444
+ if ((this.computedValue.start === null || this.computedValue.end !== null) && document.activeElement !== endInput) {
445
+ startInput.focus({
476
446
  preventScroll: true
477
447
  });
478
- } else if (document.activeElement !== this._startDateInput.element()) {
479
- this._endDateInput.focus({
448
+ } else if (document.activeElement !== startInput) {
449
+ endInput.focus({
480
450
  preventScroll: true
481
451
  });
482
452
  }
@@ -511,16 +481,19 @@ var DateRangePicker = {
511
481
  event.preventDefault();
512
482
  },
513
483
  handleFocus: function handleFocus(event) {
484
+ var startInput = this.getStartInput();
485
+ var endInput = this.getEndInput();
486
+
514
487
  if (!this.shouldFocusDateInput) {
515
488
  this.setShow(true);
516
489
  }
517
490
 
518
- if (this._startDateInput && this._startDateInput.element()) {
519
- this._startDateInput.element().classList.add('k-state-focused');
491
+ if (startInput) {
492
+ startInput.classList.add('k-state-focused');
520
493
  }
521
494
 
522
- if (this._endDateInput && this._endDateInput.element()) {
523
- this._endDateInput.element().classList.add('k-state-focused');
495
+ if (endInput) {
496
+ endInput.classList.add('k-state-focused');
524
497
  }
525
498
 
526
499
  this.$emit('focus', event);
@@ -538,19 +511,32 @@ var DateRangePicker = {
538
511
  var _this = this;
539
512
 
540
513
  this._blurTimeout = setTimeout(function () {
541
- if (_this._startDateInput && _this._startDateInput.element()) {
542
- _this._startDateInput.element().classList.remove('k-state-focused');
514
+ var startInput = _this.getStartInput();
515
+
516
+ var endInput = _this.getEndInput();
517
+
518
+ if (startInput) {
519
+ startInput.classList.remove('k-state-focused');
543
520
  }
544
521
 
545
- if (_this._endDateInput && _this._endDateInput.element()) {
546
- _this._endDateInput.element().classList.remove('k-state-focused');
522
+ if (endInput) {
523
+ endInput.classList.remove('k-state-focused');
547
524
  }
548
525
 
549
- if (_this._startDateInput && kendo_vue_common_1.canUseDOM && document.activeElement !== _this._startDateInput._element && document.activeElement !== _this._endDateInput._element) {
526
+ if (startInput && endInput && kendo_vue_common_1.canUseDOM && startInput && document.activeElement !== endInput) {
550
527
  _this.setShow(false);
551
528
  }
552
529
  }, 200);
553
530
  },
531
+ getStartInput: function getStartInput() {
532
+ return this._startDateInput && this._startDateInput.element ? this._startDateInput.element() : document.getElementById(this._startInputId);
533
+ },
534
+ getEndInput: function getEndInput() {
535
+ return this._endDateInput && this._endDateInput.element ? this._endDateInput.element() : document.getElementById(this._endInputId);
536
+ },
537
+ getCalendar: function getCalendar() {
538
+ return this._calendar && this._calendar.element ? this._calendar : document.getElementById(this._calendarId);
539
+ },
554
540
  handleBlur: function handleBlur(event) {
555
541
  this.createBlurTimeout();
556
542
  this.$emit('blur', event);
@@ -587,6 +573,8 @@ var DateRangePicker = {
587
573
  handleKeyDown: function handleKeyDown(event) {
588
574
  var keyCode = event.keyCode,
589
575
  altKey = event.altKey;
576
+ var endInput = this.getEndInput();
577
+ var calendar = this.getCalendar();
590
578
 
591
579
  if (keyCode === kendo_vue_common_1.Keys.esc) {
592
580
  event.preventDefault();
@@ -596,10 +584,12 @@ var DateRangePicker = {
596
584
  event.preventDefault();
597
585
  this.shouldFocusCalendar = true;
598
586
  this.setShow(true);
599
- } else if (keyCode === kendo_vue_common_1.Keys.tab && this.computedShow && this._calendar && this._calendar.$el && this._endDateInput && this._endDateInput.element() && document && document.activeElement === this._endDateInput.element()) {
587
+ } else if (keyCode === kendo_vue_common_1.Keys.tab && this.computedShow && calendar && endInput && document && document.activeElement === endInput) {
600
588
  event.preventDefault();
601
589
  this.focusCalendarElement();
602
590
  }
591
+
592
+ this.$emit('keydown', event);
603
593
  },
604
594
  handleChange: function handleChange(value, event) {
605
595
  this.currentValue = value;
@@ -388,7 +388,8 @@ var DateTimePicker = {
388
388
  maxTime: maxTime,
389
389
  focusedDate: focusedDate,
390
390
  format: format,
391
- calendar: calendar
391
+ calendar: calendar,
392
+ steps: steps
392
393
  },
393
394
  value: this.computedValue,
394
395
  onChange: this.handleValueChange,
@@ -409,6 +410,7 @@ var DateTimePicker = {
409
410
  focusedDate: focusedDate,
410
411
  format: format,
411
412
  calendar: calendar,
413
+ steps: steps,
412
414
  onFocus: this.timeSelectorFocus,
413
415
  onBlur: this.timeSelectorBlur,
414
416
  onKeydown: this.handleKeyDown
@@ -4,6 +4,7 @@ declare type DefaultData<V> = object | ((this: V) => {});
4
4
  declare type DefaultMethods<V> = {
5
5
  [key: string]: (this: V, ...args: any[]) => any;
6
6
  };
7
+ import { TimePickerIncrementalSteps } from '../timepicker/models';
7
8
  import { DateFormatOptions } from '@progress/kendo-vue-intl';
8
9
  import { CalendarChangeEvent } from '../main';
9
10
  /**
@@ -36,6 +37,7 @@ export interface DateTimeSelectorProps {
36
37
  minTime?: Date;
37
38
  maxTime?: Date;
38
39
  weekNumber?: boolean;
40
+ steps?: TimePickerIncrementalSteps;
39
41
  focusedDate?: Date;
40
42
  format?: string | DateFormatOptions;
41
43
  calendar?: any;
@@ -69,6 +69,12 @@ var DateTimeSelector = {
69
69
  type: Boolean,
70
70
  default: false
71
71
  },
72
+ steps: {
73
+ type: Object,
74
+ default: function _default() {
75
+ return {};
76
+ }
77
+ },
72
78
  focusedDate: Date,
73
79
  format: String,
74
80
  calendar: Object
@@ -144,7 +150,8 @@ var DateTimeSelector = {
144
150
  max = _a.max,
145
151
  weekNumber = _a.weekNumber,
146
152
  focusedDate = _a.focusedDate,
147
- format = _a.format;
153
+ format = _a.format,
154
+ steps = _a.steps;
148
155
  var rootClassName = kendo_vue_common_1.classNames({
149
156
  'k-date-tab': this.currentTab === 'date',
150
157
  'k-time-tab': this.currentTab === 'time',
@@ -287,13 +294,15 @@ var DateTimeSelector = {
287
294
  min: this.computedMinTime || utils_1.MIN_TIME,
288
295
  max: this.computedMaxTime || utils_1.MAX_TIME,
289
296
  value: this.timeValue,
290
- format: format
297
+ format: format,
298
+ steps: steps
291
299
  },
292
300
  ref: 'timePart',
293
301
  min: this.computedMinTime || utils_1.MIN_TIME,
294
302
  max: this.computedMaxTime || utils_1.MAX_TIME,
295
303
  value: this.timeValue,
296
304
  format: format,
305
+ steps: steps,
297
306
  onChange: this.handleTimeListContainerChange,
298
307
  onMount: this.handleTimePartMount,
299
308
  onFocus: this.handleFocus,
@@ -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: 1638285376,
11
+ publishDate: 1638528278,
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
  };
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": "2.6.4",
4
+ "version": "2.6.5-dev.202112031051",
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": "2.6.4",
50
- "@progress/kendo-vue-common": "2.6.4",
51
- "@progress/kendo-vue-labels": "2.6.4",
52
- "@progress/kendo-vue-popup": "2.6.4"
49
+ "@progress/kendo-vue-buttons": "2.6.5-dev.202112031051",
50
+ "@progress/kendo-vue-common": "2.6.5-dev.202112031051",
51
+ "@progress/kendo-vue-labels": "2.6.5-dev.202112031051",
52
+ "@progress/kendo-vue-popup": "2.6.5-dev.202112031051"
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": "2.6.4",
58
- "@progress/kendo-vue-intl": "2.6.4"
57
+ "@progress/kendo-vue-dropdowns": "2.6.5-dev.202112031051",
58
+ "@progress/kendo-vue-intl": "2.6.5-dev.202112031051"
59
59
  },
60
60
  "author": "Progress",
61
61
  "license": "SEE LICENSE IN LICENSE.md",