@progress/kendo-vue-grid 3.7.4-dev.202212020747 → 3.7.4-dev.202212300853
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/README.md +1 -1
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/dist/es/Grid.js +4 -12
- package/dist/es/columnMenu/ColumnMenu.js +6 -3
- package/dist/es/columnMenu/GridColumnMenuCheckboxFilter.js +7 -3
- package/dist/es/columnMenu/GridColumnMenuItem.js +3 -3
- package/dist/es/drag/DragClue.js +6 -2
- package/dist/es/drag/GroupingIndicator.js +23 -9
- package/dist/es/header/HeaderRow.js +9 -6
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/Grid.js +4 -12
- package/dist/esm/columnMenu/ColumnMenu.js +6 -3
- package/dist/esm/columnMenu/GridColumnMenuCheckboxFilter.js +7 -3
- package/dist/esm/columnMenu/GridColumnMenuItem.js +3 -3
- package/dist/esm/drag/DragClue.js +6 -2
- package/dist/esm/drag/GroupingIndicator.js +23 -9
- package/dist/esm/header/HeaderRow.js +9 -6
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/Grid.js +4 -12
- package/dist/npm/columnMenu/ColumnMenu.js +5 -2
- package/dist/npm/columnMenu/GridColumnMenuCheckboxFilter.js +6 -2
- package/dist/npm/columnMenu/GridColumnMenuItem.js +2 -2
- package/dist/npm/drag/DragClue.js +6 -2
- package/dist/npm/drag/GroupingIndicator.js +22 -8
- package/dist/npm/header/HeaderRow.js +8 -5
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +14 -14
|
@@ -83,8 +83,12 @@ var GroupingIndicatorVue2 = {
|
|
|
83
83
|
ref: (0, kendo_vue_common_1.setRef)(_this, 'indicatorContainer')
|
|
84
84
|
}, [h("div", {
|
|
85
85
|
"class": "k-chip k-chip-lg k-rounded-md k-chip-solid k-chip-solid-base"
|
|
86
|
-
}, [h(
|
|
87
|
-
|
|
86
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
87
|
+
name: 'sort-' + _this.$props.dir + '-small',
|
|
88
|
+
attrs: _this.v3 ? undefined : {
|
|
89
|
+
name: 'sort-' + _this.$props.dir + '-small'
|
|
90
|
+
},
|
|
91
|
+
"class": 'k-chip-icon'
|
|
88
92
|
}), h("span", {
|
|
89
93
|
"class": "k-chip-content",
|
|
90
94
|
tabindex: -1,
|
|
@@ -109,16 +113,23 @@ var GroupingIndicatorVue2 = {
|
|
|
109
113
|
on: _this.v3 ? undefined : {
|
|
110
114
|
"click": _this.groupRemove
|
|
111
115
|
}
|
|
112
|
-
}, [h(
|
|
113
|
-
|
|
116
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
117
|
+
name: "x",
|
|
118
|
+
attrs: _this.v3 ? undefined : {
|
|
119
|
+
name: "x"
|
|
120
|
+
}
|
|
114
121
|
})])])])])];
|
|
115
122
|
} : [h("div", {
|
|
116
123
|
"class": "k-indicator-container",
|
|
117
124
|
ref: (0, kendo_vue_common_1.setRef)(_this, 'indicatorContainer')
|
|
118
125
|
}, [h("div", {
|
|
119
126
|
"class": "k-chip k-chip-lg k-rounded-md k-chip-solid k-chip-solid-base"
|
|
120
|
-
}, [h(
|
|
121
|
-
|
|
127
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
128
|
+
name: 'sort-' + _this.$props.dir + '-small',
|
|
129
|
+
attrs: _this.v3 ? undefined : {
|
|
130
|
+
name: 'sort-' + _this.$props.dir + '-small'
|
|
131
|
+
},
|
|
132
|
+
"class": 'k-chip-icon'
|
|
122
133
|
}), h("span", {
|
|
123
134
|
"class": "k-chip-content",
|
|
124
135
|
tabindex: -1,
|
|
@@ -143,8 +154,11 @@ var GroupingIndicatorVue2 = {
|
|
|
143
154
|
on: _this.v3 ? undefined : {
|
|
144
155
|
"click": _this.groupRemove
|
|
145
156
|
}
|
|
146
|
-
}, [h(
|
|
147
|
-
|
|
157
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
158
|
+
name: "x",
|
|
159
|
+
attrs: _this.v3 ? undefined : {
|
|
160
|
+
name: "x"
|
|
161
|
+
}
|
|
148
162
|
})])])])])])
|
|
149
163
|
);
|
|
150
164
|
}
|
|
@@ -201,22 +201,25 @@ var HeaderRowVue2 = {
|
|
|
201
201
|
}) : -1;
|
|
202
202
|
var sortDir = sortIndex >= 0 ? this.$props.sort[sortIndex].dir || 'none' : 'none';
|
|
203
203
|
var sortIconRenderer = function sortIconRenderer(iconSortIndex) {
|
|
204
|
-
if (!
|
|
204
|
+
if (!this.$props.sort) {
|
|
205
205
|
return null;
|
|
206
206
|
}
|
|
207
207
|
return iconSortIndex >= 0 && [h("span", {
|
|
208
208
|
key: 1,
|
|
209
209
|
"class": 'k-sort-icon'
|
|
210
|
-
}, [h(
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
}, [h(kendo_vue_common_1.Icon, {
|
|
211
|
+
name: 'sort-' + this.$props.sort[iconSortIndex].dir + '-small',
|
|
212
|
+
attrs: this.v3 ? undefined : {
|
|
213
|
+
name: 'sort-' + this.$props.sort[iconSortIndex].dir + '-small'
|
|
214
|
+
}
|
|
215
|
+
})]), this.$props.sort.length > 1 && h("span", {
|
|
213
216
|
key: 2,
|
|
214
217
|
"class": 'k-sort-icon'
|
|
215
218
|
}, [h("span", {
|
|
216
219
|
"class": "k-sort-order"
|
|
217
220
|
}, [iconSortIndex + 1])])];
|
|
218
221
|
};
|
|
219
|
-
var sortIcon = sortIconRenderer(sortIndex);
|
|
222
|
+
var sortIcon = sortIconRenderer.call(this, sortIndex);
|
|
220
223
|
var className = (column.kFirst ? 'k-first ' : '') + this.cellClass(column.field, column.headerClassName, column.locked);
|
|
221
224
|
var columnMenu = column.columnMenu || column.columnMenu === false ? column.columnMenu : this.$props.columnMenu;
|
|
222
225
|
var columnMenuRender = !columnMenu || typeof columnMenu === 'boolean' ? !!columnMenu : this.getTemplate(columnMenu);
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-grid',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1672389995,
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "3.7.4-dev.
|
|
3
|
+
"version": "3.7.4-dev.202212300853",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"vue": "^2.6.12 || ^3.0.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
44
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202212300853"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@progress/kendo-data-query": "^1.5.4",
|
|
48
48
|
"@progress/kendo-drawing": "^1.9.3",
|
|
49
49
|
"@progress/kendo-licensing": "^1.1.0",
|
|
50
|
-
"@progress/kendo-vue-animation": "3.7.4-dev.
|
|
51
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
52
|
-
"@progress/kendo-vue-charts": "3.7.4-dev.
|
|
53
|
-
"@progress/kendo-vue-data-tools": "3.7.4-dev.
|
|
54
|
-
"@progress/kendo-vue-dateinputs": "3.7.4-dev.
|
|
55
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
56
|
-
"@progress/kendo-vue-excel-export": "3.7.4-dev.
|
|
57
|
-
"@progress/kendo-vue-indicators": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-pdf": "3.7.4-dev.
|
|
61
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
50
|
+
"@progress/kendo-vue-animation": "3.7.4-dev.202212300853",
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202212300853",
|
|
52
|
+
"@progress/kendo-vue-charts": "3.7.4-dev.202212300853",
|
|
53
|
+
"@progress/kendo-vue-data-tools": "3.7.4-dev.202212300853",
|
|
54
|
+
"@progress/kendo-vue-dateinputs": "3.7.4-dev.202212300853",
|
|
55
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202212300853",
|
|
56
|
+
"@progress/kendo-vue-excel-export": "3.7.4-dev.202212300853",
|
|
57
|
+
"@progress/kendo-vue-indicators": "3.7.4-dev.202212300853",
|
|
58
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202212300853",
|
|
59
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202212300853",
|
|
60
|
+
"@progress/kendo-vue-pdf": "3.7.4-dev.202212300853",
|
|
61
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202212300853",
|
|
62
62
|
"cldr-core": "^41.0.0",
|
|
63
63
|
"cldr-dates-full": "^41.0.0",
|
|
64
64
|
"cldr-numbers-full": "^41.0.0",
|