@progress/kendo-vue-treelist 3.10.2 → 3.11.0-dev.202305230623
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-treelist.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/rows/RowDragClue.d.ts +2 -1
- package/dist/es/rows/RowDragClue.js +14 -13
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/rows/RowDragClue.d.ts +2 -1
- package/dist/esm/rows/RowDragClue.js +14 -13
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/rows/RowDragClue.d.ts +2 -1
- package/dist/npm/rows/RowDragClue.js +14 -13
- package/package.json +12 -12
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-treelist',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1684822873,
|
|
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
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// @ts-ignore
|
|
2
|
-
import { Icon } from '@progress/kendo-vue-common';
|
|
3
2
|
import * as Vue from 'vue';
|
|
4
3
|
var allVue = Vue;
|
|
5
4
|
var gh = allVue.h;
|
|
6
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
+
import { Icon } from '@progress/kendo-vue-common';
|
|
7
|
+
import { cancelIcon, plusIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
@@ -17,12 +18,11 @@ var RowDragClueVue2 = {
|
|
|
17
18
|
allowDrop: Boolean
|
|
18
19
|
},
|
|
19
20
|
computed: {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}, _a[this.$props.allowDrop ? 'k-i-plus' : 'k-i-cancel'] = true, _a['k-icon-with-modifier'] = true, _a;
|
|
21
|
+
statusIconName: function statusIconName() {
|
|
22
|
+
return this.$props.allowDrop ? 'plus' : 'cancel';
|
|
23
|
+
},
|
|
24
|
+
statusSvg: function statusSvg() {
|
|
25
|
+
return this.$props.allowDrop ? plusIcon : cancelIcon;
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
mounted: function mounted() {
|
|
@@ -58,14 +58,15 @@ var RowDragClueVue2 = {
|
|
|
58
58
|
top: this.$props.top + 'px',
|
|
59
59
|
left: this.$props.left + 'px'
|
|
60
60
|
}
|
|
61
|
-
}, [h("span", {
|
|
62
|
-
"class": this.statusClass
|
|
63
61
|
}, [h(Icon, {
|
|
64
|
-
name:
|
|
62
|
+
name: this.statusIconName,
|
|
65
63
|
attrs: this.v3 ? undefined : {
|
|
66
|
-
name:
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
name: this.statusIconName,
|
|
65
|
+
icon: this.statusSvg
|
|
66
|
+
},
|
|
67
|
+
"class": 'k-drag-status',
|
|
68
|
+
icon: this.statusSvg
|
|
69
|
+
}), this.$props.text]);
|
|
69
70
|
}
|
|
70
71
|
};
|
|
71
72
|
/**
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-treelist',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1684822873,
|
|
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
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
// @ts-ignore
|
|
2
|
-
import { Icon } from '@progress/kendo-vue-common';
|
|
3
2
|
import * as Vue from 'vue';
|
|
4
3
|
var allVue = Vue;
|
|
5
4
|
var gh = allVue.h;
|
|
6
5
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
6
|
+
import { Icon } from '@progress/kendo-vue-common';
|
|
7
|
+
import { cancelIcon, plusIcon } from '@progress/kendo-svg-icons';
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
@@ -17,12 +18,11 @@ var RowDragClueVue2 = {
|
|
|
17
18
|
allowDrop: Boolean
|
|
18
19
|
},
|
|
19
20
|
computed: {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}, _a[this.$props.allowDrop ? 'k-i-plus' : 'k-i-cancel'] = true, _a['k-icon-with-modifier'] = true, _a;
|
|
21
|
+
statusIconName: function statusIconName() {
|
|
22
|
+
return this.$props.allowDrop ? 'plus' : 'cancel';
|
|
23
|
+
},
|
|
24
|
+
statusSvg: function statusSvg() {
|
|
25
|
+
return this.$props.allowDrop ? plusIcon : cancelIcon;
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
mounted: function mounted() {
|
|
@@ -58,14 +58,15 @@ var RowDragClueVue2 = {
|
|
|
58
58
|
top: this.$props.top + 'px',
|
|
59
59
|
left: this.$props.left + 'px'
|
|
60
60
|
}
|
|
61
|
-
}, [h("span", {
|
|
62
|
-
"class": this.statusClass
|
|
63
61
|
}, [h(Icon, {
|
|
64
|
-
name:
|
|
62
|
+
name: this.statusIconName,
|
|
65
63
|
attrs: this.v3 ? undefined : {
|
|
66
|
-
name:
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
name: this.statusIconName,
|
|
65
|
+
icon: this.statusSvg
|
|
66
|
+
},
|
|
67
|
+
"class": 'k-drag-status',
|
|
68
|
+
icon: this.statusSvg
|
|
69
|
+
}), this.$props.text]);
|
|
69
70
|
}
|
|
70
71
|
};
|
|
71
72
|
/**
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-treelist',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1684822873,
|
|
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
|
};
|
|
@@ -5,11 +5,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.RowDragClueVue2 = exports.RowDragClue = void 0;
|
|
7
7
|
// @ts-ignore
|
|
8
|
-
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
9
8
|
var Vue = require("vue");
|
|
10
9
|
var allVue = Vue;
|
|
11
10
|
var gh = allVue.h;
|
|
12
11
|
var isV3 = allVue.version && allVue.version[0] === '3';
|
|
12
|
+
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
13
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
13
14
|
/**
|
|
14
15
|
* @hidden
|
|
15
16
|
*/
|
|
@@ -23,12 +24,11 @@ var RowDragClueVue2 = {
|
|
|
23
24
|
allowDrop: Boolean
|
|
24
25
|
},
|
|
25
26
|
computed: {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}, _a[this.$props.allowDrop ? 'k-i-plus' : 'k-i-cancel'] = true, _a['k-icon-with-modifier'] = true, _a;
|
|
27
|
+
statusIconName: function statusIconName() {
|
|
28
|
+
return this.$props.allowDrop ? 'plus' : 'cancel';
|
|
29
|
+
},
|
|
30
|
+
statusSvg: function statusSvg() {
|
|
31
|
+
return this.$props.allowDrop ? kendo_svg_icons_1.plusIcon : kendo_svg_icons_1.cancelIcon;
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
mounted: function mounted() {
|
|
@@ -64,14 +64,15 @@ var RowDragClueVue2 = {
|
|
|
64
64
|
top: this.$props.top + 'px',
|
|
65
65
|
left: this.$props.left + 'px'
|
|
66
66
|
}
|
|
67
|
-
}, [h("span", {
|
|
68
|
-
"class": this.statusClass
|
|
69
67
|
}, [h(kendo_vue_common_1.Icon, {
|
|
70
|
-
name:
|
|
68
|
+
name: this.statusIconName,
|
|
71
69
|
attrs: this.v3 ? undefined : {
|
|
72
|
-
name:
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
name: this.statusIconName,
|
|
71
|
+
icon: this.statusSvg
|
|
72
|
+
},
|
|
73
|
+
"class": 'k-drag-status',
|
|
74
|
+
icon: this.statusSvg
|
|
75
|
+
}), this.$props.text]);
|
|
75
76
|
}
|
|
76
77
|
};
|
|
77
78
|
exports.RowDragClueVue2 = RowDragClueVue2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-treelist",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0-dev.202305230623",
|
|
4
4
|
"description": "Kendo UI for Vue TreeList package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"vue": "^2.6.12 || ^3.0.2"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-vue-common": "3.
|
|
52
|
+
"@progress/kendo-vue-common": "3.11.0-dev.202305230623"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@progress/kendo-data-query": "^1.0.0",
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"@progress/kendo-drawing": "^1.8.0",
|
|
58
58
|
"@progress/kendo-licensing": "^1.3.0",
|
|
59
59
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
60
|
-
"@progress/kendo-vue-buttons": "3.
|
|
61
|
-
"@progress/kendo-vue-data-tools": "3.
|
|
62
|
-
"@progress/kendo-vue-dateinputs": "3.
|
|
63
|
-
"@progress/kendo-vue-dialogs": "3.
|
|
64
|
-
"@progress/kendo-vue-dropdowns": "3.
|
|
65
|
-
"@progress/kendo-vue-excel-export": "3.
|
|
66
|
-
"@progress/kendo-vue-inputs": "3.
|
|
67
|
-
"@progress/kendo-vue-intl": "3.
|
|
68
|
-
"@progress/kendo-vue-labels": "3.
|
|
69
|
-
"@progress/kendo-vue-pdf": "3.
|
|
60
|
+
"@progress/kendo-vue-buttons": "3.11.0-dev.202305230623",
|
|
61
|
+
"@progress/kendo-vue-data-tools": "3.11.0-dev.202305230623",
|
|
62
|
+
"@progress/kendo-vue-dateinputs": "3.11.0-dev.202305230623",
|
|
63
|
+
"@progress/kendo-vue-dialogs": "3.11.0-dev.202305230623",
|
|
64
|
+
"@progress/kendo-vue-dropdowns": "3.11.0-dev.202305230623",
|
|
65
|
+
"@progress/kendo-vue-excel-export": "3.11.0-dev.202305230623",
|
|
66
|
+
"@progress/kendo-vue-inputs": "3.11.0-dev.202305230623",
|
|
67
|
+
"@progress/kendo-vue-intl": "3.11.0-dev.202305230623",
|
|
68
|
+
"@progress/kendo-vue-labels": "3.11.0-dev.202305230623",
|
|
69
|
+
"@progress/kendo-vue-pdf": "3.11.0-dev.202305230623"
|
|
70
70
|
},
|
|
71
71
|
"@progress": {
|
|
72
72
|
"friendlyName": "TreeList",
|