@progress/kendo-vue-layout 3.12.0 → 3.12.1-dev.202308170413

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.
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-layout',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1689689288,
8
+ publishDate: 1692244889,
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
  };
@@ -24,7 +24,7 @@ import * as Vue from 'vue';
24
24
  var allVue = Vue;
25
25
  var gh = allVue.h;
26
26
  var isV3 = allVue.version && allVue.version[0] === '3';
27
- import { canUseDOM, Draggable, getDefaultSlots } from '@progress/kendo-vue-common';
27
+ import { canUseDOM, classNames, Draggable, getDefaultSlots, getRef, setRef } from '@progress/kendo-vue-common';
28
28
  import { ResizeHandlers } from './ResizeHandlers';
29
29
  var tileDragClasses = ['k-card-title', 'k-card-body', 'k-tilelayout-item-body', 'k-tilelayout-item', 'k-tilelayout-item-header', 'k-resize-handle'];
30
30
  /**
@@ -36,6 +36,7 @@ var ANIMATION_DURATION = 200;
36
36
  */
37
37
  var TileVue2 = {
38
38
  name: 'KendoTile',
39
+ inheritAttrs: false,
39
40
  props: {
40
41
  defaultPosition: {
41
42
  required: true
@@ -97,17 +98,17 @@ var TileVue2 = {
97
98
  data: function data() {
98
99
  return {
99
100
  rtl: false,
100
- grabbed: false
101
+ grabbed: false,
102
+ showHint: false
101
103
  };
102
104
  },
103
105
  mounted: function mounted() {
104
106
  if (!this.$el) {
105
107
  return;
106
108
  }
107
- if (this.$el) {
108
- this.draggable = this.$refs.draggable;
109
- }
110
- if (getComputedStyle(this.$el).direction === 'rtl') {
109
+ this.element = this.$el.nodeType === 3 ? this.$el.nextElementSibling : this.$el;
110
+ this.draggable = this.$refs.draggable;
111
+ if (getComputedStyle(this.element).direction === 'rtl') {
111
112
  this.rtl = true;
112
113
  }
113
114
  },
@@ -126,6 +127,7 @@ var TileVue2 = {
126
127
  },
127
128
  updated: function updated() {
128
129
  var dragElement = this.dragElement();
130
+ this.hintElement = getRef(this, 'hintElement');
129
131
  if (!dragElement) {
130
132
  return;
131
133
  }
@@ -165,7 +167,7 @@ var TileVue2 = {
165
167
  return;
166
168
  }
167
169
  requestAnimationFrame(function () {
168
- var domNode = that.$el;
170
+ var domNode = that.element;
169
171
  if (!domNode) {
170
172
  return;
171
173
  }
@@ -198,7 +200,7 @@ var TileVue2 = {
198
200
  }
199
201
  var position = this.$props.defaultPosition;
200
202
  var resizable = this.$props.resizable;
201
- var itemStyles = __assign({
203
+ var hintItemStyles = __assign({
202
204
  gridColumnStart: position.col,
203
205
  gridColumnEnd: "span ".concat(position.colSpan),
204
206
  gridRowStart: position.row,
@@ -206,11 +208,18 @@ var TileVue2 = {
206
208
  outline: 'none',
207
209
  order: position.order
208
210
  }, this.$props.hintStyle);
211
+ var itemStyles = {
212
+ gridColumnStart: position.col,
213
+ gridColumnEnd: "span ".concat(position.colSpan),
214
+ gridRowStart: position.row,
215
+ gridRowEnd: "span ".concat(position.rowSpan),
216
+ order: position.order
217
+ };
209
218
  var card = h("div", {
210
219
  "class": this.wrapperClass,
211
- style: {
220
+ style: __assign({
212
221
  height: '100%'
213
- },
222
+ }, itemStyles),
214
223
  role: 'listitem',
215
224
  attrs: this.v3 ? undefined : {
216
225
  role: 'listitem',
@@ -269,10 +278,13 @@ var TileVue2 = {
269
278
  },
270
279
  rtl: this.rtl
271
280
  })]);
272
- return h("div", {
273
- style: itemStyles,
274
- "class": this.$props.hintClass
275
- }, [
281
+ var draggableHint = [this.showHint && h("div", {
282
+ ref: setRef(this, 'hintElement'),
283
+ style: __assign({
284
+ position: 'absolute'
285
+ }, hintItemStyles),
286
+ "class": classNames('k-layout-item-hint k-layout-item-hint-reorder', this.$props.hintClass)
287
+ }),
276
288
  // @ts-ignore function children
277
289
  h(Draggable, {
278
290
  ref: 'draggable',
@@ -286,7 +298,10 @@ var TileVue2 = {
286
298
  onPress: this.handlePress
287
299
  }, this.v3 ? function () {
288
300
  return [card];
289
- } : [card])]);
301
+ } : [card])];
302
+ return this.v3 ? draggableHint : h("div", {
303
+ style: itemStyles
304
+ }, [draggableHint]);
290
305
  },
291
306
  methods: {
292
307
  touchStart: function touchStart(e) {
@@ -306,7 +321,7 @@ var TileVue2 = {
306
321
  this.handleRelease();
307
322
  return;
308
323
  }
309
- if (!this.reorderable || !this.$el) {
324
+ if (!this.reorderable || !this.element) {
310
325
  return;
311
326
  }
312
327
  var x = e.clientX;
@@ -322,13 +337,17 @@ var TileVue2 = {
322
337
  }
323
338
  dragElement.style.height = "calc(100% + ".concat(dY, "px)");
324
339
  }
325
- this.$el.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
340
+ this.showHint = true;
341
+ if (this.hintElement) {
342
+ this.hintElement.classList.add('k-layout-item-hint-resize');
343
+ }
344
+ this.element.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
326
345
  if (this.preventDataOps) {
327
346
  return;
328
347
  }
329
348
  var col = 0;
330
349
  var row = 0;
331
- var wrapBox = this.$el.getBoundingClientRect();
350
+ var wrapBox = this.element.getBoundingClientRect();
332
351
  if (dX > wrapBox.width / this.$props.defaultPosition.colSpan / 3) {
333
352
  col = 1;
334
353
  }
@@ -360,9 +379,10 @@ var TileVue2 = {
360
379
  this.currentIgnoreDrag = true;
361
380
  return;
362
381
  }
363
- if (this.$el) {
364
- this.$el.style.zIndex = '10';
365
- this.$el.classList.add('k-layout-item-hint');
382
+ if (this.element) {
383
+ this.element.style.zIndex = '10';
384
+ this.element.classList.add('k-layout-item-hint');
385
+ this.showHint = true;
366
386
  }
367
387
  dragElement.classList.remove('k-cursor-grab');
368
388
  dragElement.classList.add('k-cursor-grabbing');
@@ -418,9 +438,13 @@ var TileVue2 = {
418
438
  x: 0,
419
439
  y: 0
420
440
  };
421
- if (this.$el) {
422
- this.$el.style.zIndex = '1';
423
- this.$el.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
441
+ if (this.element) {
442
+ this.element.style.zIndex = '1';
443
+ this.element.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
444
+ if (this.hintElement) {
445
+ this.hintElement.classList.remove('k-layout-item-hint-resize');
446
+ }
447
+ this.showHint = false;
424
448
  }
425
449
  var dragElement = this.dragElement();
426
450
  if (dragElement) {
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-layout',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1689689288,
8
+ publishDate: 1692244889,
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
  };
@@ -24,7 +24,7 @@ import * as Vue from 'vue';
24
24
  var allVue = Vue;
25
25
  var gh = allVue.h;
26
26
  var isV3 = allVue.version && allVue.version[0] === '3';
27
- import { canUseDOM, Draggable, getDefaultSlots } from '@progress/kendo-vue-common';
27
+ import { canUseDOM, classNames, Draggable, getDefaultSlots, getRef, setRef } from '@progress/kendo-vue-common';
28
28
  import { ResizeHandlers } from './ResizeHandlers.js';
29
29
  var tileDragClasses = ['k-card-title', 'k-card-body', 'k-tilelayout-item-body', 'k-tilelayout-item', 'k-tilelayout-item-header', 'k-resize-handle'];
30
30
  /**
@@ -36,6 +36,7 @@ var ANIMATION_DURATION = 200;
36
36
  */
37
37
  var TileVue2 = {
38
38
  name: 'KendoTile',
39
+ inheritAttrs: false,
39
40
  props: {
40
41
  defaultPosition: {
41
42
  required: true
@@ -97,17 +98,17 @@ var TileVue2 = {
97
98
  data: function data() {
98
99
  return {
99
100
  rtl: false,
100
- grabbed: false
101
+ grabbed: false,
102
+ showHint: false
101
103
  };
102
104
  },
103
105
  mounted: function mounted() {
104
106
  if (!this.$el) {
105
107
  return;
106
108
  }
107
- if (this.$el) {
108
- this.draggable = this.$refs.draggable;
109
- }
110
- if (getComputedStyle(this.$el).direction === 'rtl') {
109
+ this.element = this.$el.nodeType === 3 ? this.$el.nextElementSibling : this.$el;
110
+ this.draggable = this.$refs.draggable;
111
+ if (getComputedStyle(this.element).direction === 'rtl') {
111
112
  this.rtl = true;
112
113
  }
113
114
  },
@@ -126,6 +127,7 @@ var TileVue2 = {
126
127
  },
127
128
  updated: function updated() {
128
129
  var dragElement = this.dragElement();
130
+ this.hintElement = getRef(this, 'hintElement');
129
131
  if (!dragElement) {
130
132
  return;
131
133
  }
@@ -165,7 +167,7 @@ var TileVue2 = {
165
167
  return;
166
168
  }
167
169
  requestAnimationFrame(function () {
168
- var domNode = that.$el;
170
+ var domNode = that.element;
169
171
  if (!domNode) {
170
172
  return;
171
173
  }
@@ -198,7 +200,7 @@ var TileVue2 = {
198
200
  }
199
201
  var position = this.$props.defaultPosition;
200
202
  var resizable = this.$props.resizable;
201
- var itemStyles = __assign({
203
+ var hintItemStyles = __assign({
202
204
  gridColumnStart: position.col,
203
205
  gridColumnEnd: "span ".concat(position.colSpan),
204
206
  gridRowStart: position.row,
@@ -206,11 +208,18 @@ var TileVue2 = {
206
208
  outline: 'none',
207
209
  order: position.order
208
210
  }, this.$props.hintStyle);
211
+ var itemStyles = {
212
+ gridColumnStart: position.col,
213
+ gridColumnEnd: "span ".concat(position.colSpan),
214
+ gridRowStart: position.row,
215
+ gridRowEnd: "span ".concat(position.rowSpan),
216
+ order: position.order
217
+ };
209
218
  var card = h("div", {
210
219
  "class": this.wrapperClass,
211
- style: {
220
+ style: __assign({
212
221
  height: '100%'
213
- },
222
+ }, itemStyles),
214
223
  role: 'listitem',
215
224
  attrs: this.v3 ? undefined : {
216
225
  role: 'listitem',
@@ -269,10 +278,13 @@ var TileVue2 = {
269
278
  },
270
279
  rtl: this.rtl
271
280
  })]);
272
- return h("div", {
273
- style: itemStyles,
274
- "class": this.$props.hintClass
275
- }, [
281
+ var draggableHint = [this.showHint && h("div", {
282
+ ref: setRef(this, 'hintElement'),
283
+ style: __assign({
284
+ position: 'absolute'
285
+ }, hintItemStyles),
286
+ "class": classNames('k-layout-item-hint k-layout-item-hint-reorder', this.$props.hintClass)
287
+ }),
276
288
  // @ts-ignore function children
277
289
  h(Draggable, {
278
290
  ref: 'draggable',
@@ -286,7 +298,10 @@ var TileVue2 = {
286
298
  onPress: this.handlePress
287
299
  }, this.v3 ? function () {
288
300
  return [card];
289
- } : [card])]);
301
+ } : [card])];
302
+ return this.v3 ? draggableHint : h("div", {
303
+ style: itemStyles
304
+ }, [draggableHint]);
290
305
  },
291
306
  methods: {
292
307
  touchStart: function touchStart(e) {
@@ -306,7 +321,7 @@ var TileVue2 = {
306
321
  this.handleRelease();
307
322
  return;
308
323
  }
309
- if (!this.reorderable || !this.$el) {
324
+ if (!this.reorderable || !this.element) {
310
325
  return;
311
326
  }
312
327
  var x = e.clientX;
@@ -322,13 +337,17 @@ var TileVue2 = {
322
337
  }
323
338
  dragElement.style.height = "calc(100% + ".concat(dY, "px)");
324
339
  }
325
- this.$el.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
340
+ this.showHint = true;
341
+ if (this.hintElement) {
342
+ this.hintElement.classList.add('k-layout-item-hint-resize');
343
+ }
344
+ this.element.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
326
345
  if (this.preventDataOps) {
327
346
  return;
328
347
  }
329
348
  var col = 0;
330
349
  var row = 0;
331
- var wrapBox = this.$el.getBoundingClientRect();
350
+ var wrapBox = this.element.getBoundingClientRect();
332
351
  if (dX > wrapBox.width / this.$props.defaultPosition.colSpan / 3) {
333
352
  col = 1;
334
353
  }
@@ -360,9 +379,10 @@ var TileVue2 = {
360
379
  this.currentIgnoreDrag = true;
361
380
  return;
362
381
  }
363
- if (this.$el) {
364
- this.$el.style.zIndex = '10';
365
- this.$el.classList.add('k-layout-item-hint');
382
+ if (this.element) {
383
+ this.element.style.zIndex = '10';
384
+ this.element.classList.add('k-layout-item-hint');
385
+ this.showHint = true;
366
386
  }
367
387
  dragElement.classList.remove('k-cursor-grab');
368
388
  dragElement.classList.add('k-cursor-grabbing');
@@ -418,9 +438,13 @@ var TileVue2 = {
418
438
  x: 0,
419
439
  y: 0
420
440
  };
421
- if (this.$el) {
422
- this.$el.style.zIndex = '1';
423
- this.$el.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
441
+ if (this.element) {
442
+ this.element.style.zIndex = '1';
443
+ this.element.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
444
+ if (this.hintElement) {
445
+ this.hintElement.classList.remove('k-layout-item-hint-resize');
446
+ }
447
+ this.showHint = false;
424
448
  }
425
449
  var dragElement = this.dragElement();
426
450
  if (dragElement) {
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-layout',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1689689288,
11
+ publishDate: 1692244889,
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
  };
@@ -42,6 +42,7 @@ var ANIMATION_DURATION = 200;
42
42
  */
43
43
  var TileVue2 = {
44
44
  name: 'KendoTile',
45
+ inheritAttrs: false,
45
46
  props: {
46
47
  defaultPosition: {
47
48
  required: true
@@ -103,17 +104,17 @@ var TileVue2 = {
103
104
  data: function data() {
104
105
  return {
105
106
  rtl: false,
106
- grabbed: false
107
+ grabbed: false,
108
+ showHint: false
107
109
  };
108
110
  },
109
111
  mounted: function mounted() {
110
112
  if (!this.$el) {
111
113
  return;
112
114
  }
113
- if (this.$el) {
114
- this.draggable = this.$refs.draggable;
115
- }
116
- if (getComputedStyle(this.$el).direction === 'rtl') {
115
+ this.element = this.$el.nodeType === 3 ? this.$el.nextElementSibling : this.$el;
116
+ this.draggable = this.$refs.draggable;
117
+ if (getComputedStyle(this.element).direction === 'rtl') {
117
118
  this.rtl = true;
118
119
  }
119
120
  },
@@ -132,6 +133,7 @@ var TileVue2 = {
132
133
  },
133
134
  updated: function updated() {
134
135
  var dragElement = this.dragElement();
136
+ this.hintElement = (0, kendo_vue_common_1.getRef)(this, 'hintElement');
135
137
  if (!dragElement) {
136
138
  return;
137
139
  }
@@ -171,7 +173,7 @@ var TileVue2 = {
171
173
  return;
172
174
  }
173
175
  requestAnimationFrame(function () {
174
- var domNode = that.$el;
176
+ var domNode = that.element;
175
177
  if (!domNode) {
176
178
  return;
177
179
  }
@@ -204,7 +206,7 @@ var TileVue2 = {
204
206
  }
205
207
  var position = this.$props.defaultPosition;
206
208
  var resizable = this.$props.resizable;
207
- var itemStyles = __assign({
209
+ var hintItemStyles = __assign({
208
210
  gridColumnStart: position.col,
209
211
  gridColumnEnd: "span ".concat(position.colSpan),
210
212
  gridRowStart: position.row,
@@ -212,11 +214,18 @@ var TileVue2 = {
212
214
  outline: 'none',
213
215
  order: position.order
214
216
  }, this.$props.hintStyle);
217
+ var itemStyles = {
218
+ gridColumnStart: position.col,
219
+ gridColumnEnd: "span ".concat(position.colSpan),
220
+ gridRowStart: position.row,
221
+ gridRowEnd: "span ".concat(position.rowSpan),
222
+ order: position.order
223
+ };
215
224
  var card = h("div", {
216
225
  "class": this.wrapperClass,
217
- style: {
226
+ style: __assign({
218
227
  height: '100%'
219
- },
228
+ }, itemStyles),
220
229
  role: 'listitem',
221
230
  attrs: this.v3 ? undefined : {
222
231
  role: 'listitem',
@@ -275,10 +284,13 @@ var TileVue2 = {
275
284
  },
276
285
  rtl: this.rtl
277
286
  })]);
278
- return h("div", {
279
- style: itemStyles,
280
- "class": this.$props.hintClass
281
- }, [
287
+ var draggableHint = [this.showHint && h("div", {
288
+ ref: (0, kendo_vue_common_1.setRef)(this, 'hintElement'),
289
+ style: __assign({
290
+ position: 'absolute'
291
+ }, hintItemStyles),
292
+ "class": (0, kendo_vue_common_1.classNames)('k-layout-item-hint k-layout-item-hint-reorder', this.$props.hintClass)
293
+ }),
282
294
  // @ts-ignore function children
283
295
  h(kendo_vue_common_1.Draggable, {
284
296
  ref: 'draggable',
@@ -292,7 +304,10 @@ var TileVue2 = {
292
304
  onPress: this.handlePress
293
305
  }, this.v3 ? function () {
294
306
  return [card];
295
- } : [card])]);
307
+ } : [card])];
308
+ return this.v3 ? draggableHint : h("div", {
309
+ style: itemStyles
310
+ }, [draggableHint]);
296
311
  },
297
312
  methods: {
298
313
  touchStart: function touchStart(e) {
@@ -312,7 +327,7 @@ var TileVue2 = {
312
327
  this.handleRelease();
313
328
  return;
314
329
  }
315
- if (!this.reorderable || !this.$el) {
330
+ if (!this.reorderable || !this.element) {
316
331
  return;
317
332
  }
318
333
  var x = e.clientX;
@@ -328,13 +343,17 @@ var TileVue2 = {
328
343
  }
329
344
  dragElement.style.height = "calc(100% + ".concat(dY, "px)");
330
345
  }
331
- this.$el.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
346
+ this.showHint = true;
347
+ if (this.hintElement) {
348
+ this.hintElement.classList.add('k-layout-item-hint-resize');
349
+ }
350
+ this.element.classList.add('k-layout-item-hint', 'k-layout-item-hint-resize');
332
351
  if (this.preventDataOps) {
333
352
  return;
334
353
  }
335
354
  var col = 0;
336
355
  var row = 0;
337
- var wrapBox = this.$el.getBoundingClientRect();
356
+ var wrapBox = this.element.getBoundingClientRect();
338
357
  if (dX > wrapBox.width / this.$props.defaultPosition.colSpan / 3) {
339
358
  col = 1;
340
359
  }
@@ -366,9 +385,10 @@ var TileVue2 = {
366
385
  this.currentIgnoreDrag = true;
367
386
  return;
368
387
  }
369
- if (this.$el) {
370
- this.$el.style.zIndex = '10';
371
- this.$el.classList.add('k-layout-item-hint');
388
+ if (this.element) {
389
+ this.element.style.zIndex = '10';
390
+ this.element.classList.add('k-layout-item-hint');
391
+ this.showHint = true;
372
392
  }
373
393
  dragElement.classList.remove('k-cursor-grab');
374
394
  dragElement.classList.add('k-cursor-grabbing');
@@ -424,9 +444,13 @@ var TileVue2 = {
424
444
  x: 0,
425
445
  y: 0
426
446
  };
427
- if (this.$el) {
428
- this.$el.style.zIndex = '1';
429
- this.$el.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
447
+ if (this.element) {
448
+ this.element.style.zIndex = '1';
449
+ this.element.classList.remove('k-layout-item-hint', 'k-layout-item-hint-resize');
450
+ if (this.hintElement) {
451
+ this.hintElement.classList.remove('k-layout-item-hint-resize');
452
+ }
453
+ this.showHint = false;
430
454
  }
431
455
  var dragElement = this.dragElement();
432
456
  if (dragElement) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-layout",
3
3
  "description": "Kendo UI for Vue Layouts package",
4
- "version": "3.12.0",
4
+ "version": "3.12.1-dev.202308170413",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -45,9 +45,9 @@
45
45
  "vue": "^2.6.12 || ^3.0.2"
46
46
  },
47
47
  "dependencies": {
48
- "@progress/kendo-vue-animation": "3.12.0",
49
- "@progress/kendo-vue-common": "3.12.0",
50
- "@progress/kendo-vue-popup": "3.12.0"
48
+ "@progress/kendo-vue-animation": "3.12.1-dev.202308170413",
49
+ "@progress/kendo-vue-common": "3.12.1-dev.202308170413",
50
+ "@progress/kendo-vue-popup": "3.12.1-dev.202308170413"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@progress/kendo-data-query": "^1.5.0",
@@ -55,15 +55,15 @@
55
55
  "@progress/kendo-drawing": "^1.8.0",
56
56
  "@progress/kendo-licensing": "^1.3.0",
57
57
  "@progress/kendo-svg-icons": "^1.0.0",
58
- "@progress/kendo-vue-buttons": "3.12.0",
59
- "@progress/kendo-vue-charts": "3.12.0",
60
- "@progress/kendo-vue-dateinputs": "3.12.0",
61
- "@progress/kendo-vue-dropdowns": "3.12.0",
62
- "@progress/kendo-vue-grid": "3.12.0",
63
- "@progress/kendo-vue-indicators": "3.12.0",
64
- "@progress/kendo-vue-inputs": "3.12.0",
65
- "@progress/kendo-vue-intl": "3.12.0",
66
- "@progress/kendo-vue-progressbars": "3.12.0"
58
+ "@progress/kendo-vue-buttons": "3.12.1-dev.202308170413",
59
+ "@progress/kendo-vue-charts": "3.12.1-dev.202308170413",
60
+ "@progress/kendo-vue-dateinputs": "3.12.1-dev.202308170413",
61
+ "@progress/kendo-vue-dropdowns": "3.12.1-dev.202308170413",
62
+ "@progress/kendo-vue-grid": "3.12.1-dev.202308170413",
63
+ "@progress/kendo-vue-indicators": "3.12.1-dev.202308170413",
64
+ "@progress/kendo-vue-inputs": "3.12.1-dev.202308170413",
65
+ "@progress/kendo-vue-intl": "3.12.1-dev.202308170413",
66
+ "@progress/kendo-vue-progressbars": "3.12.1-dev.202308170413"
67
67
  },
68
68
  "@progress": {
69
69
  "friendlyName": "Layouts",