@progress/kendo-vue-inputs 3.4.5-dev.202207300828 → 3.5.0-dev.202208010922

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.
@@ -9,7 +9,7 @@ import { packageMetadata } from '../package-metadata';
9
9
  import { Slider } from './../main';
10
10
  import { fitIntoBounds, isPresent } from './utils/misc';
11
11
  import { getColorFromHue, parseColor, getHSV, getColorFromHSV, getRGBA, getColorFromRGBA } from './utils/color-parser';
12
- import { cacheHsva, removeCachedColor, getCachedHsva, getCachedRgba, getCachedHex, cacheRgba, cacheHex } from './utils/color-cache';
12
+ import { removeCachedColor } from './utils/color-cache';
13
13
  import { ColorInput } from './ColorInput';
14
14
  import { ColorContrastLabels } from './ColorContrastLabels';
15
15
  import { ColorContrastSvg } from './ColorContrastSvg';
@@ -66,11 +66,11 @@ var ColorGradientVue2 = {
66
66
  this.guid = guid();
67
67
  },
68
68
  computed: {
69
- isUncontrolled: function isUncontrolled() {
70
- return this.$props.value === undefined;
69
+ valueSet: function valueSet() {
70
+ return this.value || this.modelValue || this.modelRgbaValue;
71
71
  },
72
72
  computedValue: function computedValue() {
73
- var value = this.value || this.defaultValue || this.modelValue || this.modelRgbaValue || this.currentValue || parseColor(DEFAULT_SELECTED_COLOR, FORMAT);
73
+ var value = this.valueSet || this.currentValue || this.defaultValue || parseColor(DEFAULT_SELECTED_COLOR, FORMAT);
74
74
 
75
75
  if (!isPresent(parseColor(value, 'hex', this.opacity))) {
76
76
  // Validate/sanitize the input.
@@ -80,13 +80,13 @@ var ColorGradientVue2 = {
80
80
  return value;
81
81
  },
82
82
  hsva: function hsva() {
83
- return this.currentHsva || getCachedHsva(this.guid, this.computedValue) || getHSV(this.computedValue);
83
+ return this.valueSet ? getHSV(this.computedValue) : this.currentHsva || getHSV(this.computedValue);
84
84
  },
85
85
  rgba: function rgba() {
86
- return this.currentRgba || getCachedRgba(this.guid, this.computedValue) || getRGBA(this.computedValue);
86
+ return this.valueSet ? getRGBA(this.computedValue) : this.currentRgba;
87
87
  },
88
88
  hex: function hex() {
89
- return this.currentHex || getCachedHex(this.guid, this.computedValue) || parseColor(this.computedValue, 'hex', this.opacity);
89
+ return this.valueSet ? parseColor(this.computedValue, 'hex', this.opacity) : this.currentHex;
90
90
  },
91
91
  computedBgColor: function computedBgColor() {
92
92
  return this.currentBgColor || getColorFromHue(this.hsva.h);
@@ -196,13 +196,13 @@ var ColorGradientVue2 = {
196
196
  tabindex: getTabIndex(this.$props.tabIndex, this.$props.disabled),
197
197
  "aria-labelledby": this.$props.ariaLabelledBy,
198
198
  "aria-describedby": this.$props.ariaDescribedBy,
199
- onFocusin: this.onFocus,
199
+ onFocus: this.onFocus,
200
200
  on: this.v3 ? undefined : {
201
- "focusin": this.onFocus,
202
- "focusout": this.onBlur,
201
+ "focus": this.onFocus,
202
+ "blur": this.onBlur,
203
203
  "keydown": this.onKeyDownHandler
204
204
  },
205
- onFocusout: this.onBlur,
205
+ onBlur: this.onBlur,
206
206
  onKeydown: this.onKeyDownHandler
207
207
  }, [h("div", {
208
208
  "class": "k-colorgradient-canvas k-hstack"
@@ -351,33 +351,21 @@ var ColorGradientVue2 = {
351
351
  },
352
352
  onHexChange: function onHexChange(hex, value, event) {
353
353
  var rgba = getRGBA(value);
354
-
355
- if (this.isUncontrolled) {
356
- var hsva = getHSV(value);
357
- this.currentHsva = hsva;
358
- this.currentBgColor = getColorFromHue(hsva.h);
359
- this.currentRgba = rgba;
360
- this.currentHex = hex;
361
- } else {
362
- cacheHex(this.guid, value, hex);
363
- }
364
-
354
+ var hsva = getHSV(value);
355
+ this.currentHsva = hsva;
356
+ this.currentBgColor = getColorFromHue(hsva.h);
357
+ this.currentRgba = rgba;
358
+ this.currentHex = hex;
365
359
  this.dispatchChangeEvent(value, event.event, hex, value);
366
360
  },
367
361
  onRgbaChange: function onRgbaChange(rgba, event) {
368
362
  var value = getColorFromRGBA(rgba);
369
363
  var hex = parseColor(value, 'hex', this.opacity);
370
-
371
- if (this.isUncontrolled) {
372
- var hsva = getHSV(value);
373
- this.currentHsva = hsva;
374
- this.currentBgColor = getColorFromHue(hsva.h);
375
- this.currentRgba = rgba;
376
- this.currentHex = hex;
377
- } else {
378
- cacheRgba(this.guid, value, rgba);
379
- }
380
-
364
+ var hsva = getHSV(value);
365
+ this.currentHsva = hsva;
366
+ this.currentBgColor = getColorFromHue(hsva.h);
367
+ this.currentRgba = rgba;
368
+ this.currentHex = hex;
381
369
  this.dispatchChangeEvent(value, event.event, hex, value);
382
370
  },
383
371
  onAlphaSliderChange: function onAlphaSliderChange(event) {
@@ -461,16 +449,10 @@ var ColorGradientVue2 = {
461
449
  var value = getColorFromHSV(hsva);
462
450
  var hex = parseColor(value, 'hex', this.opacity);
463
451
  var rgba = parseColor(value, 'rgba');
464
-
465
- if (this.isUncontrolled) {
466
- this.currentHsva = hsva;
467
- this.currentBgColor = getColorFromHue(hsva.h);
468
- this.currentRgba = getRGBA(value);
469
- this.currentHex = hex;
470
- } else {
471
- cacheHsva(this.guid, value, hsva);
472
- }
473
-
452
+ this.currentHsva = hsva;
453
+ this.currentBgColor = getColorFromHue(hsva.h);
454
+ this.currentRgba = getRGBA(value);
455
+ this.currentHex = hex;
474
456
  this.dispatchChangeEvent(value, event, hex, rgba);
475
457
  },
476
458
  dispatchChangeEvent: function dispatchChangeEvent(value, event, hex, rgbaValue) {
@@ -44,7 +44,12 @@ var ColorInputVue2 = {
44
44
  },
45
45
  props: {
46
46
  tabIndex: Number,
47
- rgba: Object,
47
+ rgba: {
48
+ type: Object,
49
+ default: function _default() {
50
+ return {};
51
+ }
52
+ },
48
53
  hex: String,
49
54
  opacity: Boolean,
50
55
  disabled: Boolean
@@ -234,7 +234,7 @@ var ColorPickerVue2 = {
234
234
  on: this.v3 ? undefined : {
235
235
  'keydown': this.onKeyDownHandler,
236
236
  'change': this.onFlatChangeHandler,
237
- 'blur': this.onBlurHandler,
237
+ 'focusout': this.onBlurHandler,
238
238
  'viewchange': this.onViewChange
239
239
  },
240
240
  ref: setRef(this, 'flatcolorpicker'),
@@ -255,8 +255,10 @@ var ColorPickerVue2 = {
255
255
  gradientSettings: this.gradientSettings
256
256
  }, this.flatColorPickerSettings),
257
257
  onChange: this.onFlatChangeHandler,
258
- onBlur: this.onBlurHandler,
259
- onViewchange: this.onViewChange
258
+ onFocusout: this.onBlurHandler,
259
+ onViewchange: this.onViewChange,
260
+ paletteSettings: this.paletteSettings,
261
+ gradientSettings: this.gradientSettings
260
262
  }, this.flatColorPickerSettings));
261
263
  }; // const dir = useDir(focusableElementGuid, props.dir);
262
264
 
@@ -429,8 +431,11 @@ var ColorPickerVue2 = {
429
431
  isViewFocused: function isViewFocused() {
430
432
  return !!(document.activeElement && document.activeElement.closest("#" + this._popupId));
431
433
  },
432
- onButtonBlur: function onButtonBlur() {
434
+ onButtonBlur: function onButtonBlur(event) {
433
435
  this.focused = this.isViewFocused();
436
+ this.$emit('blur', {
437
+ event: event
438
+ });
434
439
  },
435
440
  onFocusHandler: function onFocusHandler(event) {
436
441
  if (this.blurTimeoutRef) {
@@ -458,14 +463,11 @@ var ColorPickerVue2 = {
458
463
  this.focused = viewIsFocused;
459
464
  this.blurTimeoutRef = undefined;
460
465
  },
461
- onBlurHandler: function onBlurHandler(event) {
466
+ onBlurHandler: function onBlurHandler() {
462
467
  clearTimeout(this.blurTimeoutRef);
463
468
  this.palette = getRef(this, 'palette');
464
469
  this.gradient = getRef(this, 'gradient');
465
470
  this.blurTimeoutRef = setTimeout(this.onBlurTimeout, 200);
466
- this.$emit('blur', {
467
- event: event
468
- });
469
471
  },
470
472
  onViewChange: function onViewChange(event) {
471
473
  this.$emit('viewchange', event);
@@ -42,6 +42,7 @@ var FlatColorPickerVue2 = {
42
42
  'update:modelRgbaValue': null,
43
43
  'focus': null,
44
44
  'blur': null,
45
+ 'focusout': null,
45
46
  'keydown': null,
46
47
  'change': null
47
48
  },
@@ -210,13 +211,15 @@ var FlatColorPickerVue2 = {
210
211
  tabindex: getTabIndex(this.$props.tabIndex, this.$props.disabled),
211
212
  "aria-disabled": this.$props.disabled
212
213
  },
213
- onFocusin: this.onFocus,
214
+ onFocus: this.onFocus,
214
215
  on: this.v3 ? undefined : {
215
- "focusin": this.onFocus,
216
- "focusout": this.onBlur,
216
+ "focus": this.onFocus,
217
+ "blur": this.onBlur,
218
+ "focusout": this.onFocusout,
217
219
  "keydown": this.onKeyDownHandler
218
220
  },
219
- onFocusout: this.onBlur,
221
+ onBlur: this.onBlur,
222
+ onFocusout: this.onFocusout,
220
223
  onKeydown: this.onKeyDownHandler,
221
224
  "class": classNames('k-flatcolorpicker k-coloreditor', {
222
225
  'k-disabled': this.$props.disabled
@@ -519,6 +522,12 @@ var FlatColorPickerVue2 = {
519
522
  event: event,
520
523
  target: this
521
524
  });
525
+ },
526
+ onFocusout: function onFocusout(event) {
527
+ this.$emit('focusout', {
528
+ event: event,
529
+ target: this
530
+ });
522
531
  }
523
532
  }
524
533
  };
@@ -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: 1659169206,
8
+ publishDate: 1659345217,
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
  };
@@ -86,11 +86,11 @@ var ColorGradientVue2 = {
86
86
  this.guid = kendo_vue_common_1.guid();
87
87
  },
88
88
  computed: {
89
- isUncontrolled: function isUncontrolled() {
90
- return this.$props.value === undefined;
89
+ valueSet: function valueSet() {
90
+ return this.value || this.modelValue || this.modelRgbaValue;
91
91
  },
92
92
  computedValue: function computedValue() {
93
- var value = this.value || this.defaultValue || this.modelValue || this.modelRgbaValue || this.currentValue || color_parser_1.parseColor(DEFAULT_SELECTED_COLOR, FORMAT);
93
+ var value = this.valueSet || this.currentValue || this.defaultValue || color_parser_1.parseColor(DEFAULT_SELECTED_COLOR, FORMAT);
94
94
 
95
95
  if (!misc_1.isPresent(color_parser_1.parseColor(value, 'hex', this.opacity))) {
96
96
  // Validate/sanitize the input.
@@ -100,13 +100,13 @@ var ColorGradientVue2 = {
100
100
  return value;
101
101
  },
102
102
  hsva: function hsva() {
103
- return this.currentHsva || color_cache_1.getCachedHsva(this.guid, this.computedValue) || color_parser_1.getHSV(this.computedValue);
103
+ return this.valueSet ? color_parser_1.getHSV(this.computedValue) : this.currentHsva || color_parser_1.getHSV(this.computedValue);
104
104
  },
105
105
  rgba: function rgba() {
106
- return this.currentRgba || color_cache_1.getCachedRgba(this.guid, this.computedValue) || color_parser_1.getRGBA(this.computedValue);
106
+ return this.valueSet ? color_parser_1.getRGBA(this.computedValue) : this.currentRgba;
107
107
  },
108
108
  hex: function hex() {
109
- return this.currentHex || color_cache_1.getCachedHex(this.guid, this.computedValue) || color_parser_1.parseColor(this.computedValue, 'hex', this.opacity);
109
+ return this.valueSet ? color_parser_1.parseColor(this.computedValue, 'hex', this.opacity) : this.currentHex;
110
110
  },
111
111
  computedBgColor: function computedBgColor() {
112
112
  return this.currentBgColor || color_parser_1.getColorFromHue(this.hsva.h);
@@ -216,13 +216,13 @@ var ColorGradientVue2 = {
216
216
  tabindex: kendo_vue_common_1.getTabIndex(this.$props.tabIndex, this.$props.disabled),
217
217
  "aria-labelledby": this.$props.ariaLabelledBy,
218
218
  "aria-describedby": this.$props.ariaDescribedBy,
219
- onFocusin: this.onFocus,
219
+ onFocus: this.onFocus,
220
220
  on: this.v3 ? undefined : {
221
- "focusin": this.onFocus,
222
- "focusout": this.onBlur,
221
+ "focus": this.onFocus,
222
+ "blur": this.onBlur,
223
223
  "keydown": this.onKeyDownHandler
224
224
  },
225
- onFocusout: this.onBlur,
225
+ onBlur: this.onBlur,
226
226
  onKeydown: this.onKeyDownHandler
227
227
  }, [h("div", {
228
228
  "class": "k-colorgradient-canvas k-hstack"
@@ -371,33 +371,21 @@ var ColorGradientVue2 = {
371
371
  },
372
372
  onHexChange: function onHexChange(hex, value, event) {
373
373
  var rgba = color_parser_1.getRGBA(value);
374
-
375
- if (this.isUncontrolled) {
376
- var hsva = color_parser_1.getHSV(value);
377
- this.currentHsva = hsva;
378
- this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
379
- this.currentRgba = rgba;
380
- this.currentHex = hex;
381
- } else {
382
- color_cache_1.cacheHex(this.guid, value, hex);
383
- }
384
-
374
+ var hsva = color_parser_1.getHSV(value);
375
+ this.currentHsva = hsva;
376
+ this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
377
+ this.currentRgba = rgba;
378
+ this.currentHex = hex;
385
379
  this.dispatchChangeEvent(value, event.event, hex, value);
386
380
  },
387
381
  onRgbaChange: function onRgbaChange(rgba, event) {
388
382
  var value = color_parser_1.getColorFromRGBA(rgba);
389
383
  var hex = color_parser_1.parseColor(value, 'hex', this.opacity);
390
-
391
- if (this.isUncontrolled) {
392
- var hsva = color_parser_1.getHSV(value);
393
- this.currentHsva = hsva;
394
- this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
395
- this.currentRgba = rgba;
396
- this.currentHex = hex;
397
- } else {
398
- color_cache_1.cacheRgba(this.guid, value, rgba);
399
- }
400
-
384
+ var hsva = color_parser_1.getHSV(value);
385
+ this.currentHsva = hsva;
386
+ this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
387
+ this.currentRgba = rgba;
388
+ this.currentHex = hex;
401
389
  this.dispatchChangeEvent(value, event.event, hex, value);
402
390
  },
403
391
  onAlphaSliderChange: function onAlphaSliderChange(event) {
@@ -481,16 +469,10 @@ var ColorGradientVue2 = {
481
469
  var value = color_parser_1.getColorFromHSV(hsva);
482
470
  var hex = color_parser_1.parseColor(value, 'hex', this.opacity);
483
471
  var rgba = color_parser_1.parseColor(value, 'rgba');
484
-
485
- if (this.isUncontrolled) {
486
- this.currentHsva = hsva;
487
- this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
488
- this.currentRgba = color_parser_1.getRGBA(value);
489
- this.currentHex = hex;
490
- } else {
491
- color_cache_1.cacheHsva(this.guid, value, hsva);
492
- }
493
-
472
+ this.currentHsva = hsva;
473
+ this.currentBgColor = color_parser_1.getColorFromHue(hsva.h);
474
+ this.currentRgba = color_parser_1.getRGBA(value);
475
+ this.currentHex = hex;
494
476
  this.dispatchChangeEvent(value, event, hex, rgba);
495
477
  },
496
478
  dispatchChangeEvent: function dispatchChangeEvent(value, event, hex, rgbaValue) {
@@ -59,7 +59,12 @@ var ColorInputVue2 = {
59
59
  },
60
60
  props: {
61
61
  tabIndex: Number,
62
- rgba: Object,
62
+ rgba: {
63
+ type: Object,
64
+ default: function _default() {
65
+ return {};
66
+ }
67
+ },
63
68
  hex: String,
64
69
  opacity: Boolean,
65
70
  disabled: Boolean
@@ -247,7 +247,7 @@ var ColorPickerVue2 = {
247
247
  on: this.v3 ? undefined : {
248
248
  'keydown': this.onKeyDownHandler,
249
249
  'change': this.onFlatChangeHandler,
250
- 'blur': this.onBlurHandler,
250
+ 'focusout': this.onBlurHandler,
251
251
  'viewchange': this.onViewChange
252
252
  },
253
253
  ref: kendo_vue_common_1.setRef(this, 'flatcolorpicker'),
@@ -268,8 +268,10 @@ var ColorPickerVue2 = {
268
268
  gradientSettings: this.gradientSettings
269
269
  }, this.flatColorPickerSettings),
270
270
  onChange: this.onFlatChangeHandler,
271
- onBlur: this.onBlurHandler,
272
- onViewchange: this.onViewChange
271
+ onFocusout: this.onBlurHandler,
272
+ onViewchange: this.onViewChange,
273
+ paletteSettings: this.paletteSettings,
274
+ gradientSettings: this.gradientSettings
273
275
  }, this.flatColorPickerSettings));
274
276
  }; // const dir = useDir(focusableElementGuid, props.dir);
275
277
 
@@ -442,8 +444,11 @@ var ColorPickerVue2 = {
442
444
  isViewFocused: function isViewFocused() {
443
445
  return !!(document.activeElement && document.activeElement.closest("#" + this._popupId));
444
446
  },
445
- onButtonBlur: function onButtonBlur() {
447
+ onButtonBlur: function onButtonBlur(event) {
446
448
  this.focused = this.isViewFocused();
449
+ this.$emit('blur', {
450
+ event: event
451
+ });
447
452
  },
448
453
  onFocusHandler: function onFocusHandler(event) {
449
454
  if (this.blurTimeoutRef) {
@@ -471,14 +476,11 @@ var ColorPickerVue2 = {
471
476
  this.focused = viewIsFocused;
472
477
  this.blurTimeoutRef = undefined;
473
478
  },
474
- onBlurHandler: function onBlurHandler(event) {
479
+ onBlurHandler: function onBlurHandler() {
475
480
  clearTimeout(this.blurTimeoutRef);
476
481
  this.palette = kendo_vue_common_1.getRef(this, 'palette');
477
482
  this.gradient = kendo_vue_common_1.getRef(this, 'gradient');
478
483
  this.blurTimeoutRef = setTimeout(this.onBlurTimeout, 200);
479
- this.$emit('blur', {
480
- event: event
481
- });
482
484
  },
483
485
  onViewChange: function onViewChange(event) {
484
486
  this.$emit('viewchange', event);
@@ -59,6 +59,7 @@ var FlatColorPickerVue2 = {
59
59
  'update:modelRgbaValue': null,
60
60
  'focus': null,
61
61
  'blur': null,
62
+ 'focusout': null,
62
63
  'keydown': null,
63
64
  'change': null
64
65
  },
@@ -227,13 +228,15 @@ var FlatColorPickerVue2 = {
227
228
  tabindex: kendo_vue_common_1.getTabIndex(this.$props.tabIndex, this.$props.disabled),
228
229
  "aria-disabled": this.$props.disabled
229
230
  },
230
- onFocusin: this.onFocus,
231
+ onFocus: this.onFocus,
231
232
  on: this.v3 ? undefined : {
232
- "focusin": this.onFocus,
233
- "focusout": this.onBlur,
233
+ "focus": this.onFocus,
234
+ "blur": this.onBlur,
235
+ "focusout": this.onFocusout,
234
236
  "keydown": this.onKeyDownHandler
235
237
  },
236
- onFocusout: this.onBlur,
238
+ onBlur: this.onBlur,
239
+ onFocusout: this.onFocusout,
237
240
  onKeydown: this.onKeyDownHandler,
238
241
  "class": kendo_vue_common_1.classNames('k-flatcolorpicker k-coloreditor', {
239
242
  'k-disabled': this.$props.disabled
@@ -536,6 +539,12 @@ var FlatColorPickerVue2 = {
536
539
  event: event,
537
540
  target: this
538
541
  });
542
+ },
543
+ onFocusout: function onFocusout(event) {
544
+ this.$emit('focusout', {
545
+ event: event,
546
+ target: this
547
+ });
539
548
  }
540
549
  }
541
550
  };
@@ -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: 1659169206,
11
+ publishDate: 1659345217,
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-inputs",
3
3
  "description": "Kendo UI for Vue Input package",
4
- "version": "3.4.5-dev.202207300828",
4
+ "version": "3.5.0-dev.202208010922",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -38,22 +38,22 @@
38
38
  "vue": "^2.6.12 || ^3.0.2"
39
39
  },
40
40
  "dependencies": {
41
- "@progress/kendo-vue-buttons": "3.4.5-dev.202207300828",
42
- "@progress/kendo-vue-common": "3.4.5-dev.202207300828",
43
- "@progress/kendo-vue-labels": "3.4.5-dev.202207300828",
44
- "@progress/kendo-vue-popup": "3.4.5-dev.202207300828"
41
+ "@progress/kendo-vue-buttons": "3.5.0-dev.202208010922",
42
+ "@progress/kendo-vue-common": "3.5.0-dev.202208010922",
43
+ "@progress/kendo-vue-labels": "3.5.0-dev.202208010922",
44
+ "@progress/kendo-vue-popup": "3.5.0-dev.202208010922"
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.4.5-dev.202207300828",
52
- "@progress/kendo-vue-dropdowns": "3.4.5-dev.202207300828",
53
- "@progress/kendo-vue-form": "3.4.5-dev.202207300828",
54
- "@progress/kendo-vue-intl": "3.4.5-dev.202207300828",
55
- "@progress/kendo-vue-labels": "3.4.5-dev.202207300828",
56
- "@progress/kendo-vue-tooltip": "3.4.5-dev.202207300828",
51
+ "@progress/kendo-vue-buttons": "3.5.0-dev.202208010922",
52
+ "@progress/kendo-vue-dropdowns": "3.5.0-dev.202208010922",
53
+ "@progress/kendo-vue-form": "3.5.0-dev.202208010922",
54
+ "@progress/kendo-vue-intl": "3.5.0-dev.202208010922",
55
+ "@progress/kendo-vue-labels": "3.5.0-dev.202208010922",
56
+ "@progress/kendo-vue-tooltip": "3.5.0-dev.202208010922",
57
57
  "cldr-core": "^41.0.0",
58
58
  "cldr-dates-full": "^41.0.0",
59
59
  "cldr-numbers-full": "^41.0.0"