@progress/kendo-vue-layout 3.1.4 → 3.2.0-dev.202204120815

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: 1649223631,
8
+ publishDate: 1649750860,
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
  };
@@ -41,6 +41,11 @@ import { NavigationAction } from './interfaces/NavigationAction'; // tslint:enab
41
41
 
42
42
  var PanelBarVue2 = {
43
43
  name: 'KendoPanelBar',
44
+ // @ts-ignore
45
+ emits: {
46
+ select: null,
47
+ keydown: null
48
+ },
44
49
  props: {
45
50
  animation: {
46
51
  type: Boolean,
@@ -49,7 +54,10 @@ var PanelBarVue2 = {
49
54
  items: Array,
50
55
  dir: String,
51
56
  selected: String,
52
- expanded: Array,
57
+ expanded: {
58
+ type: Array,
59
+ default: undefined
60
+ },
53
61
  focused: String,
54
62
  expandMode: {
55
63
  type: String,
@@ -81,7 +89,7 @@ var PanelBarVue2 = {
81
89
  return selected;
82
90
  },
83
91
  expandedItems: function expandedItems() {
84
- var expanded = this.$props.isControlled ? this.$props.expanded || [] : this.currentExpanded;
92
+ var expanded = this.$props.expanded !== undefined ? this.$props.expanded || [] : this.currentExpanded;
85
93
  return expanded;
86
94
  },
87
95
  computedItems: function computedItems() {
@@ -138,9 +146,13 @@ var PanelBarVue2 = {
138
146
  "class": className,
139
147
  "aria-activedescendant": this.activeDescendant
140
148
  }, [this.computedItems.map(function (item) {
141
- return h(PanelBarItem, __assign({
142
- props: this.v3 ? undefined : item
143
- }, item));
149
+ return h(PanelBarItem, __assign(__assign({
150
+ props: this.v3 ? undefined : __assign(__assign({}, item), {
151
+ item: item
152
+ })
153
+ }, item), {
154
+ item: item
155
+ }));
144
156
  }, this)]);
145
157
  },
146
158
  methods: {
@@ -160,37 +172,39 @@ var PanelBarVue2 = {
160
172
  }
161
173
  });
162
174
 
163
- switch (this.expandMode) {
164
- case 'single':
165
- newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey, [selectedChild.uniquePrivateKey]);
166
-
167
- if (isArrayEqual(this.expandedItems, newExpanded)) {
168
- if (selectedChild.parentUniquePrivateKey) {
169
- newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey);
170
- } else {
171
- newExpanded = [];
175
+ if (selectedChild) {
176
+ switch (this.expandMode) {
177
+ case 'single':
178
+ newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey, [selectedChild.uniquePrivateKey]);
179
+
180
+ if (isArrayEqual(this.expandedItems, newExpanded)) {
181
+ if (selectedChild.parentUniquePrivateKey) {
182
+ newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey);
183
+ } else {
184
+ newExpanded = [];
185
+ }
172
186
  }
173
- }
174
187
 
175
- break;
188
+ break;
176
189
 
177
- case 'multiple':
178
- newExpanded = this.expandedItems.slice();
179
- var index = newExpanded.indexOf(selectedChild.uniquePrivateKey);
180
- index === -1 ? newExpanded.push(selectedChild.uniquePrivateKey) : newExpanded.splice(index, 1);
181
- break;
190
+ case 'multiple':
191
+ newExpanded = this.expandedItems.slice();
192
+ var index = newExpanded.indexOf(selectedChild.uniquePrivateKey);
193
+ index === -1 ? newExpanded.push(selectedChild.uniquePrivateKey) : newExpanded.splice(index, 1);
194
+ break;
182
195
 
183
- default:
184
- newExpanded = this.expandedItems.slice();
185
- break;
186
- }
196
+ default:
197
+ newExpanded = this.expandedItems.slice();
198
+ break;
199
+ }
187
200
 
188
- this.currentSelected = selectedChild.uniquePrivateKey;
189
- this.currentExpanded = newExpanded;
190
- this.$emit('select', {
191
- target: selectedChild,
192
- expandedItems: newExpanded
193
- });
201
+ this.currentSelected = selectedChild.uniquePrivateKey;
202
+ this.currentExpanded = newExpanded;
203
+ this.$emit('select', {
204
+ target: selectedChild,
205
+ expandedItems: newExpanded
206
+ });
207
+ }
194
208
  },
195
209
  onFocus: function onFocus(event, step) {
196
210
  var _this = this;
@@ -289,6 +303,8 @@ var PanelBarVue2 = {
289
303
  this.onNavigate(event, action);
290
304
  }
291
305
  }
306
+
307
+ this.$emit('keydown', event);
292
308
  }
293
309
  }
294
310
  };
@@ -50,6 +50,7 @@ var PanelBarGroupVue2 = {
50
50
  render: function render(createElement) {
51
51
  var h = gh || createElement;
52
52
  var _a = this.$props,
53
+ item = _a.item,
53
54
  items = _a.items,
54
55
  uniquePrivateKey = _a.uniquePrivateKey,
55
56
  disabled = _a.disabled,
@@ -77,10 +78,14 @@ var PanelBarGroupVue2 = {
77
78
  style: {
78
79
  display: keepItemsMounted ? this.$data.show ? 'block' : 'none' : 'block'
79
80
  }
80
- }, [items.map(function (item) {
81
- return h(PanelBarItem, __assign({
82
- props: this.v3 ? undefined : item
83
- }, item));
81
+ }, [items.map(function (currentItem) {
82
+ return h(PanelBarItem, __assign(__assign({
83
+ props: this.v3 ? undefined : __assign(__assign({}, currentItem), {
84
+ item: item
85
+ })
86
+ }, currentItem), {
87
+ item: item
88
+ }));
84
89
  }, this)]) : this.$props.content ? h("div", {
85
90
  "class": "k-panelbar-content k-content"
86
91
  }, [content]) : null : null;
@@ -24,6 +24,7 @@ import { PanelBarGroup } from './PanelBarGroup'; // tslint:enable:max-line-lengt
24
24
  var PanelBarItemVue2 = {
25
25
  name: 'KendoPanelBarItem',
26
26
  props: {
27
+ item: Object,
27
28
  items: Array,
28
29
  animation: Boolean,
29
30
  expanded: Boolean,
@@ -36,7 +37,7 @@ var PanelBarItemVue2 = {
36
37
  return 'Untitled';
37
38
  }
38
39
  },
39
- id: String,
40
+ id: [String, Number],
40
41
  focused: Boolean,
41
42
  keepItemsMounted: Boolean,
42
43
  uniquePrivateKey: String,
@@ -68,6 +69,8 @@ var PanelBarItemVue2 = {
68
69
  var h = gh || createElement;
69
70
  var _b = this.$props,
70
71
  id = _b.id,
72
+ item = _b.item,
73
+ icon = _b.icon,
71
74
  items = _b.items,
72
75
  content = _b.content,
73
76
  title = _b.title,
@@ -89,7 +92,7 @@ var PanelBarItemVue2 = {
89
92
  }, "k-level-" + level, className);
90
93
  var panelBarLinkClassName = classNames('k-link', {
91
94
  'k-state-selected': !disabled && selected,
92
- 'k-state-focus': !disabled && focused,
95
+ 'k-state-focus': focused,
93
96
  'k-state-disabled': disabled
94
97
  }, headerClassName);
95
98
  var panelBarItemArrowClassName = classNames('k-panelbar-toggle', 'k-icon', (_a = {}, _a['k-i-arrow-chevron-up'] = expanded && hasContent, _a['k-panelbar-collapse'] = expanded && hasContent, _a['k-i-arrow-chevron-down'] = !expanded && hasContent, _a['k-panelbar-expand'] = !expanded && hasContent, _a));
@@ -127,7 +130,7 @@ var PanelBarItemVue2 = {
127
130
  return null;
128
131
  };
129
132
 
130
- var icon = iconElement.call(this);
133
+ var iconRender = iconElement.call(this);
131
134
  var arrow = !disabled && (items || content) ? h("span", {
132
135
  "class": panelBarItemArrowClassName
133
136
  }) : null;
@@ -135,7 +138,7 @@ var PanelBarItemVue2 = {
135
138
  items: items,
136
139
  attrs: this.v3 ? undefined : {
137
140
  items: items,
138
- item: __assign({}, this.$props),
141
+ item: item,
139
142
  content: content,
140
143
  uniquePrivateKey: uniquePrivateKey,
141
144
  disabled: disabled,
@@ -143,7 +146,7 @@ var PanelBarItemVue2 = {
143
146
  animation: animation,
144
147
  keepItemsMounted: keepItemsMounted
145
148
  },
146
- item: __assign({}, this.$props),
149
+ item: item,
147
150
  content: content,
148
151
  uniquePrivateKey: uniquePrivateKey,
149
152
  disabled: disabled,
@@ -179,7 +182,7 @@ var PanelBarItemVue2 = {
179
182
  on: this.v3 ? undefined : {
180
183
  "click": this.handleItemClick
181
184
  }
182
- }, [icon, this.$props.header ? header : h("span", {
185
+ }, [iconRender, this.$props.header ? header : h("span", {
183
186
  "class": 'k-panelbar-item-text'
184
187
  }, [title]), arrow]), group]);
185
188
  },
@@ -49,7 +49,7 @@ export interface PanelBarItemProps {
49
49
  /**
50
50
  * Allows the component to set the `id` property to each item. If not set, a default `id` is applied.
51
51
  */
52
- id?: string;
52
+ id?: string | number;
53
53
  /**
54
54
  * Sets the initial focused state of the PanelBarItem. Controlled by the PanelBar component.
55
55
  */
@@ -78,4 +78,8 @@ export interface PanelBarItemProps {
78
78
  * @hidden
79
79
  */
80
80
  keepItemsMounted?: boolean;
81
+ /**
82
+ * @hidden
83
+ */
84
+ item?: any;
81
85
  }
@@ -151,7 +151,7 @@ export var getInitialState = function getInitialState(props, expandMode, result,
151
151
  */
152
152
 
153
153
  var getId = function getId(child, parentPrivateKey, idx) {
154
- return child && child.props && child.props.id ? child.props.id : parentPrivateKey.length ? parentPrivateKey[parentPrivateKey.length - 1] + ("." + idx) : "." + idx;
154
+ return child && child && child.id ? child.id : parentPrivateKey.length ? parentPrivateKey[parentPrivateKey.length - 1] + ("." + idx) : "." + idx;
155
155
  };
156
156
  /**
157
157
  * @hidden
@@ -204,7 +204,7 @@ export function flatVisibleChildren(children, flattenVisibleChildren) {
204
204
  }
205
205
 
206
206
  children.forEach(function (child) {
207
- if (child && !child.disabled && (child.expanded || child.parentExpanded)) {
207
+ if (child && (child.expanded || child.parentExpanded)) {
208
208
  flattenVisibleChildren.push(child);
209
209
 
210
210
  if (child.items) {
@@ -232,7 +232,7 @@ var SplitterBarVue2 = {
232
232
  var keyCode = event && event.keyCode;
233
233
  var isHorizontal = this.isHorizontal;
234
234
  var index = this.$props.index;
235
- var element = this.$el; // this.draggable && this.draggable.element;
235
+ var element = this.draggable && this.draggable.element;
236
236
 
237
237
  var onKeyboardResize = function onKeyboardResize(el, idx, offset) {
238
238
  event.preventDefault();
@@ -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: 1649223631,
11
+ publishDate: 1649750860,
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
  };
@@ -55,6 +55,11 @@ var NavigationAction_1 = require("./interfaces/NavigationAction"); // tslint:ena
55
55
 
56
56
  var PanelBarVue2 = {
57
57
  name: 'KendoPanelBar',
58
+ // @ts-ignore
59
+ emits: {
60
+ select: null,
61
+ keydown: null
62
+ },
58
63
  props: {
59
64
  animation: {
60
65
  type: Boolean,
@@ -63,7 +68,10 @@ var PanelBarVue2 = {
63
68
  items: Array,
64
69
  dir: String,
65
70
  selected: String,
66
- expanded: Array,
71
+ expanded: {
72
+ type: Array,
73
+ default: undefined
74
+ },
67
75
  focused: String,
68
76
  expandMode: {
69
77
  type: String,
@@ -95,7 +103,7 @@ var PanelBarVue2 = {
95
103
  return selected;
96
104
  },
97
105
  expandedItems: function expandedItems() {
98
- var expanded = this.$props.isControlled ? this.$props.expanded || [] : this.currentExpanded;
106
+ var expanded = this.$props.expanded !== undefined ? this.$props.expanded || [] : this.currentExpanded;
99
107
  return expanded;
100
108
  },
101
109
  computedItems: function computedItems() {
@@ -152,9 +160,13 @@ var PanelBarVue2 = {
152
160
  "class": className,
153
161
  "aria-activedescendant": this.activeDescendant
154
162
  }, [this.computedItems.map(function (item) {
155
- return h(PanelBarItem_1.PanelBarItem, __assign({
156
- props: this.v3 ? undefined : item
157
- }, item));
163
+ return h(PanelBarItem_1.PanelBarItem, __assign(__assign({
164
+ props: this.v3 ? undefined : __assign(__assign({}, item), {
165
+ item: item
166
+ })
167
+ }, item), {
168
+ item: item
169
+ }));
158
170
  }, this)]);
159
171
  },
160
172
  methods: {
@@ -174,37 +186,39 @@ var PanelBarVue2 = {
174
186
  }
175
187
  });
176
188
 
177
- switch (this.expandMode) {
178
- case 'single':
179
- newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey, [selectedChild.uniquePrivateKey]);
180
-
181
- if (util_1.isArrayEqual(this.expandedItems, newExpanded)) {
182
- if (selectedChild.parentUniquePrivateKey) {
183
- newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey);
184
- } else {
185
- newExpanded = [];
189
+ if (selectedChild) {
190
+ switch (this.expandMode) {
191
+ case 'single':
192
+ newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey, [selectedChild.uniquePrivateKey]);
193
+
194
+ if (util_1.isArrayEqual(this.expandedItems, newExpanded)) {
195
+ if (selectedChild.parentUniquePrivateKey) {
196
+ newExpanded = __spreadArrays(selectedChild.parentUniquePrivateKey);
197
+ } else {
198
+ newExpanded = [];
199
+ }
186
200
  }
187
- }
188
201
 
189
- break;
202
+ break;
190
203
 
191
- case 'multiple':
192
- newExpanded = this.expandedItems.slice();
193
- var index = newExpanded.indexOf(selectedChild.uniquePrivateKey);
194
- index === -1 ? newExpanded.push(selectedChild.uniquePrivateKey) : newExpanded.splice(index, 1);
195
- break;
204
+ case 'multiple':
205
+ newExpanded = this.expandedItems.slice();
206
+ var index = newExpanded.indexOf(selectedChild.uniquePrivateKey);
207
+ index === -1 ? newExpanded.push(selectedChild.uniquePrivateKey) : newExpanded.splice(index, 1);
208
+ break;
196
209
 
197
- default:
198
- newExpanded = this.expandedItems.slice();
199
- break;
200
- }
210
+ default:
211
+ newExpanded = this.expandedItems.slice();
212
+ break;
213
+ }
201
214
 
202
- this.currentSelected = selectedChild.uniquePrivateKey;
203
- this.currentExpanded = newExpanded;
204
- this.$emit('select', {
205
- target: selectedChild,
206
- expandedItems: newExpanded
207
- });
215
+ this.currentSelected = selectedChild.uniquePrivateKey;
216
+ this.currentExpanded = newExpanded;
217
+ this.$emit('select', {
218
+ target: selectedChild,
219
+ expandedItems: newExpanded
220
+ });
221
+ }
208
222
  },
209
223
  onFocus: function onFocus(event, step) {
210
224
  var _this = this;
@@ -303,6 +317,8 @@ var PanelBarVue2 = {
303
317
  this.onNavigate(event, action);
304
318
  }
305
319
  }
320
+
321
+ this.$emit('keydown', event);
306
322
  }
307
323
  }
308
324
  };
@@ -61,6 +61,7 @@ var PanelBarGroupVue2 = {
61
61
  render: function render(createElement) {
62
62
  var h = gh || createElement;
63
63
  var _a = this.$props,
64
+ item = _a.item,
64
65
  items = _a.items,
65
66
  uniquePrivateKey = _a.uniquePrivateKey,
66
67
  disabled = _a.disabled,
@@ -88,10 +89,14 @@ var PanelBarGroupVue2 = {
88
89
  style: {
89
90
  display: keepItemsMounted ? this.$data.show ? 'block' : 'none' : 'block'
90
91
  }
91
- }, [items.map(function (item) {
92
- return h(PanelBarItem_1.PanelBarItem, __assign({
93
- props: this.v3 ? undefined : item
94
- }, item));
92
+ }, [items.map(function (currentItem) {
93
+ return h(PanelBarItem_1.PanelBarItem, __assign(__assign({
94
+ props: this.v3 ? undefined : __assign(__assign({}, currentItem), {
95
+ item: item
96
+ })
97
+ }, currentItem), {
98
+ item: item
99
+ }));
95
100
  }, this)]) : this.$props.content ? h("div", {
96
101
  "class": "k-panelbar-content k-content"
97
102
  }, [content]) : null : null;
@@ -34,6 +34,7 @@ var PanelBarGroup_1 = require("./PanelBarGroup"); // tslint:enable:max-line-leng
34
34
  var PanelBarItemVue2 = {
35
35
  name: 'KendoPanelBarItem',
36
36
  props: {
37
+ item: Object,
37
38
  items: Array,
38
39
  animation: Boolean,
39
40
  expanded: Boolean,
@@ -46,7 +47,7 @@ var PanelBarItemVue2 = {
46
47
  return 'Untitled';
47
48
  }
48
49
  },
49
- id: String,
50
+ id: [String, Number],
50
51
  focused: Boolean,
51
52
  keepItemsMounted: Boolean,
52
53
  uniquePrivateKey: String,
@@ -78,6 +79,8 @@ var PanelBarItemVue2 = {
78
79
  var h = gh || createElement;
79
80
  var _b = this.$props,
80
81
  id = _b.id,
82
+ item = _b.item,
83
+ icon = _b.icon,
81
84
  items = _b.items,
82
85
  content = _b.content,
83
86
  title = _b.title,
@@ -99,7 +102,7 @@ var PanelBarItemVue2 = {
99
102
  }, "k-level-" + level, className);
100
103
  var panelBarLinkClassName = kendo_vue_common_1.classNames('k-link', {
101
104
  'k-state-selected': !disabled && selected,
102
- 'k-state-focus': !disabled && focused,
105
+ 'k-state-focus': focused,
103
106
  'k-state-disabled': disabled
104
107
  }, headerClassName);
105
108
  var panelBarItemArrowClassName = kendo_vue_common_1.classNames('k-panelbar-toggle', 'k-icon', (_a = {}, _a['k-i-arrow-chevron-up'] = expanded && hasContent, _a['k-panelbar-collapse'] = expanded && hasContent, _a['k-i-arrow-chevron-down'] = !expanded && hasContent, _a['k-panelbar-expand'] = !expanded && hasContent, _a));
@@ -137,7 +140,7 @@ var PanelBarItemVue2 = {
137
140
  return null;
138
141
  };
139
142
 
140
- var icon = iconElement.call(this);
143
+ var iconRender = iconElement.call(this);
141
144
  var arrow = !disabled && (items || content) ? h("span", {
142
145
  "class": panelBarItemArrowClassName
143
146
  }) : null;
@@ -145,7 +148,7 @@ var PanelBarItemVue2 = {
145
148
  items: items,
146
149
  attrs: this.v3 ? undefined : {
147
150
  items: items,
148
- item: __assign({}, this.$props),
151
+ item: item,
149
152
  content: content,
150
153
  uniquePrivateKey: uniquePrivateKey,
151
154
  disabled: disabled,
@@ -153,7 +156,7 @@ var PanelBarItemVue2 = {
153
156
  animation: animation,
154
157
  keepItemsMounted: keepItemsMounted
155
158
  },
156
- item: __assign({}, this.$props),
159
+ item: item,
157
160
  content: content,
158
161
  uniquePrivateKey: uniquePrivateKey,
159
162
  disabled: disabled,
@@ -189,7 +192,7 @@ var PanelBarItemVue2 = {
189
192
  on: this.v3 ? undefined : {
190
193
  "click": this.handleItemClick
191
194
  }
192
- }, [icon, this.$props.header ? header : h("span", {
195
+ }, [iconRender, this.$props.header ? header : h("span", {
193
196
  "class": 'k-panelbar-item-text'
194
197
  }, [title]), arrow]), group]);
195
198
  },
@@ -49,7 +49,7 @@ export interface PanelBarItemProps {
49
49
  /**
50
50
  * Allows the component to set the `id` property to each item. If not set, a default `id` is applied.
51
51
  */
52
- id?: string;
52
+ id?: string | number;
53
53
  /**
54
54
  * Sets the initial focused state of the PanelBarItem. Controlled by the PanelBar component.
55
55
  */
@@ -78,4 +78,8 @@ export interface PanelBarItemProps {
78
78
  * @hidden
79
79
  */
80
80
  keepItemsMounted?: boolean;
81
+ /**
82
+ * @hidden
83
+ */
84
+ item?: any;
81
85
  }
@@ -162,7 +162,7 @@ exports.getInitialState = function (props, expandMode, result, parentExpanded, p
162
162
 
163
163
 
164
164
  var getId = function getId(child, parentPrivateKey, idx) {
165
- return child && child.props && child.props.id ? child.props.id : parentPrivateKey.length ? parentPrivateKey[parentPrivateKey.length - 1] + ("." + idx) : "." + idx;
165
+ return child && child && child.id ? child.id : parentPrivateKey.length ? parentPrivateKey[parentPrivateKey.length - 1] + ("." + idx) : "." + idx;
166
166
  };
167
167
  /**
168
168
  * @hidden
@@ -219,7 +219,7 @@ function flatVisibleChildren(children, flattenVisibleChildren) {
219
219
  }
220
220
 
221
221
  children.forEach(function (child) {
222
- if (child && !child.disabled && (child.expanded || child.parentExpanded)) {
222
+ if (child && (child.expanded || child.parentExpanded)) {
223
223
  flattenVisibleChildren.push(child);
224
224
 
225
225
  if (child.items) {
@@ -241,7 +241,7 @@ var SplitterBarVue2 = {
241
241
  var keyCode = event && event.keyCode;
242
242
  var isHorizontal = this.isHorizontal;
243
243
  var index = this.$props.index;
244
- var element = this.$el; // this.draggable && this.draggable.element;
244
+ var element = this.draggable && this.draggable.element;
245
245
 
246
246
  var onKeyboardResize = function onKeyboardResize(el, idx, offset) {
247
247
  event.preventDefault();
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.1.4",
4
+ "version": "3.2.0-dev.202204120815",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-vue.git"
@@ -37,21 +37,21 @@
37
37
  "vue": "^2.6.12 || ^3.0.2"
38
38
  },
39
39
  "dependencies": {
40
- "@progress/kendo-vue-animation": "3.1.4",
41
- "@progress/kendo-vue-common": "3.1.4",
42
- "@progress/kendo-vue-popup": "3.1.4"
40
+ "@progress/kendo-vue-animation": "3.2.0-dev.202204120815",
41
+ "@progress/kendo-vue-common": "3.2.0-dev.202204120815",
42
+ "@progress/kendo-vue-popup": "3.2.0-dev.202204120815"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@progress/kendo-data-query": "^1.5.0",
46
46
  "@progress/kendo-date-math": "^1.5.1",
47
47
  "@progress/kendo-drawing": "^1.8.0",
48
48
  "@progress/kendo-licensing": "^1.0.1",
49
- "@progress/kendo-vue-buttons": "3.1.4",
50
- "@progress/kendo-vue-dateinputs": "3.1.4",
51
- "@progress/kendo-vue-dropdowns": "3.1.4",
52
- "@progress/kendo-vue-inputs": "3.1.4",
53
- "@progress/kendo-vue-intl": "3.1.4",
54
- "@progress/kendo-vue-progressbars": "3.1.4"
49
+ "@progress/kendo-vue-buttons": "3.2.0-dev.202204120815",
50
+ "@progress/kendo-vue-dateinputs": "3.2.0-dev.202204120815",
51
+ "@progress/kendo-vue-dropdowns": "3.2.0-dev.202204120815",
52
+ "@progress/kendo-vue-inputs": "3.2.0-dev.202204120815",
53
+ "@progress/kendo-vue-intl": "3.2.0-dev.202204120815",
54
+ "@progress/kendo-vue-progressbars": "3.2.0-dev.202204120815"
55
55
  },
56
56
  "@progress": {
57
57
  "friendlyName": "Layouts",