@progress/kendo-vue-data-tools 3.7.4-dev.202301120847 → 3.7.4-dev.202301151601
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/cells/FilterCell.js +7 -3
- package/dist/es/drag/CommonDragLogic.js +1 -1
- package/dist/es/header/HeaderRow.js +3 -3
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/pager/PagerNumericButtons.js +36 -23
- package/dist/esm/cells/FilterCell.js +7 -3
- package/dist/esm/drag/CommonDragLogic.js +1 -1
- package/dist/esm/header/HeaderRow.js +3 -3
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/pager/PagerNumericButtons.js +36 -23
- package/dist/npm/cells/FilterCell.js +6 -2
- package/dist/npm/drag/CommonDragLogic.js +1 -1
- package/dist/npm/header/HeaderRow.js +3 -3
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/pager/PagerNumericButtons.js +36 -23
- package/package.json +10 -10
|
@@ -12,7 +12,7 @@ import { DatePicker } from '@progress/kendo-vue-dateinputs';
|
|
|
12
12
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
13
13
|
import { cellBoolDropdownChange, cellInputChange, cellOperatorChange } from '../filterCommon';
|
|
14
14
|
import { templateRendering, getListeners, getTemplate } from '@progress/kendo-vue-common';
|
|
15
|
-
import { filterClearIcon } from '@progress/kendo-svg-icons';
|
|
15
|
+
import { filterIcon, filterClearIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
/**
|
|
17
17
|
* @hidden
|
|
18
18
|
*/
|
|
@@ -107,7 +107,9 @@ var FilterCellVue2 = {
|
|
|
107
107
|
attrs: this.v3 ? undefined : {
|
|
108
108
|
value: selectedOperator,
|
|
109
109
|
size: size,
|
|
110
|
-
|
|
110
|
+
icon: 'filter',
|
|
111
|
+
svgIcon: filterIcon,
|
|
112
|
+
iconClassName: "k-button-icon",
|
|
111
113
|
"data-items": this.$props.operators,
|
|
112
114
|
textField: "text",
|
|
113
115
|
title: ls.toLanguageString(filterChooseOperator, messages[filterChooseOperator]),
|
|
@@ -118,7 +120,9 @@ var FilterCellVue2 = {
|
|
|
118
120
|
},
|
|
119
121
|
size: size,
|
|
120
122
|
"class": "k-dropdown-operator",
|
|
121
|
-
|
|
123
|
+
icon: 'filter',
|
|
124
|
+
svgIcon: filterIcon,
|
|
125
|
+
iconClassName: "k-button-icon",
|
|
122
126
|
"data-items": this.$props.operators,
|
|
123
127
|
textField: "text",
|
|
124
128
|
title: ls.toLanguageString(filterChooseOperator, messages[filterChooseOperator]),
|
|
@@ -52,7 +52,7 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
52
52
|
return;
|
|
53
53
|
}
|
|
54
54
|
_this.currentColumn = _this.getColumnIndex(event, element);
|
|
55
|
-
var groupPanelChildren = _this.groupPanelDivElement.children;
|
|
55
|
+
var groupPanelChildren = _this.groupPanelDivElement && _this.groupPanelDivElement.children;
|
|
56
56
|
_this.currentGroup = _this.isTargetGroupingContainer(event)
|
|
57
57
|
? groupPanelChildren && groupPanelChildren.length
|
|
58
58
|
? groupPanelChildren.length - 1
|
|
@@ -203,7 +203,7 @@ var HeaderRowVue2 = {
|
|
|
203
203
|
if (!this.$props.sort) {
|
|
204
204
|
return null;
|
|
205
205
|
}
|
|
206
|
-
var currentDir = this.$props.sort[iconSortIndex].dir;
|
|
206
|
+
var currentDir = iconSortIndex >= 0 ? this.$props.sort[iconSortIndex].dir : '';
|
|
207
207
|
return iconSortIndex >= 0 && [h(Icon, {
|
|
208
208
|
key: 1,
|
|
209
209
|
name: "sort-".concat(currentDir, "-small"),
|
|
@@ -338,7 +338,7 @@ var HeaderRowVue2 = {
|
|
|
338
338
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
339
339
|
}, _this2.v3 ? function () {
|
|
340
340
|
return [sortIcon];
|
|
341
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
341
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
342
342
|
"class": 'k-cell-inner'
|
|
343
343
|
}, [
|
|
344
344
|
// @ts-ignore function children
|
|
@@ -473,7 +473,7 @@ var HeaderRowVue2 = {
|
|
|
473
473
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
474
474
|
}, _this2.v3 ? function () {
|
|
475
475
|
return [sortIcon];
|
|
476
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
476
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
477
477
|
"class": 'k-cell-inner'
|
|
478
478
|
}, [h(HeaderSelectionCell, {
|
|
479
479
|
key: 1,
|
|
@@ -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: 1673797901,
|
|
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
|
};
|
|
@@ -65,7 +65,9 @@ var PagerNumericButtonsVue2 = {
|
|
|
65
65
|
render: function render(createElement) {
|
|
66
66
|
var _this = this;
|
|
67
67
|
var h = gh || createElement;
|
|
68
|
-
var prevDots = this.start > 1 &&
|
|
68
|
+
var prevDots = this.start > 1 &&
|
|
69
|
+
// @ts-ignore function children
|
|
70
|
+
h(KButton, {
|
|
69
71
|
fillMode: 'flat',
|
|
70
72
|
attrs: this.v3 ? undefined : {
|
|
71
73
|
fillMode: 'flat',
|
|
@@ -84,8 +86,12 @@ var PagerNumericButtonsVue2 = {
|
|
|
84
86
|
return _this.click(e, _this.start - 1);
|
|
85
87
|
}
|
|
86
88
|
}
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
+
}, this.v3 ? function () {
|
|
90
|
+
return ["..."];
|
|
91
|
+
} : ["..."]);
|
|
92
|
+
var postDots = this.end < this.$props.totalPages &&
|
|
93
|
+
// @ts-ignore function children
|
|
94
|
+
h(KButton, {
|
|
89
95
|
fillMode: 'flat',
|
|
90
96
|
attrs: this.v3 ? undefined : {
|
|
91
97
|
fillMode: 'flat',
|
|
@@ -104,40 +110,47 @@ var PagerNumericButtonsVue2 = {
|
|
|
104
110
|
return _this.click(e, _this.end + 1);
|
|
105
111
|
}
|
|
106
112
|
}
|
|
107
|
-
},
|
|
113
|
+
}, this.v3 ? function () {
|
|
114
|
+
return ["..."];
|
|
115
|
+
} : ["..."]);
|
|
108
116
|
var buttons = [];
|
|
109
117
|
for (var idx = this.start; idx <= this.end; idx++) {
|
|
110
118
|
buttons.push(idx);
|
|
111
119
|
}
|
|
112
120
|
var numerics = buttons.map(function (page) {
|
|
113
121
|
var _this = this;
|
|
114
|
-
return
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
on: this.v3 ? undefined : {
|
|
120
|
-
"click": function onClick(e) {
|
|
122
|
+
return (
|
|
123
|
+
// @ts-ignore function children
|
|
124
|
+
h(KButton, {
|
|
125
|
+
key: page,
|
|
126
|
+
onClick: function onClick(e) {
|
|
121
127
|
return _this.click(e, page);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
128
|
+
},
|
|
129
|
+
on: this.v3 ? undefined : {
|
|
130
|
+
"click": function onClick(e) {
|
|
131
|
+
return _this.click(e, page);
|
|
132
|
+
}
|
|
133
|
+
},
|
|
126
134
|
selected: this.$props.currentPage === page,
|
|
135
|
+
attrs: this.v3 ? undefined : {
|
|
136
|
+
selected: this.$props.currentPage === page,
|
|
137
|
+
fillMode: 'flat',
|
|
138
|
+
themeColor: 'primary',
|
|
139
|
+
size: this.$props.size,
|
|
140
|
+
rounded: null,
|
|
141
|
+
role: "button",
|
|
142
|
+
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
143
|
+
},
|
|
127
144
|
fillMode: 'flat',
|
|
128
145
|
themeColor: 'primary',
|
|
129
146
|
size: this.$props.size,
|
|
130
147
|
rounded: null,
|
|
131
148
|
role: "button",
|
|
132
149
|
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
133
|
-
},
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
rounded: null,
|
|
138
|
-
role: "button",
|
|
139
|
-
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
140
|
-
}, [page]);
|
|
150
|
+
}, this.v3 ? function () {
|
|
151
|
+
return [page];
|
|
152
|
+
} : [page])
|
|
153
|
+
);
|
|
141
154
|
}, this);
|
|
142
155
|
var dropdown = function dropdown(currentButtons) {
|
|
143
156
|
return h("select", {
|
|
@@ -12,7 +12,7 @@ import { DatePicker } from '@progress/kendo-vue-dateinputs';
|
|
|
12
12
|
import { provideLocalizationService } from '@progress/kendo-vue-intl';
|
|
13
13
|
import { cellBoolDropdownChange, cellInputChange, cellOperatorChange } from '../filterCommon.js';
|
|
14
14
|
import { templateRendering, getListeners, getTemplate } from '@progress/kendo-vue-common';
|
|
15
|
-
import { filterClearIcon } from '@progress/kendo-svg-icons';
|
|
15
|
+
import { filterIcon, filterClearIcon } from '@progress/kendo-svg-icons';
|
|
16
16
|
/**
|
|
17
17
|
* @hidden
|
|
18
18
|
*/
|
|
@@ -107,7 +107,9 @@ var FilterCellVue2 = {
|
|
|
107
107
|
attrs: this.v3 ? undefined : {
|
|
108
108
|
value: selectedOperator,
|
|
109
109
|
size: size,
|
|
110
|
-
|
|
110
|
+
icon: 'filter',
|
|
111
|
+
svgIcon: filterIcon,
|
|
112
|
+
iconClassName: "k-button-icon",
|
|
111
113
|
"data-items": this.$props.operators,
|
|
112
114
|
textField: "text",
|
|
113
115
|
title: ls.toLanguageString(filterChooseOperator, messages[filterChooseOperator]),
|
|
@@ -118,7 +120,9 @@ var FilterCellVue2 = {
|
|
|
118
120
|
},
|
|
119
121
|
size: size,
|
|
120
122
|
"class": "k-dropdown-operator",
|
|
121
|
-
|
|
123
|
+
icon: 'filter',
|
|
124
|
+
svgIcon: filterIcon,
|
|
125
|
+
iconClassName: "k-button-icon",
|
|
122
126
|
"data-items": this.$props.operators,
|
|
123
127
|
textField: "text",
|
|
124
128
|
title: ls.toLanguageString(filterChooseOperator, messages[filterChooseOperator]),
|
|
@@ -52,7 +52,7 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
52
52
|
return;
|
|
53
53
|
}
|
|
54
54
|
_this.currentColumn = _this.getColumnIndex(event, element);
|
|
55
|
-
var groupPanelChildren = _this.groupPanelDivElement.children;
|
|
55
|
+
var groupPanelChildren = _this.groupPanelDivElement && _this.groupPanelDivElement.children;
|
|
56
56
|
_this.currentGroup = _this.isTargetGroupingContainer(event)
|
|
57
57
|
? groupPanelChildren && groupPanelChildren.length
|
|
58
58
|
? groupPanelChildren.length - 1
|
|
@@ -203,7 +203,7 @@ var HeaderRowVue2 = {
|
|
|
203
203
|
if (!this.$props.sort) {
|
|
204
204
|
return null;
|
|
205
205
|
}
|
|
206
|
-
var currentDir = this.$props.sort[iconSortIndex].dir;
|
|
206
|
+
var currentDir = iconSortIndex >= 0 ? this.$props.sort[iconSortIndex].dir : '';
|
|
207
207
|
return iconSortIndex >= 0 && [h(Icon, {
|
|
208
208
|
key: 1,
|
|
209
209
|
name: "sort-".concat(currentDir, "-small"),
|
|
@@ -338,7 +338,7 @@ var HeaderRowVue2 = {
|
|
|
338
338
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
339
339
|
}, _this2.v3 ? function () {
|
|
340
340
|
return [sortIcon];
|
|
341
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
341
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
342
342
|
"class": 'k-cell-inner'
|
|
343
343
|
}, [
|
|
344
344
|
// @ts-ignore function children
|
|
@@ -473,7 +473,7 @@ var HeaderRowVue2 = {
|
|
|
473
473
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
474
474
|
}, _this2.v3 ? function () {
|
|
475
475
|
return [sortIcon];
|
|
476
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
476
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
477
477
|
"class": 'k-cell-inner'
|
|
478
478
|
}, [h(HeaderSelectionCell, {
|
|
479
479
|
key: 1,
|
|
@@ -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: 1673797901,
|
|
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
|
};
|
|
@@ -65,7 +65,9 @@ var PagerNumericButtonsVue2 = {
|
|
|
65
65
|
render: function render(createElement) {
|
|
66
66
|
var _this = this;
|
|
67
67
|
var h = gh || createElement;
|
|
68
|
-
var prevDots = this.start > 1 &&
|
|
68
|
+
var prevDots = this.start > 1 &&
|
|
69
|
+
// @ts-ignore function children
|
|
70
|
+
h(KButton, {
|
|
69
71
|
fillMode: 'flat',
|
|
70
72
|
attrs: this.v3 ? undefined : {
|
|
71
73
|
fillMode: 'flat',
|
|
@@ -84,8 +86,12 @@ var PagerNumericButtonsVue2 = {
|
|
|
84
86
|
return _this.click(e, _this.start - 1);
|
|
85
87
|
}
|
|
86
88
|
}
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
+
}, this.v3 ? function () {
|
|
90
|
+
return ["..."];
|
|
91
|
+
} : ["..."]);
|
|
92
|
+
var postDots = this.end < this.$props.totalPages &&
|
|
93
|
+
// @ts-ignore function children
|
|
94
|
+
h(KButton, {
|
|
89
95
|
fillMode: 'flat',
|
|
90
96
|
attrs: this.v3 ? undefined : {
|
|
91
97
|
fillMode: 'flat',
|
|
@@ -104,40 +110,47 @@ var PagerNumericButtonsVue2 = {
|
|
|
104
110
|
return _this.click(e, _this.end + 1);
|
|
105
111
|
}
|
|
106
112
|
}
|
|
107
|
-
},
|
|
113
|
+
}, this.v3 ? function () {
|
|
114
|
+
return ["..."];
|
|
115
|
+
} : ["..."]);
|
|
108
116
|
var buttons = [];
|
|
109
117
|
for (var idx = this.start; idx <= this.end; idx++) {
|
|
110
118
|
buttons.push(idx);
|
|
111
119
|
}
|
|
112
120
|
var numerics = buttons.map(function (page) {
|
|
113
121
|
var _this = this;
|
|
114
|
-
return
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
on: this.v3 ? undefined : {
|
|
120
|
-
"click": function onClick(e) {
|
|
122
|
+
return (
|
|
123
|
+
// @ts-ignore function children
|
|
124
|
+
h(KButton, {
|
|
125
|
+
key: page,
|
|
126
|
+
onClick: function onClick(e) {
|
|
121
127
|
return _this.click(e, page);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
128
|
+
},
|
|
129
|
+
on: this.v3 ? undefined : {
|
|
130
|
+
"click": function onClick(e) {
|
|
131
|
+
return _this.click(e, page);
|
|
132
|
+
}
|
|
133
|
+
},
|
|
126
134
|
selected: this.$props.currentPage === page,
|
|
135
|
+
attrs: this.v3 ? undefined : {
|
|
136
|
+
selected: this.$props.currentPage === page,
|
|
137
|
+
fillMode: 'flat',
|
|
138
|
+
themeColor: 'primary',
|
|
139
|
+
size: this.$props.size,
|
|
140
|
+
rounded: null,
|
|
141
|
+
role: "button",
|
|
142
|
+
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
143
|
+
},
|
|
127
144
|
fillMode: 'flat',
|
|
128
145
|
themeColor: 'primary',
|
|
129
146
|
size: this.$props.size,
|
|
130
147
|
rounded: null,
|
|
131
148
|
role: "button",
|
|
132
149
|
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
133
|
-
},
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
rounded: null,
|
|
138
|
-
role: "button",
|
|
139
|
-
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
140
|
-
}, [page]);
|
|
150
|
+
}, this.v3 ? function () {
|
|
151
|
+
return [page];
|
|
152
|
+
} : [page])
|
|
153
|
+
);
|
|
141
154
|
}, this);
|
|
142
155
|
var dropdown = function dropdown(currentButtons) {
|
|
143
156
|
return h("select", {
|
|
@@ -113,7 +113,9 @@ var FilterCellVue2 = {
|
|
|
113
113
|
attrs: this.v3 ? undefined : {
|
|
114
114
|
value: selectedOperator,
|
|
115
115
|
size: size,
|
|
116
|
-
|
|
116
|
+
icon: 'filter',
|
|
117
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
118
|
+
iconClassName: "k-button-icon",
|
|
117
119
|
"data-items": this.$props.operators,
|
|
118
120
|
textField: "text",
|
|
119
121
|
title: ls.toLanguageString(main_1.columnMenuFilterChooseOperator, main_1.messages[main_1.columnMenuFilterChooseOperator]),
|
|
@@ -124,7 +126,9 @@ var FilterCellVue2 = {
|
|
|
124
126
|
},
|
|
125
127
|
size: size,
|
|
126
128
|
"class": "k-dropdown-operator",
|
|
127
|
-
|
|
129
|
+
icon: 'filter',
|
|
130
|
+
svgIcon: kendo_svg_icons_1.filterIcon,
|
|
131
|
+
iconClassName: "k-button-icon",
|
|
128
132
|
"data-items": this.$props.operators,
|
|
129
133
|
textField: "text",
|
|
130
134
|
title: ls.toLanguageString(main_1.columnMenuFilterChooseOperator, main_1.messages[main_1.columnMenuFilterChooseOperator]),
|
|
@@ -55,7 +55,7 @@ var CommonDragLogic = /** @class */ (function () {
|
|
|
55
55
|
return;
|
|
56
56
|
}
|
|
57
57
|
_this.currentColumn = _this.getColumnIndex(event, element);
|
|
58
|
-
var groupPanelChildren = _this.groupPanelDivElement.children;
|
|
58
|
+
var groupPanelChildren = _this.groupPanelDivElement && _this.groupPanelDivElement.children;
|
|
59
59
|
_this.currentGroup = _this.isTargetGroupingContainer(event)
|
|
60
60
|
? groupPanelChildren && groupPanelChildren.length
|
|
61
61
|
? groupPanelChildren.length - 1
|
|
@@ -209,7 +209,7 @@ var HeaderRowVue2 = {
|
|
|
209
209
|
if (!this.$props.sort) {
|
|
210
210
|
return null;
|
|
211
211
|
}
|
|
212
|
-
var currentDir = this.$props.sort[iconSortIndex].dir;
|
|
212
|
+
var currentDir = iconSortIndex >= 0 ? this.$props.sort[iconSortIndex].dir : '';
|
|
213
213
|
return iconSortIndex >= 0 && [h(kendo_vue_common_1.Icon, {
|
|
214
214
|
key: 1,
|
|
215
215
|
name: "sort-".concat(currentDir, "-small"),
|
|
@@ -344,7 +344,7 @@ var HeaderRowVue2 = {
|
|
|
344
344
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
345
345
|
}, _this2.v3 ? function () {
|
|
346
346
|
return [sortIcon];
|
|
347
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
347
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
348
348
|
"class": 'k-cell-inner'
|
|
349
349
|
}, [
|
|
350
350
|
// @ts-ignore function children
|
|
@@ -479,7 +479,7 @@ var HeaderRowVue2 = {
|
|
|
479
479
|
render: (column.headerCell || _this2.$props.cellRender) && _this2.getTemplate(column.headerCell || _this2.$props.cellRender)
|
|
480
480
|
}, _this2.v3 ? function () {
|
|
481
481
|
return [sortIcon];
|
|
482
|
-
} : [sortIcon])]) || column.field === _this2.$props.selectedField && h("span", {
|
|
482
|
+
} : [sortIcon])]) || _this2.$props.selectedField && column.field === _this2.$props.selectedField && h("span", {
|
|
483
483
|
"class": 'k-cell-inner'
|
|
484
484
|
}, [h(HeaderSelectionCell_1.HeaderSelectionCell, {
|
|
485
485
|
key: 1,
|
|
@@ -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: 1673797901,
|
|
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
|
};
|
|
@@ -71,7 +71,9 @@ var PagerNumericButtonsVue2 = {
|
|
|
71
71
|
render: function render(createElement) {
|
|
72
72
|
var _this = this;
|
|
73
73
|
var h = gh || createElement;
|
|
74
|
-
var prevDots = this.start > 1 &&
|
|
74
|
+
var prevDots = this.start > 1 &&
|
|
75
|
+
// @ts-ignore function children
|
|
76
|
+
h(kendo_vue_buttons_1.Button, {
|
|
75
77
|
fillMode: 'flat',
|
|
76
78
|
attrs: this.v3 ? undefined : {
|
|
77
79
|
fillMode: 'flat',
|
|
@@ -90,8 +92,12 @@ var PagerNumericButtonsVue2 = {
|
|
|
90
92
|
return _this.click(e, _this.start - 1);
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
+
}, this.v3 ? function () {
|
|
96
|
+
return ["..."];
|
|
97
|
+
} : ["..."]);
|
|
98
|
+
var postDots = this.end < this.$props.totalPages &&
|
|
99
|
+
// @ts-ignore function children
|
|
100
|
+
h(kendo_vue_buttons_1.Button, {
|
|
95
101
|
fillMode: 'flat',
|
|
96
102
|
attrs: this.v3 ? undefined : {
|
|
97
103
|
fillMode: 'flat',
|
|
@@ -110,40 +116,47 @@ var PagerNumericButtonsVue2 = {
|
|
|
110
116
|
return _this.click(e, _this.end + 1);
|
|
111
117
|
}
|
|
112
118
|
}
|
|
113
|
-
},
|
|
119
|
+
}, this.v3 ? function () {
|
|
120
|
+
return ["..."];
|
|
121
|
+
} : ["..."]);
|
|
114
122
|
var buttons = [];
|
|
115
123
|
for (var idx = this.start; idx <= this.end; idx++) {
|
|
116
124
|
buttons.push(idx);
|
|
117
125
|
}
|
|
118
126
|
var numerics = buttons.map(function (page) {
|
|
119
127
|
var _this = this;
|
|
120
|
-
return
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
on: this.v3 ? undefined : {
|
|
126
|
-
"click": function onClick(e) {
|
|
128
|
+
return (
|
|
129
|
+
// @ts-ignore function children
|
|
130
|
+
h(kendo_vue_buttons_1.Button, {
|
|
131
|
+
key: page,
|
|
132
|
+
onClick: function onClick(e) {
|
|
127
133
|
return _this.click(e, page);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
134
|
+
},
|
|
135
|
+
on: this.v3 ? undefined : {
|
|
136
|
+
"click": function onClick(e) {
|
|
137
|
+
return _this.click(e, page);
|
|
138
|
+
}
|
|
139
|
+
},
|
|
132
140
|
selected: this.$props.currentPage === page,
|
|
141
|
+
attrs: this.v3 ? undefined : {
|
|
142
|
+
selected: this.$props.currentPage === page,
|
|
143
|
+
fillMode: 'flat',
|
|
144
|
+
themeColor: 'primary',
|
|
145
|
+
size: this.$props.size,
|
|
146
|
+
rounded: null,
|
|
147
|
+
role: "button",
|
|
148
|
+
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
149
|
+
},
|
|
133
150
|
fillMode: 'flat',
|
|
134
151
|
themeColor: 'primary',
|
|
135
152
|
size: this.$props.size,
|
|
136
153
|
rounded: null,
|
|
137
154
|
role: "button",
|
|
138
155
|
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
139
|
-
},
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
rounded: null,
|
|
144
|
-
role: "button",
|
|
145
|
-
"aria-current": this.$props.currentPage === page ? true : undefined
|
|
146
|
-
}, [page]);
|
|
156
|
+
}, this.v3 ? function () {
|
|
157
|
+
return [page];
|
|
158
|
+
} : [page])
|
|
159
|
+
);
|
|
147
160
|
}, this);
|
|
148
161
|
var dropdown = function dropdown(currentButtons) {
|
|
149
162
|
return h("select", {
|
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.202301151601",
|
|
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.202301151601"
|
|
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.202301151601",
|
|
57
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202301151601",
|
|
58
|
+
"@progress/kendo-vue-dateinputs": "3.7.4-dev.202301151601",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202301151601",
|
|
60
|
+
"@progress/kendo-vue-grid": "3.7.4-dev.202301151601",
|
|
61
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202301151601",
|
|
62
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202301151601",
|
|
63
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202301151601"
|
|
64
64
|
},
|
|
65
65
|
"@progress": {
|
|
66
66
|
"friendlyName": "Data Tools",
|