@progress/kendo-vue-data-tools 3.7.4-dev.202301120847 → 3.7.4-dev.202301131104

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.
@@ -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: 1673512534,
8
+ publishDate: 1673607169,
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 && h(KButton, {
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
- var postDots = this.end < this.$props.totalPages && h(KButton, {
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 h(KButton, {
115
- key: page,
116
- onClick: function onClick(e) {
117
- return _this.click(e, page);
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
- selected: this.$props.currentPage === page,
125
- attrs: this.v3 ? undefined : {
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
- fillMode: 'flat',
135
- themeColor: 'primary',
136
- size: this.$props.size,
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", {
@@ -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: 1673512534,
8
+ publishDate: 1673607169,
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 && h(KButton, {
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
- var postDots = this.end < this.$props.totalPages && h(KButton, {
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 h(KButton, {
115
- key: page,
116
- onClick: function onClick(e) {
117
- return _this.click(e, page);
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
- selected: this.$props.currentPage === page,
125
- attrs: this.v3 ? undefined : {
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
- fillMode: 'flat',
135
- themeColor: 'primary',
136
- size: this.$props.size,
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", {
@@ -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: 1673512534,
11
+ publishDate: 1673607169,
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 && h(kendo_vue_buttons_1.Button, {
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
- var postDots = this.end < this.$props.totalPages && h(kendo_vue_buttons_1.Button, {
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 h(kendo_vue_buttons_1.Button, {
121
- key: page,
122
- onClick: function onClick(e) {
123
- return _this.click(e, page);
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
- selected: this.$props.currentPage === page,
131
- attrs: this.v3 ? undefined : {
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
- fillMode: 'flat',
141
- themeColor: 'primary',
142
- size: this.$props.size,
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.202301120847",
4
+ "version": "3.7.4-dev.202301131104",
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.202301120847"
48
+ "@progress/kendo-vue-common": "3.7.4-dev.202301131104"
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.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"
56
+ "@progress/kendo-vue-animation": "3.7.4-dev.202301131104",
57
+ "@progress/kendo-vue-buttons": "3.7.4-dev.202301131104",
58
+ "@progress/kendo-vue-dateinputs": "3.7.4-dev.202301131104",
59
+ "@progress/kendo-vue-dropdowns": "3.7.4-dev.202301131104",
60
+ "@progress/kendo-vue-grid": "3.7.4-dev.202301131104",
61
+ "@progress/kendo-vue-inputs": "3.7.4-dev.202301131104",
62
+ "@progress/kendo-vue-intl": "3.7.4-dev.202301131104",
63
+ "@progress/kendo-vue-popup": "3.7.4-dev.202301131104"
64
64
  },
65
65
  "@progress": {
66
66
  "friendlyName": "Data Tools",