@progress/kendo-vue-data-tools 3.7.4-dev.202301091431 → 3.7.4-dev.202301120847
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-data-tools.js +1 -1
- package/dist/es/columnmenu/ColumnMenu.js +2 -2
- package/dist/es/columnmenu/ColumnMenuCheckboxFilter.js +9 -5
- package/dist/es/columnmenu/ColumnMenuFilter.js +9 -4
- package/dist/es/columnmenu/ColumnMenuItem.d.ts +9 -0
- package/dist/es/columnmenu/ColumnMenuItem.js +12 -1
- package/dist/es/columnmenu/ColumnMenuSort.js +17 -8
- package/dist/es/drag/CommonDragLogic.d.ts +1 -0
- package/dist/es/drag/CommonDragLogic.js +21 -10
- package/dist/es/header/FilterRow.js +3 -4
- package/dist/es/package-metadata.js +1 -1
- package/dist/esm/columnmenu/ColumnMenu.js +2 -2
- package/dist/esm/columnmenu/ColumnMenuCheckboxFilter.js +9 -5
- package/dist/esm/columnmenu/ColumnMenuFilter.js +9 -4
- package/dist/esm/columnmenu/ColumnMenuItem.d.ts +9 -0
- package/dist/esm/columnmenu/ColumnMenuItem.js +12 -1
- package/dist/esm/columnmenu/ColumnMenuSort.js +17 -8
- package/dist/esm/drag/CommonDragLogic.d.ts +1 -0
- package/dist/esm/drag/CommonDragLogic.js +21 -10
- package/dist/esm/header/FilterRow.js +3 -4
- package/dist/esm/package-metadata.js +1 -1
- package/dist/npm/columnmenu/ColumnMenu.js +2 -2
- package/dist/npm/columnmenu/ColumnMenuCheckboxFilter.js +8 -4
- package/dist/npm/columnmenu/ColumnMenuFilter.js +9 -4
- package/dist/npm/columnmenu/ColumnMenuItem.d.ts +9 -0
- package/dist/npm/columnmenu/ColumnMenuItem.js +12 -1
- package/dist/npm/columnmenu/ColumnMenuSort.js +17 -8
- package/dist/npm/drag/CommonDragLogic.d.ts +1 -0
- package/dist/npm/drag/CommonDragLogic.js +21 -10
- package/dist/npm/header/FilterRow.js +3 -4
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +10 -10
|
@@ -10,7 +10,6 @@ import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
|
10
10
|
import { filterAriaLabel, messages } from '../messages/main.js';
|
|
11
11
|
import { tableKeyboardNavigationTools as navigationTools } from '../navigation/utils.js';
|
|
12
12
|
import { HeaderThElement } from './HeaderThElement.js';
|
|
13
|
-
import { classNames } from '@progress/kendo-vue-common';
|
|
14
13
|
/**
|
|
15
14
|
* @hidden
|
|
16
15
|
*/
|
|
@@ -34,7 +33,7 @@ var FilterRowVue2 = {
|
|
|
34
33
|
},
|
|
35
34
|
methods: {
|
|
36
35
|
headerCellClassName: function headerCellClassName(field, locked) {
|
|
37
|
-
var result = "k-header" + (locked ? ' k-grid-header-sticky' : '');
|
|
36
|
+
var result = "k-table-th k-header" + (locked ? ' k-grid-header-sticky' : '');
|
|
38
37
|
if (this.$props.sort && this.$props.sort.filter(function (descriptor) {
|
|
39
38
|
return descriptor.field === field;
|
|
40
39
|
}).length > 0) {
|
|
@@ -161,7 +160,7 @@ var FilterRowVue2 = {
|
|
|
161
160
|
},
|
|
162
161
|
navigatable: column.navigatable,
|
|
163
162
|
style: style,
|
|
164
|
-
"class":
|
|
163
|
+
"class": this.headerCellClassName(column.field, column.locked) || undefined,
|
|
165
164
|
ariaLabel: ariaAttrs.ariaLabel,
|
|
166
165
|
ariaColumnIndex: ariaAttrs.ariaColumnIndex
|
|
167
166
|
}, this.v3 ? function () {
|
|
@@ -180,7 +179,7 @@ var FilterRowVue2 = {
|
|
|
180
179
|
},
|
|
181
180
|
navigatable: column.navigatable,
|
|
182
181
|
style: style,
|
|
183
|
-
"class":
|
|
182
|
+
"class": this.headerCellClassName(column.field, column.locked) || undefined,
|
|
184
183
|
ariaLabel: ariaAttrs.ariaLabel,
|
|
185
184
|
ariaColumnIndex: ariaAttrs.ariaColumnIndex
|
|
186
185
|
});
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-data-tools',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1673512534,
|
|
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
|
};
|
|
@@ -93,8 +93,8 @@ var ColumnMenuVue2 = {
|
|
|
93
93
|
handleFocus: function handleFocus(_) {
|
|
94
94
|
clearTimeout(this.blurTimeout);
|
|
95
95
|
},
|
|
96
|
-
anchorClick: function anchorClick() {
|
|
97
|
-
|
|
96
|
+
anchorClick: function anchorClick(e) {
|
|
97
|
+
e.preventDefault();
|
|
98
98
|
this.show = !this.show;
|
|
99
99
|
},
|
|
100
100
|
closeMenu: function closeMenu() {
|
|
@@ -223,9 +223,11 @@ var ColumnMenuCheckboxFilterVue2 = {
|
|
|
223
223
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
224
224
|
attrs: _this2.v3 ? undefined : {
|
|
225
225
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
226
|
-
|
|
226
|
+
icon: 'filter',
|
|
227
|
+
svgIcon: kendo_svg_icons_1.filterIcon
|
|
227
228
|
},
|
|
228
|
-
|
|
229
|
+
icon: 'filter',
|
|
230
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
229
231
|
onClick: _this2.onFilterExpand,
|
|
230
232
|
on: _this2.v3 ? undefined : {
|
|
231
233
|
"click": _this2.onFilterExpand
|
|
@@ -384,9 +386,11 @@ var ColumnMenuCheckboxFilterVue2 = {
|
|
|
384
386
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
385
387
|
attrs: _this2.v3 ? undefined : {
|
|
386
388
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
387
|
-
|
|
389
|
+
icon: 'filter',
|
|
390
|
+
svgIcon: kendo_svg_icons_1.filterIcon
|
|
388
391
|
},
|
|
389
|
-
|
|
392
|
+
icon: 'filter',
|
|
393
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
390
394
|
onClick: _this2.onFilterExpand,
|
|
391
395
|
on: _this2.v3 ? undefined : {
|
|
392
396
|
"click": _this2.onFilterExpand
|
|
@@ -43,6 +43,7 @@ var main_1 = require("../messages/main");
|
|
|
43
43
|
var ColumnMenuFilterCell_1 = require("./ColumnMenuFilterCell");
|
|
44
44
|
var ColumnMenuFilterOperators_1 = require("./ColumnMenuFilterOperators");
|
|
45
45
|
var kendo_vue_dropdowns_1 = require("@progress/kendo-vue-dropdowns");
|
|
46
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
46
47
|
/**
|
|
47
48
|
* @hidden
|
|
48
49
|
*/
|
|
@@ -360,9 +361,11 @@ var ColumnMenuFilterVue2 = {
|
|
|
360
361
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
361
362
|
attrs: _this2.v3 ? undefined : {
|
|
362
363
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
363
|
-
|
|
364
|
+
icon: 'filter',
|
|
365
|
+
svgIcon: kendo_svg_icons_1.filterIcon
|
|
364
366
|
},
|
|
365
|
-
|
|
367
|
+
icon: 'filter',
|
|
368
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
366
369
|
onMenuitemclick: _this2.onFilterExpand,
|
|
367
370
|
on: _this2.v3 ? undefined : {
|
|
368
371
|
"menuitemclick": _this2.onFilterExpand
|
|
@@ -649,9 +652,11 @@ var ColumnMenuFilterVue2 = {
|
|
|
649
652
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
650
653
|
attrs: _this2.v3 ? undefined : {
|
|
651
654
|
title: localizationService.toLanguageString(main_1.columnMenuFilterTitle, main_1.messages[main_1.columnMenuFilterTitle]),
|
|
652
|
-
|
|
655
|
+
icon: 'filter',
|
|
656
|
+
svgIcon: kendo_svg_icons_1.filterIcon
|
|
653
657
|
},
|
|
654
|
-
|
|
658
|
+
icon: 'filter',
|
|
659
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
655
660
|
onMenuitemclick: _this2.onFilterExpand,
|
|
656
661
|
on: _this2.v3 ? undefined : {
|
|
657
662
|
"menuitemclick": _this2.onFilterExpand
|
|
@@ -3,6 +3,7 @@ declare type DefaultData<V> = object | ((this: V) => {});
|
|
|
3
3
|
declare type DefaultMethods<V> = {
|
|
4
4
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
5
5
|
};
|
|
6
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
6
7
|
/**
|
|
7
8
|
* The props of the ColumnMenuItem component.
|
|
8
9
|
*/
|
|
@@ -19,6 +20,14 @@ export interface ColumnMenuItemProps {
|
|
|
19
20
|
* The class of the icon rendered next to the title.
|
|
20
21
|
*/
|
|
21
22
|
iconClass: string;
|
|
23
|
+
/**
|
|
24
|
+
* Defines the name for the icon.
|
|
25
|
+
*/
|
|
26
|
+
icon?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Defines the svg icon in a Kendo UI for Vue theme.
|
|
29
|
+
*/
|
|
30
|
+
svgIcon?: SVGIcon;
|
|
22
31
|
/**
|
|
23
32
|
* The selected state of the component.
|
|
24
33
|
*/
|
|
@@ -17,6 +17,8 @@ var ColumnMenuItemVue2 = {
|
|
|
17
17
|
props: {
|
|
18
18
|
title: String,
|
|
19
19
|
iconClass: String,
|
|
20
|
+
icon: String,
|
|
21
|
+
svgIcon: Object,
|
|
20
22
|
selected: Boolean
|
|
21
23
|
},
|
|
22
24
|
methods: {
|
|
@@ -42,7 +44,9 @@ var ColumnMenuItemVue2 = {
|
|
|
42
44
|
var _a = this.$props,
|
|
43
45
|
title = _a.title,
|
|
44
46
|
iconClass = _a.iconClass,
|
|
45
|
-
selected = _a.selected
|
|
47
|
+
selected = _a.selected,
|
|
48
|
+
icon = _a.icon,
|
|
49
|
+
svgIcon = _a.svgIcon;
|
|
46
50
|
return h("div", {
|
|
47
51
|
tabindex: 0,
|
|
48
52
|
attrs: this.v3 ? undefined : {
|
|
@@ -57,6 +61,13 @@ var ColumnMenuItemVue2 = {
|
|
|
57
61
|
"class": "k-columnmenu-item ".concat(selected ? 'k-selected' : '')
|
|
58
62
|
}, [iconClass && h(kendo_vue_common_1.Icon, {
|
|
59
63
|
"class": iconClass
|
|
64
|
+
}), (icon || svgIcon) && h(kendo_vue_common_1.Icon, {
|
|
65
|
+
name: icon,
|
|
66
|
+
attrs: this.v3 ? undefined : {
|
|
67
|
+
name: icon,
|
|
68
|
+
svg: svgIcon
|
|
69
|
+
},
|
|
70
|
+
svg: svgIcon
|
|
60
71
|
}), title]);
|
|
61
72
|
}
|
|
62
73
|
};
|
|
@@ -16,6 +16,7 @@ var SortSettings_1 = require("../interfaces/SortSettings");
|
|
|
16
16
|
var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
17
17
|
var main_1 = require("../messages/main");
|
|
18
18
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
19
|
+
var kendo_svg_icons_1 = require("@progress/kendo-svg-icons");
|
|
19
20
|
/**
|
|
20
21
|
* @hidden
|
|
21
22
|
*/
|
|
@@ -173,10 +174,12 @@ var ColumnMenuSortVue2 = {
|
|
|
173
174
|
title: localizationService.toLanguageString(main_1.columnMenuSortAscending, main_1.messages[main_1.columnMenuSortAscending]),
|
|
174
175
|
attrs: _this.v3 ? undefined : {
|
|
175
176
|
title: localizationService.toLanguageString(main_1.columnMenuSortAscending, main_1.messages[main_1.columnMenuSortAscending]),
|
|
176
|
-
|
|
177
|
+
icon: 'sort-asc-small',
|
|
178
|
+
scgIcon: kendo_svg_icons_1.sortAscSmallIcon,
|
|
177
179
|
selected: sortedAsc(currentSortIndex, sort)
|
|
178
180
|
},
|
|
179
|
-
|
|
181
|
+
icon: 'sort-asc-small',
|
|
182
|
+
scgIcon: kendo_svg_icons_1.sortAscSmallIcon,
|
|
180
183
|
selected: sortedAsc(currentSortIndex, sort),
|
|
181
184
|
onMenuitemclick: _this.onAscClick,
|
|
182
185
|
on: _this.v3 ? undefined : {
|
|
@@ -188,10 +191,12 @@ var ColumnMenuSortVue2 = {
|
|
|
188
191
|
title: localizationService.toLanguageString(main_1.columnMenuSortDescending, main_1.messages[main_1.columnMenuSortDescending]),
|
|
189
192
|
attrs: _this.v3 ? undefined : {
|
|
190
193
|
title: localizationService.toLanguageString(main_1.columnMenuSortDescending, main_1.messages[main_1.columnMenuSortDescending]),
|
|
191
|
-
|
|
194
|
+
icon: 'sort-desc-small',
|
|
195
|
+
svgIcon: kendo_svg_icons_1.sortDescSmallIcon,
|
|
192
196
|
selected: sortedDesc(currentSortIndex, sort)
|
|
193
197
|
},
|
|
194
|
-
|
|
198
|
+
icon: 'sort-desc-small',
|
|
199
|
+
svgIcon: kendo_svg_icons_1.sortDescSmallIcon,
|
|
195
200
|
selected: sortedDesc(currentSortIndex, sort),
|
|
196
201
|
onMenuitemclick: _this.onDescClick,
|
|
197
202
|
on: _this.v3 ? undefined : {
|
|
@@ -202,10 +207,12 @@ var ColumnMenuSortVue2 = {
|
|
|
202
207
|
title: localizationService.toLanguageString(main_1.columnMenuSortAscending, main_1.messages[main_1.columnMenuSortAscending]),
|
|
203
208
|
attrs: _this.v3 ? undefined : {
|
|
204
209
|
title: localizationService.toLanguageString(main_1.columnMenuSortAscending, main_1.messages[main_1.columnMenuSortAscending]),
|
|
205
|
-
|
|
210
|
+
icon: 'sort-asc-small',
|
|
211
|
+
scgIcon: kendo_svg_icons_1.sortAscSmallIcon,
|
|
206
212
|
selected: sortedAsc(currentSortIndex, sort)
|
|
207
213
|
},
|
|
208
|
-
|
|
214
|
+
icon: 'sort-asc-small',
|
|
215
|
+
scgIcon: kendo_svg_icons_1.sortAscSmallIcon,
|
|
209
216
|
selected: sortedAsc(currentSortIndex, sort),
|
|
210
217
|
onMenuitemclick: _this.onAscClick,
|
|
211
218
|
on: _this.v3 ? undefined : {
|
|
@@ -215,10 +222,12 @@ var ColumnMenuSortVue2 = {
|
|
|
215
222
|
title: localizationService.toLanguageString(main_1.columnMenuSortDescending, main_1.messages[main_1.columnMenuSortDescending]),
|
|
216
223
|
attrs: _this.v3 ? undefined : {
|
|
217
224
|
title: localizationService.toLanguageString(main_1.columnMenuSortDescending, main_1.messages[main_1.columnMenuSortDescending]),
|
|
218
|
-
|
|
225
|
+
icon: 'sort-desc-small',
|
|
226
|
+
svgIcon: kendo_svg_icons_1.sortDescSmallIcon,
|
|
219
227
|
selected: sortedDesc(currentSortIndex, sort)
|
|
220
228
|
},
|
|
221
|
-
|
|
229
|
+
icon: 'sort-desc-small',
|
|
230
|
+
svgIcon: kendo_svg_icons_1.sortDescSmallIcon,
|
|
222
231
|
selected: sortedDesc(currentSortIndex, sort),
|
|
223
232
|
onMenuitemclick: _this.onDescClick,
|
|
224
233
|
on: _this.v3 ? undefined : {
|
|
@@ -28,6 +28,7 @@ export declare class CommonDragLogic {
|
|
|
28
28
|
dragHandler: (event: any, element: HTMLElement) => void;
|
|
29
29
|
releaseHandler: (event: any) => void;
|
|
30
30
|
private getColumnIndex;
|
|
31
|
+
private isTargetGroupingContainer;
|
|
31
32
|
private getGroupIndex;
|
|
32
33
|
private isValid;
|
|
33
34
|
private updateDragElementClue;
|
|
@@ -19,7 +19,7 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
19
19
|
this.currentGroup = -1;
|
|
20
20
|
this.groupPanelDivElement = null;
|
|
21
21
|
this.refGroupPanelDiv = function (e) {
|
|
22
|
-
_this.groupPanelDivElement = e;
|
|
22
|
+
_this.groupPanelDivElement = e.children ? e.children[0] : e;
|
|
23
23
|
};
|
|
24
24
|
this.refDropElementClue = function (e) {
|
|
25
25
|
_this.dropElementClue = e;
|
|
@@ -55,10 +55,12 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
55
55
|
return;
|
|
56
56
|
}
|
|
57
57
|
_this.currentColumn = _this.getColumnIndex(event, element);
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
var groupPanelChildren = _this.groupPanelDivElement.children;
|
|
59
|
+
_this.currentGroup = _this.isTargetGroupingContainer(event)
|
|
60
|
+
? groupPanelChildren && groupPanelChildren.length
|
|
61
|
+
? groupPanelChildren.length - 1
|
|
62
|
+
: 0
|
|
63
|
+
: _this.getGroupIndex(event);
|
|
62
64
|
var invalidIndex = !_this.isValid();
|
|
63
65
|
if (invalidIndex) {
|
|
64
66
|
_this.currentColumn = -1;
|
|
@@ -66,7 +68,9 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
66
68
|
}
|
|
67
69
|
var targetElement = (_this.currentColumn >= 0) ?
|
|
68
70
|
element.children[_this.columns[_this.currentColumn].index] :
|
|
69
|
-
_this.
|
|
71
|
+
_this.isTargetGroupingContainer(event)
|
|
72
|
+
? event.originalEvent.target
|
|
73
|
+
: _this.groupPanelDivElement && _this.groupPanelDivElement.children[_this.currentGroup];
|
|
70
74
|
_this.updateDragElementClue(event, element, targetElement, invalidIndex);
|
|
71
75
|
_this.updateDropElementClue(event, element, targetElement, invalidIndex);
|
|
72
76
|
};
|
|
@@ -121,6 +125,10 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
121
125
|
}
|
|
122
126
|
return -1;
|
|
123
127
|
};
|
|
128
|
+
CommonDragLogic.prototype.isTargetGroupingContainer = function (event) {
|
|
129
|
+
var target = event.originalEvent.target;
|
|
130
|
+
return target.className.indexOf('k-grouping-drop-container') !== -1;
|
|
131
|
+
};
|
|
124
132
|
CommonDragLogic.prototype.getGroupIndex = function (event) {
|
|
125
133
|
return (0, main_1.getIndex)(event, this.groupPanelDivElement);
|
|
126
134
|
};
|
|
@@ -154,7 +162,7 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
154
162
|
this.dragElementClue.top = (event.pageY + 10);
|
|
155
163
|
this.dragElementClue.left = event.pageX;
|
|
156
164
|
this.dragElementClue.innerText = innerText;
|
|
157
|
-
this.dragElementClue.status = (invalidIndex || !targetElement) ? 'k-i-cancel' : 'k-i-
|
|
165
|
+
this.dragElementClue.status = (invalidIndex || !targetElement) ? 'k-i-cancel' : 'k-i-plus';
|
|
158
166
|
};
|
|
159
167
|
CommonDragLogic.prototype.updateDropElementClue = function (event, element, targetElement, invalidIndex) {
|
|
160
168
|
if (!this.dropElementClue) {
|
|
@@ -165,15 +173,18 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
165
173
|
return;
|
|
166
174
|
}
|
|
167
175
|
var rect = targetElement.getBoundingClientRect();
|
|
176
|
+
var groupElement = targetElement.closest('.k-grouping-header');
|
|
177
|
+
var rectParent = (groupElement || targetElement).getBoundingClientRect();
|
|
168
178
|
var left = rect.left + event.pageX - event.clientX - 6;
|
|
169
|
-
if (this.
|
|
179
|
+
if (!this.isTargetGroupingContainer(event) && (this.currentColumn > this.startColumn
|
|
180
|
+
|| this.currentGroup > this.startGroup && this.startGroup !== -1)) {
|
|
170
181
|
left += rect.width;
|
|
171
182
|
}
|
|
172
|
-
var top =
|
|
183
|
+
var top = rectParent.top + event.pageY - event.clientY;
|
|
173
184
|
this.dropElementClue.visible = true;
|
|
174
185
|
this.dropElementClue.top = top;
|
|
175
186
|
this.dropElementClue.left = left;
|
|
176
|
-
this.dropElementClue.height = (this.currentColumn >= 0) ? element.clientHeight :
|
|
187
|
+
this.dropElementClue.height = (this.currentColumn >= 0) ? element.clientHeight : rectParent.height;
|
|
177
188
|
};
|
|
178
189
|
return CommonDragLogic;
|
|
179
190
|
}());
|
|
@@ -16,7 +16,6 @@ var kendo_vue_intl_1 = require("@progress/kendo-vue-intl");
|
|
|
16
16
|
var main_1 = require("../messages/main");
|
|
17
17
|
var utils_1 = require("../navigation/utils");
|
|
18
18
|
var HeaderThElement_1 = require("./HeaderThElement");
|
|
19
|
-
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
20
19
|
/**
|
|
21
20
|
* @hidden
|
|
22
21
|
*/
|
|
@@ -40,7 +39,7 @@ var FilterRowVue2 = {
|
|
|
40
39
|
},
|
|
41
40
|
methods: {
|
|
42
41
|
headerCellClassName: function headerCellClassName(field, locked) {
|
|
43
|
-
var result = "k-header" + (locked ? ' k-grid-header-sticky' : '');
|
|
42
|
+
var result = "k-table-th k-header" + (locked ? ' k-grid-header-sticky' : '');
|
|
44
43
|
if (this.$props.sort && this.$props.sort.filter(function (descriptor) {
|
|
45
44
|
return descriptor.field === field;
|
|
46
45
|
}).length > 0) {
|
|
@@ -167,7 +166,7 @@ var FilterRowVue2 = {
|
|
|
167
166
|
},
|
|
168
167
|
navigatable: column.navigatable,
|
|
169
168
|
style: style,
|
|
170
|
-
"class":
|
|
169
|
+
"class": this.headerCellClassName(column.field, column.locked) || undefined,
|
|
171
170
|
ariaLabel: ariaAttrs.ariaLabel,
|
|
172
171
|
ariaColumnIndex: ariaAttrs.ariaColumnIndex
|
|
173
172
|
}, this.v3 ? function () {
|
|
@@ -186,7 +185,7 @@ var FilterRowVue2 = {
|
|
|
186
185
|
},
|
|
187
186
|
navigatable: column.navigatable,
|
|
188
187
|
style: style,
|
|
189
|
-
"class":
|
|
188
|
+
"class": this.headerCellClassName(column.field, column.locked) || undefined,
|
|
190
189
|
ariaLabel: ariaAttrs.ariaLabel,
|
|
191
190
|
ariaColumnIndex: ariaAttrs.ariaColumnIndex
|
|
192
191
|
});
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-data-tools',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1673512534,
|
|
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-data-tools",
|
|
3
3
|
"description": "Kendo UI for Vue Data Tools package",
|
|
4
|
-
"version": "3.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202301120847",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"vue": "^2.6.12 || ^3.0.2"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
48
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202301120847"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@progress/kendo-data-query": "^1.0.0",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"@progress/kendo-drawing": "^1.8.0",
|
|
54
54
|
"@progress/kendo-licensing": "^1.3.0",
|
|
55
55
|
"@progress/kendo-svg-icons": "^1.0.0",
|
|
56
|
-
"@progress/kendo-vue-animation": "3.7.4-dev.
|
|
57
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-dateinputs": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-grid": "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-popup": "3.7.4-dev.
|
|
56
|
+
"@progress/kendo-vue-animation": "3.7.4-dev.202301120847",
|
|
57
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202301120847",
|
|
58
|
+
"@progress/kendo-vue-dateinputs": "3.7.4-dev.202301120847",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202301120847",
|
|
60
|
+
"@progress/kendo-vue-grid": "3.7.4-dev.202301120847",
|
|
61
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202301120847",
|
|
62
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202301120847",
|
|
63
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301120847"
|
|
64
64
|
},
|
|
65
65
|
"@progress": {
|
|
66
66
|
"friendlyName": "Data Tools",
|