@syncfusion/ej2-vue-grids 19.3.48 → 19.3.56
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/CHANGELOG.md +39 -0
- package/dist/ej2-vue-grids.umd.min.js +1 -10
- package/dist/es6/ej2-vue-grids.es2015.js +97 -46
- package/dist/es6/ej2-vue-grids.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-grids.es5.js +132 -58
- package/dist/es6/ej2-vue-grids.es5.js.map +1 -1
- package/dist/global/ej2-vue-grids.min.js +2 -2
- package/package.json +8 -8
- package/src/grid/grid.component.js +5 -2
- package/src/grid/index.d.ts +1 -0
- package/src/grid/index.js +1 -0
- package/src/grid/stacked-column.directive.d.ts +19 -0
- package/src/grid/stacked-column.directive.js +76 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/styles/bootstrap5-dark.css +1 -0
- package/styles/bootstrap5.css +1 -0
- package/styles/excel-filter/bootstrap5-dark.css +1 -0
- package/styles/excel-filter/bootstrap5.css +1 -0
- package/styles/grid/bootstrap5-dark.css +1 -0
- package/styles/grid/bootstrap5.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,45 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I338678` - frozen horizontal scroll issue in `Ipad` device has been fixed.
|
|
10
|
+
- `#I348728` - Throws script error while cancel the Excel filter is fixed.
|
|
11
|
+
|
|
12
|
+
- `#F170304` - Printing Grid is not working when using `GroupCaptionTemplate` in vue component.
|
|
13
|
+
|
|
14
|
+
## 19.3.55 (2021-11-23)
|
|
15
|
+
|
|
16
|
+
### Grid
|
|
17
|
+
|
|
18
|
+
#### Bug Fixes
|
|
19
|
+
|
|
20
|
+
- `#F170201` - Passed `groupcaption` details in the `exportGroupCaption` event arguments.
|
|
21
|
+
- `#I347287` - Maximum call stack issue occurs when checkbox columns set visible property as false for first column has been fixed.
|
|
22
|
+
- `#I347439` - The last row bottom border issue in Frozen right part has been fixed.
|
|
23
|
+
- `#I348589` - Changing grid height programmatically throws script error while scrolling issue has been fixed.
|
|
24
|
+
|
|
25
|
+
## 19.3.54 (2021-11-17)
|
|
26
|
+
|
|
27
|
+
### Grid
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#I346575` - Command button click event argument type not returned properly is fixed.
|
|
32
|
+
- `#I347290` - Persist selection is not working properly when enable selection dynamically is fixed.
|
|
33
|
+
- `#I344276` - `HTMLtag` is not disable properly in tooltip has been fixed.
|
|
34
|
+
- `#I346882` - Throws script error while enabling with `filterbarTemplate` with `ShowFilterBarOperator` is fixed.
|
|
35
|
+
- `#F170007` - Autofit issue while render empty records has been fixed.
|
|
36
|
+
- `#I345285` - Footer aggregate is not aligned properly has been fixed.
|
|
37
|
+
|
|
38
|
+
#### New Features
|
|
39
|
+
|
|
40
|
+
- `#I338539` - Provided the tag helper support for single level stacked header in Angular Grid.
|
|
41
|
+
|
|
42
|
+
## 19.3.48 (2021-11-02)
|
|
43
|
+
|
|
44
|
+
### Grid
|
|
45
|
+
|
|
46
|
+
#### Bug Fixes
|
|
47
|
+
|
|
9
48
|
- `#I345881` - Script error while reordering with the column `virtualization` is resolved.
|
|
10
49
|
- `#I345229` - `expandAll` and `CollapseAll` in grouping issue has been fixed.
|
|
11
50
|
- `#I343503` - row Selected data is incorrect while apply Sorting and Grouping is fixed.
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-grids.umd.min.js
|
|
3
|
-
* version : 19.3.
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
|
-
* Use of this code is subject to the terms of our license.
|
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
-
* applicable laws.
|
|
9
|
-
*/
|
|
10
|
-
/*!
|
|
11
|
-
* filename: ej2-vue-grids.umd.min.js
|
|
12
|
-
* version : 19.2.55
|
|
3
|
+
* version : 19.3.56
|
|
13
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
14
5
|
* Use of this code is subject to the terms of our license.
|
|
15
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -18,16 +18,65 @@ if (!isExecute || parseInt(allVue.version) < 3) {
|
|
|
18
18
|
else {
|
|
19
19
|
vueImport = Vue$1;
|
|
20
20
|
}
|
|
21
|
-
let
|
|
21
|
+
let StackedColumnsDirective = class StackedColumnsDirective extends vueImport {
|
|
22
22
|
render() {
|
|
23
23
|
return;
|
|
24
24
|
}
|
|
25
25
|
getTag() {
|
|
26
|
-
return 'e-columns';
|
|
26
|
+
return 'e-stacked-columns';
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
StackedColumnsDirective = __decorate([
|
|
30
30
|
EJComponentDecorator({}, isExecute)
|
|
31
|
+
], StackedColumnsDirective);
|
|
32
|
+
const StackedColumnsPlugin = {
|
|
33
|
+
name: 'e-stacked-columns',
|
|
34
|
+
install(Vue$$1) {
|
|
35
|
+
Vue$$1.component(StackedColumnsPlugin.name, StackedColumnsDirective);
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
let StackedColumnDirective = class StackedColumnDirective extends vueImport {
|
|
39
|
+
render() {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
getTag() {
|
|
43
|
+
return 'e-stacked-column';
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
StackedColumnDirective = __decorate([
|
|
47
|
+
EJComponentDecorator({}, isExecute)
|
|
48
|
+
], StackedColumnDirective);
|
|
49
|
+
const StackedColumnPlugin = {
|
|
50
|
+
name: 'e-stacked-column',
|
|
51
|
+
install(Vue$$1) {
|
|
52
|
+
Vue$$1.component(StackedColumnPlugin.name, StackedColumnDirective);
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
57
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
58
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
59
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
60
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
61
|
+
};
|
|
62
|
+
const isExecute$1 = gh ? false : true;
|
|
63
|
+
let vueImport$1;
|
|
64
|
+
if (!isExecute$1 || parseInt(allVue.version) < 3) {
|
|
65
|
+
vueImport$1 = Vue;
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
vueImport$1 = Vue$1;
|
|
69
|
+
}
|
|
70
|
+
let ColumnsDirective = class ColumnsDirective extends vueImport$1 {
|
|
71
|
+
render() {
|
|
72
|
+
return;
|
|
73
|
+
}
|
|
74
|
+
getTag() {
|
|
75
|
+
return 'e-columns';
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
ColumnsDirective = __decorate$1([
|
|
79
|
+
EJComponentDecorator({}, isExecute$1)
|
|
31
80
|
], ColumnsDirective);
|
|
32
81
|
const ColumnsPlugin = {
|
|
33
82
|
name: 'e-columns',
|
|
@@ -47,7 +96,7 @@ const ColumnsPlugin = {
|
|
|
47
96
|
* </ejs-grid>
|
|
48
97
|
* ```
|
|
49
98
|
*/
|
|
50
|
-
let ColumnDirective = class ColumnDirective extends vueImport {
|
|
99
|
+
let ColumnDirective = class ColumnDirective extends vueImport$1 {
|
|
51
100
|
render() {
|
|
52
101
|
return;
|
|
53
102
|
}
|
|
@@ -55,8 +104,8 @@ let ColumnDirective = class ColumnDirective extends vueImport {
|
|
|
55
104
|
return 'e-column';
|
|
56
105
|
}
|
|
57
106
|
};
|
|
58
|
-
ColumnDirective = __decorate([
|
|
59
|
-
EJComponentDecorator({}, isExecute)
|
|
107
|
+
ColumnDirective = __decorate$1([
|
|
108
|
+
EJComponentDecorator({}, isExecute$1)
|
|
60
109
|
], ColumnDirective);
|
|
61
110
|
const ColumnPlugin = {
|
|
62
111
|
name: 'e-column',
|
|
@@ -65,21 +114,21 @@ const ColumnPlugin = {
|
|
|
65
114
|
}
|
|
66
115
|
};
|
|
67
116
|
|
|
68
|
-
var __decorate$
|
|
117
|
+
var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
69
118
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
70
119
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
71
120
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
72
121
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
73
122
|
};
|
|
74
|
-
const isExecute$
|
|
75
|
-
let vueImport$
|
|
76
|
-
if (!isExecute$
|
|
77
|
-
vueImport$
|
|
123
|
+
const isExecute$2 = gh ? false : true;
|
|
124
|
+
let vueImport$2;
|
|
125
|
+
if (!isExecute$2 || parseInt(allVue.version) < 3) {
|
|
126
|
+
vueImport$2 = Vue;
|
|
78
127
|
}
|
|
79
128
|
else {
|
|
80
|
-
vueImport$
|
|
129
|
+
vueImport$2 = Vue$1;
|
|
81
130
|
}
|
|
82
|
-
let AggregateColumnsDirective = class AggregateColumnsDirective extends vueImport$
|
|
131
|
+
let AggregateColumnsDirective = class AggregateColumnsDirective extends vueImport$2 {
|
|
83
132
|
render() {
|
|
84
133
|
return;
|
|
85
134
|
}
|
|
@@ -87,8 +136,8 @@ let AggregateColumnsDirective = class AggregateColumnsDirective extends vueImpor
|
|
|
87
136
|
return 'e-columns';
|
|
88
137
|
}
|
|
89
138
|
};
|
|
90
|
-
AggregateColumnsDirective = __decorate$
|
|
91
|
-
EJComponentDecorator({}, isExecute$
|
|
139
|
+
AggregateColumnsDirective = __decorate$2([
|
|
140
|
+
EJComponentDecorator({}, isExecute$2)
|
|
92
141
|
], AggregateColumnsDirective);
|
|
93
142
|
const AggregateColumnsPlugin = {
|
|
94
143
|
name: 'e-columns',
|
|
@@ -114,7 +163,7 @@ const AggregateColumnsPlugin = {
|
|
|
114
163
|
* </ejs-grid>
|
|
115
164
|
* ```
|
|
116
165
|
*/
|
|
117
|
-
let AggregateColumnDirective = class AggregateColumnDirective extends vueImport$
|
|
166
|
+
let AggregateColumnDirective = class AggregateColumnDirective extends vueImport$2 {
|
|
118
167
|
render() {
|
|
119
168
|
return;
|
|
120
169
|
}
|
|
@@ -122,8 +171,8 @@ let AggregateColumnDirective = class AggregateColumnDirective extends vueImport$
|
|
|
122
171
|
return 'e-column';
|
|
123
172
|
}
|
|
124
173
|
};
|
|
125
|
-
AggregateColumnDirective = __decorate$
|
|
126
|
-
EJComponentDecorator({}, isExecute$
|
|
174
|
+
AggregateColumnDirective = __decorate$2([
|
|
175
|
+
EJComponentDecorator({}, isExecute$2)
|
|
127
176
|
], AggregateColumnDirective);
|
|
128
177
|
const AggregateColumnPlugin = {
|
|
129
178
|
name: 'e-column',
|
|
@@ -132,21 +181,21 @@ const AggregateColumnPlugin = {
|
|
|
132
181
|
}
|
|
133
182
|
};
|
|
134
183
|
|
|
135
|
-
var __decorate$
|
|
184
|
+
var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
136
185
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
137
186
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
138
187
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
139
188
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
140
189
|
};
|
|
141
|
-
const isExecute$
|
|
142
|
-
let vueImport$
|
|
143
|
-
if (!isExecute$
|
|
144
|
-
vueImport$
|
|
190
|
+
const isExecute$3 = gh ? false : true;
|
|
191
|
+
let vueImport$3;
|
|
192
|
+
if (!isExecute$3 || parseInt(allVue.version) < 3) {
|
|
193
|
+
vueImport$3 = Vue;
|
|
145
194
|
}
|
|
146
195
|
else {
|
|
147
|
-
vueImport$
|
|
196
|
+
vueImport$3 = Vue$1;
|
|
148
197
|
}
|
|
149
|
-
let AggregatesDirective = class AggregatesDirective extends vueImport$
|
|
198
|
+
let AggregatesDirective = class AggregatesDirective extends vueImport$3 {
|
|
150
199
|
render() {
|
|
151
200
|
return;
|
|
152
201
|
}
|
|
@@ -154,8 +203,8 @@ let AggregatesDirective = class AggregatesDirective extends vueImport$2 {
|
|
|
154
203
|
return 'e-aggregates';
|
|
155
204
|
}
|
|
156
205
|
};
|
|
157
|
-
AggregatesDirective = __decorate$
|
|
158
|
-
EJComponentDecorator({}, isExecute$
|
|
206
|
+
AggregatesDirective = __decorate$3([
|
|
207
|
+
EJComponentDecorator({}, isExecute$3)
|
|
159
208
|
], AggregatesDirective);
|
|
160
209
|
const AggregatesPlugin = {
|
|
161
210
|
name: 'e-aggregates',
|
|
@@ -182,7 +231,7 @@ const AggregatesPlugin = {
|
|
|
182
231
|
* </ejs-grid>
|
|
183
232
|
* ```
|
|
184
233
|
*/
|
|
185
|
-
let AggregateDirective = class AggregateDirective extends vueImport$
|
|
234
|
+
let AggregateDirective = class AggregateDirective extends vueImport$3 {
|
|
186
235
|
render() {
|
|
187
236
|
return;
|
|
188
237
|
}
|
|
@@ -190,8 +239,8 @@ let AggregateDirective = class AggregateDirective extends vueImport$2 {
|
|
|
190
239
|
return 'e-aggregate';
|
|
191
240
|
}
|
|
192
241
|
};
|
|
193
|
-
AggregateDirective = __decorate$
|
|
194
|
-
EJComponentDecorator({}, isExecute$
|
|
242
|
+
AggregateDirective = __decorate$3([
|
|
243
|
+
EJComponentDecorator({}, isExecute$3)
|
|
195
244
|
], AggregateDirective);
|
|
196
245
|
const AggregatePlugin = {
|
|
197
246
|
name: 'e-aggregate',
|
|
@@ -200,7 +249,7 @@ const AggregatePlugin = {
|
|
|
200
249
|
}
|
|
201
250
|
};
|
|
202
251
|
|
|
203
|
-
var __decorate$
|
|
252
|
+
var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
204
253
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
205
254
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
206
255
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
@@ -217,7 +266,7 @@ emitProbs.push('modelchanged');
|
|
|
217
266
|
for (let props of modelProps) {
|
|
218
267
|
emitProbs.push('update:' + props);
|
|
219
268
|
}
|
|
220
|
-
const isExecute$
|
|
269
|
+
const isExecute$4 = gh ? false : true;
|
|
221
270
|
/**
|
|
222
271
|
* `ejs-grid` represents the VueJS Grid Component.
|
|
223
272
|
* ```vue
|
|
@@ -237,9 +286,9 @@ class GridComponent extends ComponentBase {
|
|
|
237
286
|
this.models = modelProps;
|
|
238
287
|
this.hasChildDirective = true;
|
|
239
288
|
this.hasInjectedModules = true;
|
|
240
|
-
this.tagMapper = { "e-columns": "e-column", "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
|
|
241
|
-
this.tagNameMapper = {};
|
|
242
|
-
this.isVue3 = !isExecute$
|
|
289
|
+
this.tagMapper = { "e-columns": { "e-column": { "e-stacked-columns": "e-stacked-column" } }, "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
|
|
290
|
+
this.tagNameMapper = { "e-stacked-columns": "e-columns" };
|
|
291
|
+
this.isVue3 = !isExecute$4;
|
|
243
292
|
this.ej2Instances = new Grid({});
|
|
244
293
|
this.ej2Instances._trigger = this.ej2Instances.trigger;
|
|
245
294
|
this.ej2Instances.trigger = this.trigger;
|
|
@@ -294,14 +343,14 @@ class GridComponent extends ComponentBase {
|
|
|
294
343
|
}
|
|
295
344
|
}
|
|
296
345
|
trigger(eventName, eventProp, successHandler) {
|
|
297
|
-
if (!isExecute$
|
|
346
|
+
if (!isExecute$4) {
|
|
298
347
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
299
348
|
}
|
|
300
349
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
301
350
|
let key = this.models.toString().match(/checked|value/) || [];
|
|
302
351
|
let propKey = key[0];
|
|
303
352
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
304
|
-
if (!isExecute$
|
|
353
|
+
if (!isExecute$4) {
|
|
305
354
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
306
355
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
307
356
|
}
|
|
@@ -317,7 +366,7 @@ class GridComponent extends ComponentBase {
|
|
|
317
366
|
let key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
318
367
|
let propKey = key[0];
|
|
319
368
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
320
|
-
if (!isExecute$
|
|
369
|
+
if (!isExecute$4) {
|
|
321
370
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
322
371
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
323
372
|
}
|
|
@@ -721,13 +770,13 @@ class GridComponent extends ComponentBase {
|
|
|
721
770
|
return this.ej2Instances.updateRowValue(key, rowData);
|
|
722
771
|
}
|
|
723
772
|
};
|
|
724
|
-
GridComponent = __decorate$
|
|
773
|
+
GridComponent = __decorate$4([
|
|
725
774
|
EJComponentDecorator({
|
|
726
775
|
props: properties,
|
|
727
776
|
model: {
|
|
728
777
|
event: 'modelchanged'
|
|
729
778
|
}
|
|
730
|
-
}, isExecute$
|
|
779
|
+
}, isExecute$4)
|
|
731
780
|
/* Start Options({
|
|
732
781
|
props: props,
|
|
733
782
|
watch: watch,
|
|
@@ -740,6 +789,8 @@ const GridPlugin = {
|
|
|
740
789
|
Vue$$1.component(GridPlugin.name, GridComponent);
|
|
741
790
|
Vue$$1.component(ColumnPlugin.name, ColumnDirective);
|
|
742
791
|
Vue$$1.component(ColumnsPlugin.name, ColumnsDirective);
|
|
792
|
+
Vue$$1.component(StackedColumnPlugin.name, StackedColumnDirective);
|
|
793
|
+
Vue$$1.component(StackedColumnsPlugin.name, StackedColumnsDirective);
|
|
743
794
|
Vue$$1.component(AggregatePlugin.name, AggregateDirective);
|
|
744
795
|
Vue$$1.component(AggregatesPlugin.name, AggregatesDirective);
|
|
745
796
|
Vue$$1.component(AggregateColumnPlugin.name, AggregateColumnDirective);
|
|
@@ -747,7 +798,7 @@ const GridPlugin = {
|
|
|
747
798
|
}
|
|
748
799
|
};
|
|
749
800
|
|
|
750
|
-
var __decorate$
|
|
801
|
+
var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
751
802
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
752
803
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
753
804
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
@@ -764,7 +815,7 @@ emitProbs$1.push('modelchanged');
|
|
|
764
815
|
for (let props of modelProps$1) {
|
|
765
816
|
emitProbs$1.push('update:' + props);
|
|
766
817
|
}
|
|
767
|
-
const isExecute$
|
|
818
|
+
const isExecute$5 = gh ? false : true;
|
|
768
819
|
/**
|
|
769
820
|
* `ejs-pager` represents the VueJS Pager Component.
|
|
770
821
|
* ```vue
|
|
@@ -786,7 +837,7 @@ class PagerComponent extends ComponentBase {
|
|
|
786
837
|
this.hasInjectedModules = false;
|
|
787
838
|
this.tagMapper = {};
|
|
788
839
|
this.tagNameMapper = {};
|
|
789
|
-
this.isVue3 = !isExecute$
|
|
840
|
+
this.isVue3 = !isExecute$5;
|
|
790
841
|
this.ej2Instances = new Pager({});
|
|
791
842
|
this.bindProperties();
|
|
792
843
|
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
|
|
@@ -859,10 +910,10 @@ class PagerComponent extends ComponentBase {
|
|
|
859
910
|
return this.ej2Instances.refresh();
|
|
860
911
|
}
|
|
861
912
|
};
|
|
862
|
-
PagerComponent = __decorate$
|
|
913
|
+
PagerComponent = __decorate$5([
|
|
863
914
|
EJComponentDecorator({
|
|
864
915
|
props: properties$1
|
|
865
|
-
}, isExecute$
|
|
916
|
+
}, isExecute$5)
|
|
866
917
|
/* Start Options({
|
|
867
918
|
props: props,
|
|
868
919
|
watch: watch,
|
|
@@ -876,6 +927,6 @@ const PagerPlugin = {
|
|
|
876
927
|
}
|
|
877
928
|
};
|
|
878
929
|
|
|
879
|
-
export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin, AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin, AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin, GridComponent, GridPlugin, PagerComponent, PagerPlugin };
|
|
930
|
+
export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin, ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin, AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin, AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin, GridComponent, GridPlugin, PagerComponent, PagerPlugin };
|
|
880
931
|
export * from '@syncfusion/ej2-grids';
|
|
881
932
|
//# sourceMappingURL=ej2-vue-grids.es2015.js.map
|