@syncfusion/ej2-vue-grids 19.3.53 → 19.3.54
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 +17 -0
- package/dist/ej2-vue-grids.umd.min.js +10 -1
- 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 +7 -7
- 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
|
@@ -31,8 +31,80 @@ if (!isExecute || parseInt(allVue.version) < 3) {
|
|
|
31
31
|
else {
|
|
32
32
|
vueImport = Vue$1;
|
|
33
33
|
}
|
|
34
|
+
var StackedColumnsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
35
|
+
__extends(StackedColumnsDirective, _super);
|
|
36
|
+
function StackedColumnsDirective() {
|
|
37
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
38
|
+
}
|
|
39
|
+
StackedColumnsDirective.prototype.render = function () {
|
|
40
|
+
return;
|
|
41
|
+
};
|
|
42
|
+
StackedColumnsDirective.prototype.getTag = function () {
|
|
43
|
+
return 'e-stacked-columns';
|
|
44
|
+
};
|
|
45
|
+
StackedColumnsDirective = __decorate([
|
|
46
|
+
EJComponentDecorator({}, isExecute)
|
|
47
|
+
], StackedColumnsDirective);
|
|
48
|
+
return StackedColumnsDirective;
|
|
49
|
+
}(vueImport));
|
|
50
|
+
var StackedColumnsPlugin = {
|
|
51
|
+
name: 'e-stacked-columns',
|
|
52
|
+
install: function (Vue$$1) {
|
|
53
|
+
Vue$$1.component(StackedColumnsPlugin.name, StackedColumnsDirective);
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
var StackedColumnDirective = /** @__PURE__ @class */ (function (_super) {
|
|
57
|
+
__extends(StackedColumnDirective, _super);
|
|
58
|
+
function StackedColumnDirective() {
|
|
59
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
60
|
+
}
|
|
61
|
+
StackedColumnDirective.prototype.render = function () {
|
|
62
|
+
return;
|
|
63
|
+
};
|
|
64
|
+
StackedColumnDirective.prototype.getTag = function () {
|
|
65
|
+
return 'e-stacked-column';
|
|
66
|
+
};
|
|
67
|
+
StackedColumnDirective = __decorate([
|
|
68
|
+
EJComponentDecorator({}, isExecute)
|
|
69
|
+
], StackedColumnDirective);
|
|
70
|
+
return StackedColumnDirective;
|
|
71
|
+
}(vueImport));
|
|
72
|
+
var StackedColumnPlugin = {
|
|
73
|
+
name: 'e-stacked-column',
|
|
74
|
+
install: function (Vue$$1) {
|
|
75
|
+
Vue$$1.component(StackedColumnPlugin.name, StackedColumnDirective);
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
var __extends$1 = (undefined && undefined.__extends) || (function () {
|
|
80
|
+
var extendStatics = function (d, b) {
|
|
81
|
+
extendStatics = Object.setPrototypeOf ||
|
|
82
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
83
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
84
|
+
return extendStatics(d, b);
|
|
85
|
+
};
|
|
86
|
+
return function (d, b) {
|
|
87
|
+
extendStatics(d, b);
|
|
88
|
+
function __() { this.constructor = d; }
|
|
89
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
90
|
+
};
|
|
91
|
+
})();
|
|
92
|
+
var __decorate$1 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
93
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
94
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
95
|
+
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;
|
|
96
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
97
|
+
};
|
|
98
|
+
var isExecute$1 = gh ? false : true;
|
|
99
|
+
var vueImport$1;
|
|
100
|
+
if (!isExecute$1 || parseInt(allVue.version) < 3) {
|
|
101
|
+
vueImport$1 = Vue;
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
vueImport$1 = Vue$1;
|
|
105
|
+
}
|
|
34
106
|
var ColumnsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
35
|
-
__extends(ColumnsDirective, _super);
|
|
107
|
+
__extends$1(ColumnsDirective, _super);
|
|
36
108
|
function ColumnsDirective() {
|
|
37
109
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
38
110
|
}
|
|
@@ -42,11 +114,11 @@ var ColumnsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
42
114
|
ColumnsDirective.prototype.getTag = function () {
|
|
43
115
|
return 'e-columns';
|
|
44
116
|
};
|
|
45
|
-
ColumnsDirective = __decorate([
|
|
46
|
-
EJComponentDecorator({}, isExecute)
|
|
117
|
+
ColumnsDirective = __decorate$1([
|
|
118
|
+
EJComponentDecorator({}, isExecute$1)
|
|
47
119
|
], ColumnsDirective);
|
|
48
120
|
return ColumnsDirective;
|
|
49
|
-
}(vueImport));
|
|
121
|
+
}(vueImport$1));
|
|
50
122
|
var ColumnsPlugin = {
|
|
51
123
|
name: 'e-columns',
|
|
52
124
|
install: function (Vue$$1) {
|
|
@@ -66,7 +138,7 @@ var ColumnsPlugin = {
|
|
|
66
138
|
* ```
|
|
67
139
|
*/
|
|
68
140
|
var ColumnDirective = /** @__PURE__ @class */ (function (_super) {
|
|
69
|
-
__extends(ColumnDirective, _super);
|
|
141
|
+
__extends$1(ColumnDirective, _super);
|
|
70
142
|
function ColumnDirective() {
|
|
71
143
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
72
144
|
}
|
|
@@ -76,11 +148,11 @@ var ColumnDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
76
148
|
ColumnDirective.prototype.getTag = function () {
|
|
77
149
|
return 'e-column';
|
|
78
150
|
};
|
|
79
|
-
ColumnDirective = __decorate([
|
|
80
|
-
EJComponentDecorator({}, isExecute)
|
|
151
|
+
ColumnDirective = __decorate$1([
|
|
152
|
+
EJComponentDecorator({}, isExecute$1)
|
|
81
153
|
], ColumnDirective);
|
|
82
154
|
return ColumnDirective;
|
|
83
|
-
}(vueImport));
|
|
155
|
+
}(vueImport$1));
|
|
84
156
|
var ColumnPlugin = {
|
|
85
157
|
name: 'e-column',
|
|
86
158
|
install: function (Vue$$1) {
|
|
@@ -88,7 +160,7 @@ var ColumnPlugin = {
|
|
|
88
160
|
}
|
|
89
161
|
};
|
|
90
162
|
|
|
91
|
-
var __extends$
|
|
163
|
+
var __extends$2 = (undefined && undefined.__extends) || (function () {
|
|
92
164
|
var extendStatics = function (d, b) {
|
|
93
165
|
extendStatics = Object.setPrototypeOf ||
|
|
94
166
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -101,22 +173,22 @@ var __extends$1 = (undefined && undefined.__extends) || (function () {
|
|
|
101
173
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
102
174
|
};
|
|
103
175
|
})();
|
|
104
|
-
var __decorate$
|
|
176
|
+
var __decorate$2 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
105
177
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
106
178
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
107
179
|
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;
|
|
108
180
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
109
181
|
};
|
|
110
|
-
var isExecute$
|
|
111
|
-
var vueImport$
|
|
112
|
-
if (!isExecute$
|
|
113
|
-
vueImport$
|
|
182
|
+
var isExecute$2 = gh ? false : true;
|
|
183
|
+
var vueImport$2;
|
|
184
|
+
if (!isExecute$2 || parseInt(allVue.version) < 3) {
|
|
185
|
+
vueImport$2 = Vue;
|
|
114
186
|
}
|
|
115
187
|
else {
|
|
116
|
-
vueImport$
|
|
188
|
+
vueImport$2 = Vue$1;
|
|
117
189
|
}
|
|
118
190
|
var AggregateColumnsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
119
|
-
__extends$
|
|
191
|
+
__extends$2(AggregateColumnsDirective, _super);
|
|
120
192
|
function AggregateColumnsDirective() {
|
|
121
193
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
122
194
|
}
|
|
@@ -126,11 +198,11 @@ var AggregateColumnsDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
126
198
|
AggregateColumnsDirective.prototype.getTag = function () {
|
|
127
199
|
return 'e-columns';
|
|
128
200
|
};
|
|
129
|
-
AggregateColumnsDirective = __decorate$
|
|
130
|
-
EJComponentDecorator({}, isExecute$
|
|
201
|
+
AggregateColumnsDirective = __decorate$2([
|
|
202
|
+
EJComponentDecorator({}, isExecute$2)
|
|
131
203
|
], AggregateColumnsDirective);
|
|
132
204
|
return AggregateColumnsDirective;
|
|
133
|
-
}(vueImport$
|
|
205
|
+
}(vueImport$2));
|
|
134
206
|
var AggregateColumnsPlugin = {
|
|
135
207
|
name: 'e-columns',
|
|
136
208
|
install: function (Vue$$1) {
|
|
@@ -156,7 +228,7 @@ var AggregateColumnsPlugin = {
|
|
|
156
228
|
* ```
|
|
157
229
|
*/
|
|
158
230
|
var AggregateColumnDirective = /** @__PURE__ @class */ (function (_super) {
|
|
159
|
-
__extends$
|
|
231
|
+
__extends$2(AggregateColumnDirective, _super);
|
|
160
232
|
function AggregateColumnDirective() {
|
|
161
233
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
162
234
|
}
|
|
@@ -166,11 +238,11 @@ var AggregateColumnDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
166
238
|
AggregateColumnDirective.prototype.getTag = function () {
|
|
167
239
|
return 'e-column';
|
|
168
240
|
};
|
|
169
|
-
AggregateColumnDirective = __decorate$
|
|
170
|
-
EJComponentDecorator({}, isExecute$
|
|
241
|
+
AggregateColumnDirective = __decorate$2([
|
|
242
|
+
EJComponentDecorator({}, isExecute$2)
|
|
171
243
|
], AggregateColumnDirective);
|
|
172
244
|
return AggregateColumnDirective;
|
|
173
|
-
}(vueImport$
|
|
245
|
+
}(vueImport$2));
|
|
174
246
|
var AggregateColumnPlugin = {
|
|
175
247
|
name: 'e-column',
|
|
176
248
|
install: function (Vue$$1) {
|
|
@@ -178,7 +250,7 @@ var AggregateColumnPlugin = {
|
|
|
178
250
|
}
|
|
179
251
|
};
|
|
180
252
|
|
|
181
|
-
var __extends$
|
|
253
|
+
var __extends$3 = (undefined && undefined.__extends) || (function () {
|
|
182
254
|
var extendStatics = function (d, b) {
|
|
183
255
|
extendStatics = Object.setPrototypeOf ||
|
|
184
256
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -191,22 +263,22 @@ var __extends$2 = (undefined && undefined.__extends) || (function () {
|
|
|
191
263
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
192
264
|
};
|
|
193
265
|
})();
|
|
194
|
-
var __decorate$
|
|
266
|
+
var __decorate$3 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
195
267
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
196
268
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
197
269
|
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;
|
|
198
270
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
199
271
|
};
|
|
200
|
-
var isExecute$
|
|
201
|
-
var vueImport$
|
|
202
|
-
if (!isExecute$
|
|
203
|
-
vueImport$
|
|
272
|
+
var isExecute$3 = gh ? false : true;
|
|
273
|
+
var vueImport$3;
|
|
274
|
+
if (!isExecute$3 || parseInt(allVue.version) < 3) {
|
|
275
|
+
vueImport$3 = Vue;
|
|
204
276
|
}
|
|
205
277
|
else {
|
|
206
|
-
vueImport$
|
|
278
|
+
vueImport$3 = Vue$1;
|
|
207
279
|
}
|
|
208
280
|
var AggregatesDirective = /** @__PURE__ @class */ (function (_super) {
|
|
209
|
-
__extends$
|
|
281
|
+
__extends$3(AggregatesDirective, _super);
|
|
210
282
|
function AggregatesDirective() {
|
|
211
283
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
212
284
|
}
|
|
@@ -216,11 +288,11 @@ var AggregatesDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
216
288
|
AggregatesDirective.prototype.getTag = function () {
|
|
217
289
|
return 'e-aggregates';
|
|
218
290
|
};
|
|
219
|
-
AggregatesDirective = __decorate$
|
|
220
|
-
EJComponentDecorator({}, isExecute$
|
|
291
|
+
AggregatesDirective = __decorate$3([
|
|
292
|
+
EJComponentDecorator({}, isExecute$3)
|
|
221
293
|
], AggregatesDirective);
|
|
222
294
|
return AggregatesDirective;
|
|
223
|
-
}(vueImport$
|
|
295
|
+
}(vueImport$3));
|
|
224
296
|
var AggregatesPlugin = {
|
|
225
297
|
name: 'e-aggregates',
|
|
226
298
|
install: function (Vue$$1) {
|
|
@@ -247,7 +319,7 @@ var AggregatesPlugin = {
|
|
|
247
319
|
* ```
|
|
248
320
|
*/
|
|
249
321
|
var AggregateDirective = /** @__PURE__ @class */ (function (_super) {
|
|
250
|
-
__extends$
|
|
322
|
+
__extends$3(AggregateDirective, _super);
|
|
251
323
|
function AggregateDirective() {
|
|
252
324
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
253
325
|
}
|
|
@@ -257,11 +329,11 @@ var AggregateDirective = /** @__PURE__ @class */ (function (_super) {
|
|
|
257
329
|
AggregateDirective.prototype.getTag = function () {
|
|
258
330
|
return 'e-aggregate';
|
|
259
331
|
};
|
|
260
|
-
AggregateDirective = __decorate$
|
|
261
|
-
EJComponentDecorator({}, isExecute$
|
|
332
|
+
AggregateDirective = __decorate$3([
|
|
333
|
+
EJComponentDecorator({}, isExecute$3)
|
|
262
334
|
], AggregateDirective);
|
|
263
335
|
return AggregateDirective;
|
|
264
|
-
}(vueImport$
|
|
336
|
+
}(vueImport$3));
|
|
265
337
|
var AggregatePlugin = {
|
|
266
338
|
name: 'e-aggregate',
|
|
267
339
|
install: function (Vue$$1) {
|
|
@@ -269,7 +341,7 @@ var AggregatePlugin = {
|
|
|
269
341
|
}
|
|
270
342
|
};
|
|
271
343
|
|
|
272
|
-
var __extends$
|
|
344
|
+
var __extends$4 = (undefined && undefined.__extends) || (function () {
|
|
273
345
|
var extendStatics = function (d, b) {
|
|
274
346
|
extendStatics = Object.setPrototypeOf ||
|
|
275
347
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -282,7 +354,7 @@ var __extends$3 = (undefined && undefined.__extends) || (function () {
|
|
|
282
354
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
283
355
|
};
|
|
284
356
|
})();
|
|
285
|
-
var __decorate$
|
|
357
|
+
var __decorate$4 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
286
358
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
287
359
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
288
360
|
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;
|
|
@@ -300,7 +372,7 @@ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
|
300
372
|
var props_1 = modelProps_1[_i];
|
|
301
373
|
emitProbs.push('update:' + props_1);
|
|
302
374
|
}
|
|
303
|
-
var isExecute$
|
|
375
|
+
var isExecute$4 = gh ? false : true;
|
|
304
376
|
/**
|
|
305
377
|
* `ejs-grid` represents the VueJS Grid Component.
|
|
306
378
|
* ```vue
|
|
@@ -308,16 +380,16 @@ var isExecute$3 = gh ? false : true;
|
|
|
308
380
|
* ```
|
|
309
381
|
*/
|
|
310
382
|
var GridComponent = /** @__PURE__ @class */ (function (_super) {
|
|
311
|
-
__extends$
|
|
383
|
+
__extends$4(GridComponent, _super);
|
|
312
384
|
function GridComponent() {
|
|
313
385
|
var _this = _super.call(this, arguments) || this;
|
|
314
386
|
_this.propKeys = properties;
|
|
315
387
|
_this.models = modelProps;
|
|
316
388
|
_this.hasChildDirective = true;
|
|
317
389
|
_this.hasInjectedModules = true;
|
|
318
|
-
_this.tagMapper = { "e-columns": "e-column", "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
|
|
319
|
-
_this.tagNameMapper = {};
|
|
320
|
-
_this.isVue3 = !isExecute$
|
|
390
|
+
_this.tagMapper = { "e-columns": { "e-column": { "e-stacked-columns": "e-stacked-column" } }, "e-aggregates": { "e-aggregate": { "e-columns": "e-column" } } };
|
|
391
|
+
_this.tagNameMapper = { "e-stacked-columns": "e-columns" };
|
|
392
|
+
_this.isVue3 = !isExecute$4;
|
|
321
393
|
_this.ej2Instances = new Grid({});
|
|
322
394
|
_this.ej2Instances._trigger = _this.ej2Instances.trigger;
|
|
323
395
|
_this.ej2Instances.trigger = _this.trigger;
|
|
@@ -376,14 +448,14 @@ var GridComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
376
448
|
}
|
|
377
449
|
};
|
|
378
450
|
GridComponent.prototype.trigger = function (eventName, eventProp, successHandler) {
|
|
379
|
-
if (!isExecute$
|
|
451
|
+
if (!isExecute$4) {
|
|
380
452
|
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
381
453
|
}
|
|
382
454
|
if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {
|
|
383
455
|
var key = this.models.toString().match(/checked|value/) || [];
|
|
384
456
|
var propKey = key[0];
|
|
385
457
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
386
|
-
if (!isExecute$
|
|
458
|
+
if (!isExecute$4) {
|
|
387
459
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
388
460
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
389
461
|
}
|
|
@@ -399,7 +471,7 @@ var GridComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
399
471
|
var key = this.models.toString().match(/currentView|selectedDate/) || [];
|
|
400
472
|
var propKey = key[0];
|
|
401
473
|
if (eventProp && key && !isUndefined(eventProp[propKey])) {
|
|
402
|
-
if (!isExecute$
|
|
474
|
+
if (!isExecute$4) {
|
|
403
475
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
404
476
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
405
477
|
}
|
|
@@ -802,13 +874,13 @@ var GridComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
802
874
|
GridComponent.prototype.updateRowValue = function (key, rowData) {
|
|
803
875
|
return this.ej2Instances.updateRowValue(key, rowData);
|
|
804
876
|
};
|
|
805
|
-
GridComponent = __decorate$
|
|
877
|
+
GridComponent = __decorate$4([
|
|
806
878
|
EJComponentDecorator({
|
|
807
879
|
props: properties,
|
|
808
880
|
model: {
|
|
809
881
|
event: 'modelchanged'
|
|
810
882
|
}
|
|
811
|
-
}, isExecute$
|
|
883
|
+
}, isExecute$4)
|
|
812
884
|
,Options({
|
|
813
885
|
props: props,
|
|
814
886
|
watch: watch,
|
|
@@ -823,6 +895,8 @@ var GridPlugin = {
|
|
|
823
895
|
Vue$$1.component(GridPlugin.name, GridComponent);
|
|
824
896
|
Vue$$1.component(ColumnPlugin.name, ColumnDirective);
|
|
825
897
|
Vue$$1.component(ColumnsPlugin.name, ColumnsDirective);
|
|
898
|
+
Vue$$1.component(StackedColumnPlugin.name, StackedColumnDirective);
|
|
899
|
+
Vue$$1.component(StackedColumnsPlugin.name, StackedColumnsDirective);
|
|
826
900
|
Vue$$1.component(AggregatePlugin.name, AggregateDirective);
|
|
827
901
|
Vue$$1.component(AggregatesPlugin.name, AggregatesDirective);
|
|
828
902
|
Vue$$1.component(AggregateColumnPlugin.name, AggregateColumnDirective);
|
|
@@ -830,7 +904,7 @@ var GridPlugin = {
|
|
|
830
904
|
}
|
|
831
905
|
};
|
|
832
906
|
|
|
833
|
-
var __extends$
|
|
907
|
+
var __extends$5 = (undefined && undefined.__extends) || (function () {
|
|
834
908
|
var extendStatics = function (d, b) {
|
|
835
909
|
extendStatics = Object.setPrototypeOf ||
|
|
836
910
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -843,7 +917,7 @@ var __extends$4 = (undefined && undefined.__extends) || (function () {
|
|
|
843
917
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
844
918
|
};
|
|
845
919
|
})();
|
|
846
|
-
var __decorate$
|
|
920
|
+
var __decorate$5 = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
|
|
847
921
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
848
922
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
849
923
|
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;
|
|
@@ -861,7 +935,7 @@ for (var _i$1 = 0, modelProps_1$1 = modelProps$1; _i$1 < modelProps_1$1.length;
|
|
|
861
935
|
var props_1$1 = modelProps_1$1[_i$1];
|
|
862
936
|
emitProbs$1.push('update:' + props_1$1);
|
|
863
937
|
}
|
|
864
|
-
var isExecute$
|
|
938
|
+
var isExecute$5 = gh ? false : true;
|
|
865
939
|
/**
|
|
866
940
|
* `ejs-pager` represents the VueJS Pager Component.
|
|
867
941
|
* ```vue
|
|
@@ -869,7 +943,7 @@ var isExecute$4 = gh ? false : true;
|
|
|
869
943
|
* ```
|
|
870
944
|
*/
|
|
871
945
|
var PagerComponent = /** @__PURE__ @class */ (function (_super) {
|
|
872
|
-
__extends$
|
|
946
|
+
__extends$5(PagerComponent, _super);
|
|
873
947
|
function PagerComponent() {
|
|
874
948
|
var _this = _super.call(this, arguments) || this;
|
|
875
949
|
_this.propKeys = properties$1;
|
|
@@ -878,7 +952,7 @@ var PagerComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
878
952
|
_this.hasInjectedModules = false;
|
|
879
953
|
_this.tagMapper = {};
|
|
880
954
|
_this.tagNameMapper = {};
|
|
881
|
-
_this.isVue3 = !isExecute$
|
|
955
|
+
_this.isVue3 = !isExecute$5;
|
|
882
956
|
_this.ej2Instances = new Pager({});
|
|
883
957
|
_this.bindProperties();
|
|
884
958
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
@@ -954,10 +1028,10 @@ var PagerComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
954
1028
|
PagerComponent.prototype.refresh = function () {
|
|
955
1029
|
return this.ej2Instances.refresh();
|
|
956
1030
|
};
|
|
957
|
-
PagerComponent = __decorate$
|
|
1031
|
+
PagerComponent = __decorate$5([
|
|
958
1032
|
EJComponentDecorator({
|
|
959
1033
|
props: properties$1
|
|
960
|
-
}, isExecute$
|
|
1034
|
+
}, isExecute$5)
|
|
961
1035
|
,Options({
|
|
962
1036
|
props: props,
|
|
963
1037
|
watch: watch,
|
|
@@ -973,6 +1047,6 @@ var PagerPlugin = {
|
|
|
973
1047
|
}
|
|
974
1048
|
};
|
|
975
1049
|
|
|
976
|
-
export { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin, AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin, AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin, GridComponent, GridPlugin, PagerComponent, PagerPlugin };
|
|
1050
|
+
export { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin, ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin, AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin, AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin, GridComponent, GridPlugin, PagerComponent, PagerPlugin };
|
|
977
1051
|
export * from '@syncfusion/ej2-grids';
|
|
978
1052
|
//# sourceMappingURL=ej2-vue-grids.es5.js.map
|