@progress/kendo-vue-layout 3.7.4-dev.202211280833 → 3.7.4-dev.202212020747
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.
- package/dist/cdn/js/kendo-vue-layout.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tilelayout/Tile.js +5 -2
- package/dist/es/tilelayout/TileLayout.js +2 -6
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/tilelayout/Tile.js +5 -2
- package/dist/esm/tilelayout/TileLayout.js +2 -6
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tilelayout/Tile.js +5 -2
- package/dist/npm/tilelayout/TileLayout.js +2 -6
- package/package.json +14 -14
|
@@ -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:
|
|
8
|
+
publishDate: 1669966527,
|
|
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
|
};
|
|
@@ -193,7 +193,7 @@ var TileVue2 = {
|
|
|
193
193
|
style: {
|
|
194
194
|
height: '100%'
|
|
195
195
|
}
|
|
196
|
-
}, [defaultSlots, resizable !== 'vertical' && h(ResizeHandlers, {
|
|
196
|
+
}, [defaultSlots, resizable && resizable !== 'vertical' && h(ResizeHandlers, {
|
|
197
197
|
onPress: this.handlePress,
|
|
198
198
|
on: this.v3 ? undefined : {
|
|
199
199
|
"press": this.handlePress,
|
|
@@ -206,7 +206,7 @@ var TileVue2 = {
|
|
|
206
206
|
rtl: this.rtl
|
|
207
207
|
},
|
|
208
208
|
rtl: this.rtl
|
|
209
|
-
}), resizable !== 'horizontal' && h(ResizeHandlers, {
|
|
209
|
+
}), resizable && resizable !== 'horizontal' && h(ResizeHandlers, {
|
|
210
210
|
onPress: this.handlePress,
|
|
211
211
|
on: this.v3 ? undefined : {
|
|
212
212
|
"press": this.handlePress,
|
|
@@ -365,6 +365,9 @@ var TileVue2 = {
|
|
|
365
365
|
this.$emit('update', this.$props.index, row, this.rtl ? -col : col, 0, 0);
|
|
366
366
|
},
|
|
367
367
|
handleRelease: function handleRelease() {
|
|
368
|
+
if (!this.reorderable) {
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
368
371
|
this.dragging = this.resizing = false;
|
|
369
372
|
this.currentTranslate = {
|
|
370
373
|
x: 0,
|
|
@@ -165,18 +165,14 @@ var TileLayoutVue2 = {
|
|
|
165
165
|
hintStyle: tile.hintStyle,
|
|
166
166
|
ignoreDrag: this.$props.ignoreDrag
|
|
167
167
|
}, this.v3 ? function () {
|
|
168
|
-
return [tile.item ? {
|
|
169
|
-
itemContent: itemContent
|
|
170
|
-
} : [h("div", {
|
|
168
|
+
return [tile.item ? itemContent : [h("div", {
|
|
171
169
|
"class": "k-tilelayout-item-header k-card-header"
|
|
172
170
|
}, [tile.header ? headerContent : h("h5", {
|
|
173
171
|
"class": 'k-card-title'
|
|
174
172
|
}, [tile.headerText])]), h("div", {
|
|
175
173
|
"class": 'k-tilelayout-item-body k-card-body'
|
|
176
174
|
}, [tile.body ? bodyContent : tile.bodyText])]];
|
|
177
|
-
} : [tile.item ? {
|
|
178
|
-
itemContent: itemContent
|
|
179
|
-
} : [h("div", {
|
|
175
|
+
} : [tile.item ? itemContent : [h("div", {
|
|
180
176
|
"class": "k-tilelayout-item-header k-card-header"
|
|
181
177
|
}, [tile.header ? headerContent : h("h5", {
|
|
182
178
|
"class": 'k-card-title'
|
|
@@ -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:
|
|
8
|
+
publishDate: 1669966527,
|
|
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
|
};
|
|
@@ -193,7 +193,7 @@ var TileVue2 = {
|
|
|
193
193
|
style: {
|
|
194
194
|
height: '100%'
|
|
195
195
|
}
|
|
196
|
-
}, [defaultSlots, resizable !== 'vertical' && h(ResizeHandlers, {
|
|
196
|
+
}, [defaultSlots, resizable && resizable !== 'vertical' && h(ResizeHandlers, {
|
|
197
197
|
onPress: this.handlePress,
|
|
198
198
|
on: this.v3 ? undefined : {
|
|
199
199
|
"press": this.handlePress,
|
|
@@ -206,7 +206,7 @@ var TileVue2 = {
|
|
|
206
206
|
rtl: this.rtl
|
|
207
207
|
},
|
|
208
208
|
rtl: this.rtl
|
|
209
|
-
}), resizable !== 'horizontal' && h(ResizeHandlers, {
|
|
209
|
+
}), resizable && resizable !== 'horizontal' && h(ResizeHandlers, {
|
|
210
210
|
onPress: this.handlePress,
|
|
211
211
|
on: this.v3 ? undefined : {
|
|
212
212
|
"press": this.handlePress,
|
|
@@ -365,6 +365,9 @@ var TileVue2 = {
|
|
|
365
365
|
this.$emit('update', this.$props.index, row, this.rtl ? -col : col, 0, 0);
|
|
366
366
|
},
|
|
367
367
|
handleRelease: function handleRelease() {
|
|
368
|
+
if (!this.reorderable) {
|
|
369
|
+
return;
|
|
370
|
+
}
|
|
368
371
|
this.dragging = this.resizing = false;
|
|
369
372
|
this.currentTranslate = {
|
|
370
373
|
x: 0,
|
|
@@ -165,18 +165,14 @@ var TileLayoutVue2 = {
|
|
|
165
165
|
hintStyle: tile.hintStyle,
|
|
166
166
|
ignoreDrag: this.$props.ignoreDrag
|
|
167
167
|
}, this.v3 ? function () {
|
|
168
|
-
return [tile.item ? {
|
|
169
|
-
itemContent: itemContent
|
|
170
|
-
} : [h("div", {
|
|
168
|
+
return [tile.item ? itemContent : [h("div", {
|
|
171
169
|
"class": "k-tilelayout-item-header k-card-header"
|
|
172
170
|
}, [tile.header ? headerContent : h("h5", {
|
|
173
171
|
"class": 'k-card-title'
|
|
174
172
|
}, [tile.headerText])]), h("div", {
|
|
175
173
|
"class": 'k-tilelayout-item-body k-card-body'
|
|
176
174
|
}, [tile.body ? bodyContent : tile.bodyText])]];
|
|
177
|
-
} : [tile.item ? {
|
|
178
|
-
itemContent: itemContent
|
|
179
|
-
} : [h("div", {
|
|
175
|
+
} : [tile.item ? itemContent : [h("div", {
|
|
180
176
|
"class": "k-tilelayout-item-header k-card-header"
|
|
181
177
|
}, [tile.header ? headerContent : h("h5", {
|
|
182
178
|
"class": 'k-card-title'
|
|
@@ -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:
|
|
11
|
+
publishDate: 1669966527,
|
|
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
|
};
|
|
@@ -199,7 +199,7 @@ var TileVue2 = {
|
|
|
199
199
|
style: {
|
|
200
200
|
height: '100%'
|
|
201
201
|
}
|
|
202
|
-
}, [defaultSlots, resizable !== 'vertical' && h(ResizeHandlers_1.ResizeHandlers, {
|
|
202
|
+
}, [defaultSlots, resizable && resizable !== 'vertical' && h(ResizeHandlers_1.ResizeHandlers, {
|
|
203
203
|
onPress: this.handlePress,
|
|
204
204
|
on: this.v3 ? undefined : {
|
|
205
205
|
"press": this.handlePress,
|
|
@@ -212,7 +212,7 @@ var TileVue2 = {
|
|
|
212
212
|
rtl: this.rtl
|
|
213
213
|
},
|
|
214
214
|
rtl: this.rtl
|
|
215
|
-
}), resizable !== 'horizontal' && h(ResizeHandlers_1.ResizeHandlers, {
|
|
215
|
+
}), resizable && resizable !== 'horizontal' && h(ResizeHandlers_1.ResizeHandlers, {
|
|
216
216
|
onPress: this.handlePress,
|
|
217
217
|
on: this.v3 ? undefined : {
|
|
218
218
|
"press": this.handlePress,
|
|
@@ -371,6 +371,9 @@ var TileVue2 = {
|
|
|
371
371
|
this.$emit('update', this.$props.index, row, this.rtl ? -col : col, 0, 0);
|
|
372
372
|
},
|
|
373
373
|
handleRelease: function handleRelease() {
|
|
374
|
+
if (!this.reorderable) {
|
|
375
|
+
return;
|
|
376
|
+
}
|
|
374
377
|
this.dragging = this.resizing = false;
|
|
375
378
|
this.currentTranslate = {
|
|
376
379
|
x: 0,
|
|
@@ -171,18 +171,14 @@ var TileLayoutVue2 = {
|
|
|
171
171
|
hintStyle: tile.hintStyle,
|
|
172
172
|
ignoreDrag: this.$props.ignoreDrag
|
|
173
173
|
}, this.v3 ? function () {
|
|
174
|
-
return [tile.item ? {
|
|
175
|
-
itemContent: itemContent
|
|
176
|
-
} : [h("div", {
|
|
174
|
+
return [tile.item ? itemContent : [h("div", {
|
|
177
175
|
"class": "k-tilelayout-item-header k-card-header"
|
|
178
176
|
}, [tile.header ? headerContent : h("h5", {
|
|
179
177
|
"class": 'k-card-title'
|
|
180
178
|
}, [tile.headerText])]), h("div", {
|
|
181
179
|
"class": 'k-tilelayout-item-body k-card-body'
|
|
182
180
|
}, [tile.body ? bodyContent : tile.bodyText])]];
|
|
183
|
-
} : [tile.item ? {
|
|
184
|
-
itemContent: itemContent
|
|
185
|
-
} : [h("div", {
|
|
181
|
+
} : [tile.item ? itemContent : [h("div", {
|
|
186
182
|
"class": "k-tilelayout-item-header k-card-header"
|
|
187
183
|
}, [tile.header ? headerContent : h("h5", {
|
|
188
184
|
"class": 'k-card-title'
|
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.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202212020747",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "cd ../../ && npm run test -- --testPathPattern=/packages/layout/.*",
|
|
21
|
-
"start": "gulp start",
|
|
21
|
+
"start": "gulp start --notsc",
|
|
22
22
|
"build-package": "gulp build-package"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://www.telerik.com/kendo-vue-ui/",
|
|
@@ -43,24 +43,24 @@
|
|
|
43
43
|
"vue": "^2.6.12 || ^3.0.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-vue-animation": "3.7.4-dev.
|
|
47
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
48
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
46
|
+
"@progress/kendo-vue-animation": "3.7.4-dev.202212020747",
|
|
47
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212020747",
|
|
48
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202212020747"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.5.0",
|
|
52
52
|
"@progress/kendo-date-math": "^1.5.1",
|
|
53
53
|
"@progress/kendo-drawing": "^1.8.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.0.1",
|
|
55
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
56
|
-
"@progress/kendo-vue-charts": "3.7.4-dev.
|
|
57
|
-
"@progress/kendo-vue-dateinputs": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-grid": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-indicators": "3.7.4-dev.
|
|
61
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
62
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
63
|
-
"@progress/kendo-vue-progressbars": "3.7.4-dev.
|
|
55
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212020747",
|
|
56
|
+
"@progress/kendo-vue-charts": "3.7.4-dev.202212020747",
|
|
57
|
+
"@progress/kendo-vue-dateinputs": "3.7.4-dev.202212020747",
|
|
58
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202212020747",
|
|
59
|
+
"@progress/kendo-vue-grid": "3.7.4-dev.202212020747",
|
|
60
|
+
"@progress/kendo-vue-indicators": "3.7.4-dev.202212020747",
|
|
61
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202212020747",
|
|
62
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212020747",
|
|
63
|
+
"@progress/kendo-vue-progressbars": "3.7.4-dev.202212020747"
|
|
64
64
|
},
|
|
65
65
|
"@progress": {
|
|
66
66
|
"friendlyName": "Layouts",
|