@syncfusion/ej2-angular-grids 29.2.11-ngcc → 30.1.37-ngcc

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-grids.umd.js
3
- * version : 29.2.11
3
+ * version : 30.1.37
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -13,1003 +13,1003 @@
13
13
  (factory((global['ej2-angular-grids'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.grids,global.ng.common));
14
14
  }(this, (function (exports,core,ej2AngularBase,ej2Grids,common) { 'use strict';
15
15
 
16
- var __extends = (this && this.__extends) || (function () {
17
- var extendStatics = Object.setPrototypeOf ||
18
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
- return function (d, b) {
21
- extendStatics(d, b);
22
- function __() { this.constructor = d; }
23
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
- };
25
- })();
26
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
- r = Reflect.decorate(decorators, target, key, desc);
30
- else
31
- for (var i = decorators.length - 1; i >= 0; i--)
32
- if (d = decorators[i])
33
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
- return c > 3 && r && Object.defineProperty(target, key, r), r;
35
- };
36
- var __metadata = (this && this.__metadata) || function (k, v) {
37
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
- return Reflect.metadata(k, v);
39
- };
40
- var input = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'templateOptions', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
41
- var outputs = [];
42
- /**
43
- * `e-stacked-column` directive represent the stacked column of the Angular Grid.
44
- * It must be contained in a StackedColumns component(`e-stacked-columns`).
45
- * ```html
46
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
47
- * <e-columns>
48
- * <e-column field='ID' width='100'></e-column>
49
- * <e-column headerText='Details' width='100'>
50
- * <e-stacked-columns>
51
- * <e-stacked-column field='Name' width='140'></e-stacked-column>
52
- * </e-stacked-columns>
53
- * </e-column>
54
- * </e-columns>
55
- * </ejs-grid>
56
- * ```
57
- */
58
- var StackedColumnDirective = /** @class */ (function (_super) {
59
- __extends(StackedColumnDirective, _super);
60
- /**
61
- * @param {?} viewContainerRef
62
- */
63
- function StackedColumnDirective(viewContainerRef) {
64
- var _this = _super.call(this) || this;
65
- _this.viewContainerRef = viewContainerRef;
66
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
67
- _this.registerEvents(outputs);
68
- _this.directivePropList = input;
69
- return _this;
70
- }
71
- return StackedColumnDirective;
72
- }(ej2AngularBase.ComplexBase));
73
- StackedColumnDirective.decorators = [
74
- { type: core.Directive, args: [{
75
- selector: 'ejs-grid>e-columns>e-column>e-stacked-columns>e-stacked-column',
76
- inputs: input,
77
- outputs: outputs,
78
- queries: {}
79
- },] },
80
- ];
81
- /**
82
- * @nocollapse
83
- */
84
- StackedColumnDirective.ctorParameters = function () { return [
85
- { type: core.ViewContainerRef, },
86
- ]; };
87
- StackedColumnDirective.propDecorators = {
88
- 'template': [{ type: core.ContentChild, args: ['template',] },],
89
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
90
- 'commandsTemplate': [{ type: core.ContentChild, args: ['commandsTemplate',] },],
91
- 'filter_itemTemplate': [{ type: core.ContentChild, args: ['filterItemTemplate',] },],
92
- 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
93
- 'filterTemplate': [{ type: core.ContentChild, args: ['filterTemplate',] },],
94
- };
95
- __decorate([
96
- ej2AngularBase.Template(),
97
- __metadata("design:type", Object)
98
- ], StackedColumnDirective.prototype, "template", void 0);
99
- __decorate([
100
- ej2AngularBase.Template(),
101
- __metadata("design:type", Object)
102
- ], StackedColumnDirective.prototype, "headerTemplate", void 0);
103
- __decorate([
104
- ej2AngularBase.Template(),
105
- __metadata("design:type", Object)
106
- ], StackedColumnDirective.prototype, "commandsTemplate", void 0);
107
- __decorate([
108
- ej2AngularBase.Template(),
109
- __metadata("design:type", Object)
110
- ], StackedColumnDirective.prototype, "filter_itemTemplate", void 0);
111
- __decorate([
112
- ej2AngularBase.Template(),
113
- __metadata("design:type", Object)
114
- ], StackedColumnDirective.prototype, "editTemplate", void 0);
115
- __decorate([
116
- ej2AngularBase.Template(),
117
- __metadata("design:type", Object)
118
- ], StackedColumnDirective.prototype, "filterTemplate", void 0);
119
- /**
120
- * StackedColumn Array Directive
121
- */
122
- var StackedColumnsDirective = /** @class */ (function (_super) {
123
- __extends(StackedColumnsDirective, _super);
124
- function StackedColumnsDirective() {
125
- return _super.call(this, 'columns') || this;
126
- }
127
- return StackedColumnsDirective;
128
- }(ej2AngularBase.ArrayBase));
129
- StackedColumnsDirective.decorators = [
130
- { type: core.Directive, args: [{
131
- selector: 'ejs-grid>e-columns>e-column>e-stacked-columns',
132
- queries: {
133
- children: new core.ContentChildren(StackedColumnDirective)
134
- },
135
- },] },
136
- ];
137
- /**
138
- * @nocollapse
139
- */
140
- StackedColumnsDirective.ctorParameters = function () { return []; };
141
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
142
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
143
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
144
- r = Reflect.decorate(decorators, target, key, desc);
145
- else
146
- for (var i = decorators.length - 1; i >= 0; i--)
147
- if (d = decorators[i])
148
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
149
- return c > 3 && r && Object.defineProperty(target, key, r), r;
150
- };
151
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
152
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
153
- return Reflect.metadata(k, v);
154
- };
155
- var input$1 = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'templateOptions', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
156
- var outputs$1 = [];
157
- /**
158
- * `e-column` directive represent a column of the Angular Grid.
159
- * It must be contained in a Grid component(`ejs-grid`).
160
- * ```html
161
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
162
- * <e-columns>
163
- * <e-column field='ID' width='100'></e-column>
164
- * <e-column field='name' headerText='Name' width='100'></e-column>
165
- * </e-columns>
166
- * </ejs-grid>
167
- * ```
168
- */
169
- var ColumnDirective = /** @class */ (function (_super) {
170
- __extends(ColumnDirective, _super);
171
- /**
172
- * @param {?} viewContainerRef
173
- */
174
- function ColumnDirective(viewContainerRef) {
175
- var _this = _super.call(this) || this;
176
- _this.viewContainerRef = viewContainerRef;
177
- _this.tags = ['columns'];
178
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
179
- _this.registerEvents(outputs$1);
180
- _this.directivePropList = input$1;
181
- return _this;
182
- }
183
- return ColumnDirective;
184
- }(ej2AngularBase.ComplexBase));
185
- ColumnDirective.decorators = [
186
- { type: core.Directive, args: [{
187
- selector: 'ejs-grid>e-columns>e-column',
188
- inputs: input$1,
189
- outputs: outputs$1,
190
- queries: {
191
- childColumns: new core.ContentChild(StackedColumnsDirective)
192
- }
193
- },] },
194
- ];
195
- /**
196
- * @nocollapse
197
- */
198
- ColumnDirective.ctorParameters = function () { return [
199
- { type: core.ViewContainerRef, },
200
- ]; };
201
- ColumnDirective.propDecorators = {
202
- 'template': [{ type: core.ContentChild, args: ['template',] },],
203
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
204
- 'commandsTemplate': [{ type: core.ContentChild, args: ['commandsTemplate',] },],
205
- 'filter_itemTemplate': [{ type: core.ContentChild, args: ['filterItemTemplate',] },],
206
- 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
207
- 'filterTemplate': [{ type: core.ContentChild, args: ['filterTemplate',] },],
208
- };
209
- __decorate$1([
210
- ej2AngularBase.Template(),
211
- __metadata$1("design:type", Object)
212
- ], ColumnDirective.prototype, "template", void 0);
213
- __decorate$1([
214
- ej2AngularBase.Template(),
215
- __metadata$1("design:type", Object)
216
- ], ColumnDirective.prototype, "headerTemplate", void 0);
217
- __decorate$1([
218
- ej2AngularBase.Template(),
219
- __metadata$1("design:type", Object)
220
- ], ColumnDirective.prototype, "commandsTemplate", void 0);
221
- __decorate$1([
222
- ej2AngularBase.Template(),
223
- __metadata$1("design:type", Object)
224
- ], ColumnDirective.prototype, "filter_itemTemplate", void 0);
225
- __decorate$1([
226
- ej2AngularBase.Template(),
227
- __metadata$1("design:type", Object)
228
- ], ColumnDirective.prototype, "editTemplate", void 0);
229
- __decorate$1([
230
- ej2AngularBase.Template(),
231
- __metadata$1("design:type", Object)
232
- ], ColumnDirective.prototype, "filterTemplate", void 0);
233
- /**
234
- * Column Array Directive
235
- */
236
- var ColumnsDirective = /** @class */ (function (_super) {
237
- __extends(ColumnsDirective, _super);
238
- function ColumnsDirective() {
239
- return _super.call(this, 'columns') || this;
240
- }
241
- return ColumnsDirective;
242
- }(ej2AngularBase.ArrayBase));
243
- ColumnsDirective.decorators = [
244
- { type: core.Directive, args: [{
245
- selector: 'ejs-grid>e-columns',
246
- queries: {
247
- children: new core.ContentChildren(ColumnDirective)
248
- },
249
- },] },
250
- ];
251
- /**
252
- * @nocollapse
253
- */
254
- ColumnsDirective.ctorParameters = function () { return []; };
255
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
256
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
257
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
258
- r = Reflect.decorate(decorators, target, key, desc);
259
- else
260
- for (var i = decorators.length - 1; i >= 0; i--)
261
- if (d = decorators[i])
262
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
263
- return c > 3 && r && Object.defineProperty(target, key, r), r;
264
- };
265
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
266
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
267
- return Reflect.metadata(k, v);
268
- };
269
- var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'groupCaptionTemplate', 'groupFooterTemplate', 'type'];
270
- var outputs$2 = [];
271
- /**
272
- * `e-aggregate->e-column` directive represent a aggregate column of the Angular Grid.
273
- * ```html
274
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
275
- * <e-columns>
276
- * <e-column field='ID' width='100'></e-column>
277
- * <e-column field='name' headerText='Name' width='100'></e-column>
278
- * </e-columns>
279
- * <e-aggregates>
280
- * <e-aggregate>
281
- * <e-columns>
282
- * <e-column field='ID' type='Min'></e-column>
283
- * </e-columns>
284
- * </e-aggregate>
285
- * </e-aggregates>
286
- * </ejs-grid>
287
- * ```
288
- */
289
- var AggregateColumnDirective = /** @class */ (function (_super) {
290
- __extends(AggregateColumnDirective, _super);
291
- /**
292
- * @param {?} viewContainerRef
293
- */
294
- function AggregateColumnDirective(viewContainerRef) {
295
- var _this = _super.call(this) || this;
296
- _this.viewContainerRef = viewContainerRef;
297
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
298
- _this.registerEvents(outputs$2);
299
- _this.directivePropList = input$2;
300
- return _this;
301
- }
302
- return AggregateColumnDirective;
303
- }(ej2AngularBase.ComplexBase));
304
- AggregateColumnDirective.decorators = [
305
- { type: core.Directive, args: [{
306
- selector: 'ejs-grid>e-aggregates>e-aggregate>e-columns>e-column',
307
- inputs: input$2,
308
- outputs: outputs$2,
309
- queries: {}
310
- },] },
311
- ];
312
- /**
313
- * @nocollapse
314
- */
315
- AggregateColumnDirective.ctorParameters = function () { return [
316
- { type: core.ViewContainerRef, },
317
- ]; };
318
- AggregateColumnDirective.propDecorators = {
319
- 'footerTemplate': [{ type: core.ContentChild, args: ['footerTemplate',] },],
320
- 'groupFooterTemplate': [{ type: core.ContentChild, args: ['groupFooterTemplate',] },],
321
- 'groupCaptionTemplate': [{ type: core.ContentChild, args: ['groupCaptionTemplate',] },],
322
- };
323
- __decorate$2([
324
- ej2AngularBase.Template(),
325
- __metadata$2("design:type", Object)
326
- ], AggregateColumnDirective.prototype, "footerTemplate", void 0);
327
- __decorate$2([
328
- ej2AngularBase.Template(),
329
- __metadata$2("design:type", Object)
330
- ], AggregateColumnDirective.prototype, "groupFooterTemplate", void 0);
331
- __decorate$2([
332
- ej2AngularBase.Template(),
333
- __metadata$2("design:type", Object)
334
- ], AggregateColumnDirective.prototype, "groupCaptionTemplate", void 0);
335
- /**
336
- * AggregateColumn Array Directive
337
- */
338
- var AggregateColumnsDirective = /** @class */ (function (_super) {
339
- __extends(AggregateColumnsDirective, _super);
340
- function AggregateColumnsDirective() {
341
- return _super.call(this, 'columns') || this;
342
- }
343
- return AggregateColumnsDirective;
344
- }(ej2AngularBase.ArrayBase));
345
- AggregateColumnsDirective.decorators = [
346
- { type: core.Directive, args: [{
347
- selector: 'ejs-grid>e-aggregates>e-aggregate>e-columns',
348
- queries: {
349
- children: new core.ContentChildren(AggregateColumnDirective)
350
- },
351
- },] },
352
- ];
353
- /**
354
- * @nocollapse
355
- */
356
- AggregateColumnsDirective.ctorParameters = function () { return []; };
357
- var input$3 = ['columns'];
358
- var outputs$3 = [];
359
- /**
360
- * `e-aggregate` directive represent a aggregate row of the Angular Grid.
361
- * It must be contained in a Grid component(`ejs-grid`).
362
- * ```html
363
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
364
- * <e-columns>
365
- * <e-column field='ID' width='100'></e-column>
366
- * <e-column field='name' headerText='Name' width='100'></e-column>
367
- * </e-columns>
368
- * <e-aggregates>
369
- * <e-aggregate>
370
- * <e-columns>
371
- * <e-column field='ID' type='Min'></e-column>
372
- * </e-columns>
373
- * </e-aggregate>
374
- * </e-aggregates>
375
- * </ejs-grid>
376
- * ```
377
- */
378
- var AggregateDirective = /** @class */ (function (_super) {
379
- __extends(AggregateDirective, _super);
380
- /**
381
- * @param {?} viewContainerRef
382
- */
383
- function AggregateDirective(viewContainerRef) {
384
- var _this = _super.call(this) || this;
385
- _this.viewContainerRef = viewContainerRef;
386
- _this.tags = ['columns'];
387
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
388
- _this.registerEvents(outputs$3);
389
- _this.directivePropList = input$3;
390
- return _this;
391
- }
392
- return AggregateDirective;
393
- }(ej2AngularBase.ComplexBase));
394
- AggregateDirective.decorators = [
395
- { type: core.Directive, args: [{
396
- selector: 'ejs-grid>e-aggregates>e-aggregate',
397
- inputs: input$3,
398
- outputs: outputs$3,
399
- queries: {
400
- childColumns: new core.ContentChild(AggregateColumnsDirective)
401
- }
402
- },] },
403
- ];
404
- /**
405
- * @nocollapse
406
- */
407
- AggregateDirective.ctorParameters = function () { return [
408
- { type: core.ViewContainerRef, },
409
- ]; };
410
- /**
411
- * Aggregate Array Directive
412
- */
413
- var AggregatesDirective = /** @class */ (function (_super) {
414
- __extends(AggregatesDirective, _super);
415
- function AggregatesDirective() {
416
- return _super.call(this, 'aggregates') || this;
417
- }
418
- return AggregatesDirective;
419
- }(ej2AngularBase.ArrayBase));
420
- AggregatesDirective.decorators = [
421
- { type: core.Directive, args: [{
422
- selector: 'ejs-grid>e-aggregates',
423
- queries: {
424
- children: new core.ContentChildren(AggregateDirective)
425
- },
426
- },] },
427
- ];
428
- /**
429
- * @nocollapse
430
- */
431
- AggregatesDirective.ctorParameters = function () { return []; };
432
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
433
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
434
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
435
- r = Reflect.decorate(decorators, target, key, desc);
436
- else
437
- for (var i = decorators.length - 1; i >= 0; i--)
438
- if (d = decorators[i])
439
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
440
- return c > 3 && r && Object.defineProperty(target, key, r), r;
441
- };
442
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
443
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
444
- return Reflect.metadata(k, v);
445
- };
446
- var inputs = ['adaptiveUIMode', 'aggregates', 'allowExcelExport', 'allowFiltering', 'allowGrouping', 'allowKeyboard', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoFit', 'childGrid', 'clipMode', 'columnChooserSettings', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'cssClass', 'currencyCode', 'currentAction', 'currentViewData', 'dataSource', 'detailTemplate', 'editSettings', 'ej2StatePersistenceVersion', 'emptyRecordTemplate', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableColumnVirtualization', 'enableHeaderFocus', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableStickyHeader', 'enableVirtualMaskRow', 'enableVirtualization', 'exportGrids', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'groupSettings', 'height', 'hierarchyPrintMode', 'infiniteScrollSettings', 'loadingIndicator', 'locale', 'pageSettings', 'pagerTemplate', 'parentDetails', 'printMode', 'query', 'queryString', 'resizeSettings', 'rowDropSettings', 'rowHeight', 'rowRenderingMode', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'showHider', 'sortSettings', 'textWrapSettings', 'toolbar', 'toolbarTemplate', 'width'];
447
- var outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'batchAdd', 'batchCancel', 'batchDelete', 'beforeAutoFill', 'beforeBatchAdd', 'beforeBatchDelete', 'beforeBatchSave', 'beforeCopy', 'beforeDataBound', 'beforeDetailTemplateDetach', 'beforeExcelExport', 'beforeOpenAdaptiveDialog', 'beforeOpenColumnChooser', 'beforePaste', 'beforePdfExport', 'beforePrint', 'beginEdit', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', 'cellSaved', 'cellSelected', 'cellSelecting', 'checkBoxChange', 'columnDataStateChange', 'columnDeselected', 'columnDeselecting', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'columnSelected', 'columnSelecting', 'commandClick', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'destroyed', 'detailDataBound', 'excelAggregateQueryCellInfo', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'exportDetailDataBound', 'exportDetailTemplate', 'exportGroupCaption', 'headerCellInfo', 'keyPressed', 'lazyLoadGroupCollapse', 'lazyLoadGroupExpand', 'load', 'pdfAggregateQueryCellInfo', 'pdfExportComplete', 'pdfHeaderQueryCellInfo', 'pdfQueryCellInfo', 'printComplete', 'queryCellInfo', 'recordClick', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'toolbarClick', 'dataSourceChange'];
448
- var twoWays = ['dataSource'];
449
- /**
450
- * `ejs-grid` represents the Angular Grid Component.
451
- * ```html
452
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-grid>
453
- * ```
454
- */
455
- exports.GridComponent = /** @class */ (function (_super) {
456
- __extends(GridComponent, _super);
457
- /**
458
- * @param {?} ngEle
459
- * @param {?} srenderer
460
- * @param {?} viewContainerRef
461
- * @param {?} injector
462
- */
463
- function GridComponent(ngEle, srenderer, viewContainerRef, injector) {
464
- var _this = _super.call(this) || this;
465
- _this.ngEle = ngEle;
466
- _this.srenderer = srenderer;
467
- _this.viewContainerRef = viewContainerRef;
468
- _this.injector = injector;
469
- _this.tags = ['columns', 'aggregates'];
470
- _this.element = _this.ngEle.nativeElement;
471
- _this.injectedModules = _this.injectedModules || [];
472
- try {
473
- var mod = _this.injector.get('GridsFilter');
474
- if (_this.injectedModules.indexOf(mod) === -1) {
475
- _this.injectedModules.push(mod);
476
- }
477
- }
478
- catch (_a) { }
479
- try {
480
- var mod = _this.injector.get('GridsPage');
481
- if (_this.injectedModules.indexOf(mod) === -1) {
482
- _this.injectedModules.push(mod);
483
- }
484
- }
485
- catch (_b) { }
486
- try {
487
- var mod = _this.injector.get('GridsSelection');
488
- if (_this.injectedModules.indexOf(mod) === -1) {
489
- _this.injectedModules.push(mod);
490
- }
491
- }
492
- catch (_c) { }
493
- try {
494
- var mod = _this.injector.get('GridsSort');
495
- if (_this.injectedModules.indexOf(mod) === -1) {
496
- _this.injectedModules.push(mod);
497
- }
498
- }
499
- catch (_d) { }
500
- try {
501
- var mod = _this.injector.get('GridsGroup');
502
- if (_this.injectedModules.indexOf(mod) === -1) {
503
- _this.injectedModules.push(mod);
504
- }
505
- }
506
- catch (_e) { }
507
- try {
508
- var mod = _this.injector.get('GridsReorder');
509
- if (_this.injectedModules.indexOf(mod) === -1) {
510
- _this.injectedModules.push(mod);
511
- }
512
- }
513
- catch (_f) { }
514
- try {
515
- var mod = _this.injector.get('GridsRowDD');
516
- if (_this.injectedModules.indexOf(mod) === -1) {
517
- _this.injectedModules.push(mod);
518
- }
519
- }
520
- catch (_g) { }
521
- try {
522
- var mod = _this.injector.get('GridsDetailRow');
523
- if (_this.injectedModules.indexOf(mod) === -1) {
524
- _this.injectedModules.push(mod);
525
- }
526
- }
527
- catch (_h) { }
528
- try {
529
- var mod = _this.injector.get('GridsToolbar');
530
- if (_this.injectedModules.indexOf(mod) === -1) {
531
- _this.injectedModules.push(mod);
532
- }
533
- }
534
- catch (_j) { }
535
- try {
536
- var mod = _this.injector.get('GridsAggregate');
537
- if (_this.injectedModules.indexOf(mod) === -1) {
538
- _this.injectedModules.push(mod);
539
- }
540
- }
541
- catch (_k) { }
542
- try {
543
- var mod = _this.injector.get('GridsSearch');
544
- if (_this.injectedModules.indexOf(mod) === -1) {
545
- _this.injectedModules.push(mod);
546
- }
547
- }
548
- catch (_l) { }
549
- try {
550
- var mod = _this.injector.get('GridsVirtualScroll');
551
- if (_this.injectedModules.indexOf(mod) === -1) {
552
- _this.injectedModules.push(mod);
553
- }
554
- }
555
- catch (_m) { }
556
- try {
557
- var mod = _this.injector.get('GridsEdit');
558
- if (_this.injectedModules.indexOf(mod) === -1) {
559
- _this.injectedModules.push(mod);
560
- }
561
- }
562
- catch (_o) { }
563
- try {
564
- var mod = _this.injector.get('GridsResize');
565
- if (_this.injectedModules.indexOf(mod) === -1) {
566
- _this.injectedModules.push(mod);
567
- }
568
- }
569
- catch (_p) { }
570
- try {
571
- var mod = _this.injector.get('GridsExcelExport');
572
- if (_this.injectedModules.indexOf(mod) === -1) {
573
- _this.injectedModules.push(mod);
574
- }
575
- }
576
- catch (_q) { }
577
- try {
578
- var mod = _this.injector.get('GridsPdfExport');
579
- if (_this.injectedModules.indexOf(mod) === -1) {
580
- _this.injectedModules.push(mod);
581
- }
582
- }
583
- catch (_r) { }
584
- try {
585
- var mod = _this.injector.get('GridsCommandColumn');
586
- if (_this.injectedModules.indexOf(mod) === -1) {
587
- _this.injectedModules.push(mod);
588
- }
589
- }
590
- catch (_s) { }
591
- try {
592
- var mod = _this.injector.get('GridsContextMenu');
593
- if (_this.injectedModules.indexOf(mod) === -1) {
594
- _this.injectedModules.push(mod);
595
- }
596
- }
597
- catch (_t) { }
598
- try {
599
- var mod = _this.injector.get('GridsFreeze');
600
- if (_this.injectedModules.indexOf(mod) === -1) {
601
- _this.injectedModules.push(mod);
602
- }
603
- }
604
- catch (_u) { }
605
- try {
606
- var mod = _this.injector.get('GridsColumnMenu');
607
- if (_this.injectedModules.indexOf(mod) === -1) {
608
- _this.injectedModules.push(mod);
609
- }
610
- }
611
- catch (_v) { }
612
- try {
613
- var mod = _this.injector.get('GridsColumnChooser');
614
- if (_this.injectedModules.indexOf(mod) === -1) {
615
- _this.injectedModules.push(mod);
616
- }
617
- }
618
- catch (_w) { }
619
- try {
620
- var mod = _this.injector.get('GridsForeignKey');
621
- if (_this.injectedModules.indexOf(mod) === -1) {
622
- _this.injectedModules.push(mod);
623
- }
624
- }
625
- catch (_x) { }
626
- try {
627
- var mod = _this.injector.get('GridsInfiniteScroll');
628
- if (_this.injectedModules.indexOf(mod) === -1) {
629
- _this.injectedModules.push(mod);
630
- }
631
- }
632
- catch (_y) { }
633
- try {
634
- var mod = _this.injector.get('GridsLazyLoadGroup');
635
- if (_this.injectedModules.indexOf(mod) === -1) {
636
- _this.injectedModules.push(mod);
637
- }
638
- }
639
- catch (_z) { }
640
- _this.registerEvents(outputs$4);
641
- _this.addTwoWay.call(_this, twoWays);
642
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
643
- _this.context = new ej2AngularBase.ComponentBase();
644
- return _this;
645
- }
646
- /**
647
- * @return {?}
648
- */
649
- GridComponent.prototype.ngOnInit = function () {
650
- this.context.ngOnInit(this);
651
- };
652
- /**
653
- * @return {?}
654
- */
655
- GridComponent.prototype.ngAfterViewInit = function () {
656
- this.context.ngAfterViewInit(this);
657
- };
658
- /**
659
- * @return {?}
660
- */
661
- GridComponent.prototype.ngOnDestroy = function () {
662
- this.context.ngOnDestroy(this);
663
- };
664
- /**
665
- * @return {?}
666
- */
667
- GridComponent.prototype.ngAfterContentChecked = function () {
668
- this.tagObjects[0].instance = this.childColumns;
669
- if (this.childAggregates) {
670
- this.tagObjects[1].instance = /** @type {?} */ (this.childAggregates);
671
- }
672
- this.context.ngAfterContentChecked(this);
673
- };
674
- return GridComponent;
675
- }(ej2Grids.Grid));
676
- exports.GridComponent.decorators = [
677
- { type: core.Component, args: [{
678
- selector: 'ejs-grid',
679
- inputs: inputs,
680
- outputs: outputs$4,
681
- template: '',
682
- changeDetection: core.ChangeDetectionStrategy.OnPush,
683
- queries: {
684
- childColumns: new core.ContentChild(ColumnsDirective),
685
- childAggregates: new core.ContentChild(AggregatesDirective)
686
- }
687
- },] },
688
- ];
689
- /**
690
- * @nocollapse
691
- */
692
- exports.GridComponent.ctorParameters = function () { return [
693
- { type: core.ElementRef, },
694
- { type: core.Renderer2, },
695
- { type: core.ViewContainerRef, },
696
- { type: core.Injector, },
697
- ]; };
698
- exports.GridComponent.propDecorators = {
699
- 'rowTemplate': [{ type: core.ContentChild, args: ['rowTemplate',] },],
700
- 'emptyRecordTemplate': [{ type: core.ContentChild, args: ['emptyRecordTemplate',] },],
701
- 'detailTemplate': [{ type: core.ContentChild, args: ['detailTemplate',] },],
702
- 'toolbarTemplate': [{ type: core.ContentChild, args: ['toolbarTemplate',] },],
703
- 'pagerTemplate': [{ type: core.ContentChild, args: ['pagerTemplate',] },],
704
- 'editSettings_template': [{ type: core.ContentChild, args: ['editSettingsTemplate',] },],
705
- 'groupSettings_captionTemplate': [{ type: core.ContentChild, args: ['groupSettingsCaptionTemplate',] },],
706
- 'columnChooserSettings_headerTemplate': [{ type: core.ContentChild, args: ['columnChooserSettingsHeaderTemplate',] },],
707
- 'columnChooserSettings_template': [{ type: core.ContentChild, args: ['columnChooserSettingsTemplate',] },],
708
- 'columnChooserSettings_footerTemplate': [{ type: core.ContentChild, args: ['columnChooserSettingsFooterTemplate',] },],
709
- };
710
- __decorate$3([
711
- ej2AngularBase.Template(),
712
- __metadata$3("design:type", Object)
713
- ], exports.GridComponent.prototype, "rowTemplate", void 0);
714
- __decorate$3([
715
- ej2AngularBase.Template(),
716
- __metadata$3("design:type", Object)
717
- ], exports.GridComponent.prototype, "emptyRecordTemplate", void 0);
718
- __decorate$3([
719
- ej2AngularBase.Template(),
720
- __metadata$3("design:type", Object)
721
- ], exports.GridComponent.prototype, "detailTemplate", void 0);
722
- __decorate$3([
723
- ej2AngularBase.Template(),
724
- __metadata$3("design:type", Object)
725
- ], exports.GridComponent.prototype, "toolbarTemplate", void 0);
726
- __decorate$3([
727
- ej2AngularBase.Template(),
728
- __metadata$3("design:type", Object)
729
- ], exports.GridComponent.prototype, "pagerTemplate", void 0);
730
- __decorate$3([
731
- ej2AngularBase.Template(),
732
- __metadata$3("design:type", Object)
733
- ], exports.GridComponent.prototype, "editSettings_template", void 0);
734
- __decorate$3([
735
- ej2AngularBase.Template(),
736
- __metadata$3("design:type", Object)
737
- ], exports.GridComponent.prototype, "groupSettings_captionTemplate", void 0);
738
- __decorate$3([
739
- ej2AngularBase.Template(),
740
- __metadata$3("design:type", Object)
741
- ], exports.GridComponent.prototype, "columnChooserSettings_headerTemplate", void 0);
742
- __decorate$3([
743
- ej2AngularBase.Template(),
744
- __metadata$3("design:type", Object)
745
- ], exports.GridComponent.prototype, "columnChooserSettings_template", void 0);
746
- __decorate$3([
747
- ej2AngularBase.Template(),
748
- __metadata$3("design:type", Object)
749
- ], exports.GridComponent.prototype, "columnChooserSettings_footerTemplate", void 0);
750
- exports.GridComponent = __decorate$3([
751
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
752
- __metadata$3("design:paramtypes", [core.ElementRef,
753
- core.Renderer2,
754
- core.ViewContainerRef,
755
- core.Injector])
756
- ], exports.GridComponent);
757
- /**
758
- * NgModule definition for the Grid component.
759
- */
760
- var GridModule = /** @class */ (function () {
761
- function GridModule() {
762
- }
763
- return GridModule;
764
- }());
765
- GridModule.decorators = [
766
- { type: core.NgModule, args: [{
767
- imports: [common.CommonModule],
768
- declarations: [
769
- exports.GridComponent,
770
- StackedColumnDirective,
771
- StackedColumnsDirective,
772
- ColumnDirective,
773
- ColumnsDirective,
774
- AggregateColumnDirective,
775
- AggregateColumnsDirective,
776
- AggregateDirective,
777
- AggregatesDirective
778
- ],
779
- exports: [
780
- exports.GridComponent,
781
- StackedColumnDirective,
782
- StackedColumnsDirective,
783
- ColumnDirective,
784
- ColumnsDirective,
785
- AggregateColumnDirective,
786
- AggregateColumnsDirective,
787
- AggregateDirective,
788
- AggregatesDirective
789
- ]
790
- },] },
791
- ];
792
- /**
793
- * @nocollapse
794
- */
795
- GridModule.ctorParameters = function () { return []; };
796
- var FilterService = { provide: 'GridsFilter', useValue: ej2Grids.Filter };
797
- var PageService = { provide: 'GridsPage', useValue: ej2Grids.Page };
798
- var SelectionService = { provide: 'GridsSelection', useValue: ej2Grids.Selection };
799
- var SortService = { provide: 'GridsSort', useValue: ej2Grids.Sort };
800
- var GroupService = { provide: 'GridsGroup', useValue: ej2Grids.Group };
801
- var ReorderService = { provide: 'GridsReorder', useValue: ej2Grids.Reorder };
802
- var RowDDService = { provide: 'GridsRowDD', useValue: ej2Grids.RowDD };
803
- var DetailRowService = { provide: 'GridsDetailRow', useValue: ej2Grids.DetailRow };
804
- var ToolbarService = { provide: 'GridsToolbar', useValue: ej2Grids.Toolbar };
805
- var AggregateService = { provide: 'GridsAggregate', useValue: ej2Grids.Aggregate };
806
- var SearchService = { provide: 'GridsSearch', useValue: ej2Grids.Search };
807
- var VirtualScrollService = { provide: 'GridsVirtualScroll', useValue: ej2Grids.VirtualScroll };
808
- var EditService = { provide: 'GridsEdit', useValue: ej2Grids.Edit };
809
- var ResizeService = { provide: 'GridsResize', useValue: ej2Grids.Resize };
810
- var ExcelExportService = { provide: 'GridsExcelExport', useValue: ej2Grids.ExcelExport };
811
- var PdfExportService = { provide: 'GridsPdfExport', useValue: ej2Grids.PdfExport };
812
- var CommandColumnService = { provide: 'GridsCommandColumn', useValue: ej2Grids.CommandColumn };
813
- var ContextMenuService = { provide: 'GridsContextMenu', useValue: ej2Grids.ContextMenu };
814
- var FreezeService = { provide: 'GridsFreeze', useValue: ej2Grids.Freeze };
815
- var ColumnMenuService = { provide: 'GridsColumnMenu', useValue: ej2Grids.ColumnMenu };
816
- var ColumnChooserService = { provide: 'GridsColumnChooser', useValue: ej2Grids.ColumnChooser };
817
- var ForeignKeyService = { provide: 'GridsForeignKey', useValue: ej2Grids.ForeignKey };
818
- var InfiniteScrollService = { provide: 'GridsInfiniteScroll', useValue: ej2Grids.InfiniteScroll };
819
- var LazyLoadGroupService = { provide: 'GridsLazyLoadGroup', useValue: ej2Grids.LazyLoadGroup };
820
- /**
821
- * NgModule definition for the Grid component with providers.
822
- */
823
- var GridAllModule = /** @class */ (function () {
824
- function GridAllModule() {
825
- }
826
- return GridAllModule;
827
- }());
828
- GridAllModule.decorators = [
829
- { type: core.NgModule, args: [{
830
- imports: [common.CommonModule, GridModule],
831
- exports: [
832
- GridModule
833
- ],
834
- providers: [
835
- FilterService,
836
- PageService,
837
- SelectionService,
838
- SortService,
839
- GroupService,
840
- ReorderService,
841
- RowDDService,
842
- DetailRowService,
843
- ToolbarService,
844
- AggregateService,
845
- SearchService,
846
- VirtualScrollService,
847
- EditService,
848
- ResizeService,
849
- ExcelExportService,
850
- PdfExportService,
851
- CommandColumnService,
852
- ContextMenuService,
853
- FreezeService,
854
- ColumnMenuService,
855
- ColumnChooserService,
856
- ForeignKeyService,
857
- InfiniteScrollService,
858
- LazyLoadGroupService
859
- ]
860
- },] },
861
- ];
862
- /**
863
- * @nocollapse
864
- */
865
- GridAllModule.ctorParameters = function () { return []; };
866
- var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
867
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
868
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
869
- r = Reflect.decorate(decorators, target, key, desc);
870
- else
871
- for (var i = decorators.length - 1; i >= 0; i--)
872
- if (d = decorators[i])
873
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
874
- return c > 3 && r && Object.defineProperty(target, key, r), r;
875
- };
876
- var __metadata$4 = (this && this.__metadata) || function (k, v) {
877
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
878
- return Reflect.metadata(k, v);
879
- };
880
- var inputs$1 = ['cssClass', 'currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
881
- var outputs$5 = ['click', 'created', 'dropDownChanged', 'currentPageChange', 'pageSizeChange', 'pageCountChange', 'pageSizesChange'];
882
- var twoWays$1 = ['currentPage', 'pageSize', 'pageCount', 'pageSizes'];
883
- /**
884
- * `ejs-pager` represents the Angular Pager Component.
885
- * ```html
886
- * <ejs-pager></ejs-pager>
887
- * ```
888
- */
889
- exports.PagerComponent = /** @class */ (function (_super) {
890
- __extends(PagerComponent, _super);
891
- /**
892
- * @param {?} ngEle
893
- * @param {?} srenderer
894
- * @param {?} viewContainerRef
895
- * @param {?} injector
896
- */
897
- function PagerComponent(ngEle, srenderer, viewContainerRef, injector) {
898
- var _this = _super.call(this) || this;
899
- _this.ngEle = ngEle;
900
- _this.srenderer = srenderer;
901
- _this.viewContainerRef = viewContainerRef;
902
- _this.injector = injector;
903
- _this.element = _this.ngEle.nativeElement;
904
- _this.injectedModules = _this.injectedModules || [];
905
- _this.registerEvents(outputs$5);
906
- _this.addTwoWay.call(_this, twoWays$1);
907
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
908
- _this.context = new ej2AngularBase.ComponentBase();
909
- return _this;
910
- }
911
- /**
912
- * @return {?}
913
- */
914
- PagerComponent.prototype.ngOnInit = function () {
915
- this.context.ngOnInit(this);
916
- };
917
- /**
918
- * @return {?}
919
- */
920
- PagerComponent.prototype.ngAfterViewInit = function () {
921
- this.context.ngAfterViewInit(this);
922
- };
923
- /**
924
- * @return {?}
925
- */
926
- PagerComponent.prototype.ngOnDestroy = function () {
927
- this.context.ngOnDestroy(this);
928
- };
929
- /**
930
- * @return {?}
931
- */
932
- PagerComponent.prototype.ngAfterContentChecked = function () {
933
- this.context.ngAfterContentChecked(this);
934
- };
935
- return PagerComponent;
936
- }(ej2Grids.Pager));
937
- exports.PagerComponent.decorators = [
938
- { type: core.Component, args: [{
939
- selector: 'ejs-pager',
940
- inputs: inputs$1,
941
- outputs: outputs$5,
942
- template: '',
943
- changeDetection: core.ChangeDetectionStrategy.OnPush,
944
- queries: {}
945
- },] },
946
- ];
947
- /**
948
- * @nocollapse
949
- */
950
- exports.PagerComponent.ctorParameters = function () { return [
951
- { type: core.ElementRef, },
952
- { type: core.Renderer2, },
953
- { type: core.ViewContainerRef, },
954
- { type: core.Injector, },
955
- ]; };
956
- exports.PagerComponent.propDecorators = {
957
- 'template': [{ type: core.ContentChild, args: ['template',] },],
958
- };
959
- __decorate$4([
960
- ej2AngularBase.Template(),
961
- __metadata$4("design:type", Object)
962
- ], exports.PagerComponent.prototype, "template", void 0);
963
- exports.PagerComponent = __decorate$4([
964
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
965
- __metadata$4("design:paramtypes", [core.ElementRef,
966
- core.Renderer2,
967
- core.ViewContainerRef,
968
- core.Injector])
969
- ], exports.PagerComponent);
970
- /**
971
- * NgModule definition for the Pager component.
972
- */
973
- var PagerModule = /** @class */ (function () {
974
- function PagerModule() {
975
- }
976
- return PagerModule;
977
- }());
978
- PagerModule.decorators = [
979
- { type: core.NgModule, args: [{
980
- imports: [common.CommonModule],
981
- declarations: [
982
- exports.PagerComponent
983
- ],
984
- exports: [
985
- exports.PagerComponent
986
- ]
987
- },] },
988
- ];
989
- /**
990
- * @nocollapse
991
- */
992
- PagerModule.ctorParameters = function () { return []; };
993
- /**
994
- * NgModule definition for the Pager component with providers.
995
- */
996
- var PagerAllModule = /** @class */ (function () {
997
- function PagerAllModule() {
998
- }
999
- return PagerAllModule;
1000
- }());
1001
- PagerAllModule.decorators = [
1002
- { type: core.NgModule, args: [{
1003
- imports: [common.CommonModule, PagerModule],
1004
- exports: [
1005
- PagerModule
1006
- ],
1007
- providers: []
1008
- },] },
1009
- ];
1010
- /**
1011
- * @nocollapse
1012
- */
16
+ var __extends = (this && this.__extends) || (function () {
17
+ var extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
+ return function (d, b) {
21
+ extendStatics(d, b);
22
+ function __() { this.constructor = d; }
23
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
+ };
25
+ })();
26
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
+ r = Reflect.decorate(decorators, target, key, desc);
30
+ else
31
+ for (var i = decorators.length - 1; i >= 0; i--)
32
+ if (d = decorators[i])
33
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
35
+ };
36
+ var __metadata = (this && this.__metadata) || function (k, v) {
37
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
+ return Reflect.metadata(k, v);
39
+ };
40
+ var input = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'templateOptions', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
41
+ var outputs = [];
42
+ /**
43
+ * `e-stacked-column` directive represent the stacked column of the Angular Grid.
44
+ * It must be contained in a StackedColumns component(`e-stacked-columns`).
45
+ * ```html
46
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
47
+ * <e-columns>
48
+ * <e-column field='ID' width='100'></e-column>
49
+ * <e-column headerText='Details' width='100'>
50
+ * <e-stacked-columns>
51
+ * <e-stacked-column field='Name' width='140'></e-stacked-column>
52
+ * </e-stacked-columns>
53
+ * </e-column>
54
+ * </e-columns>
55
+ * </ejs-grid>
56
+ * ```
57
+ */
58
+ var StackedColumnDirective = /** @class */ (function (_super) {
59
+ __extends(StackedColumnDirective, _super);
60
+ /**
61
+ * @param {?} viewContainerRef
62
+ */
63
+ function StackedColumnDirective(viewContainerRef) {
64
+ var _this = _super.call(this) || this;
65
+ _this.viewContainerRef = viewContainerRef;
66
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
67
+ _this.registerEvents(outputs);
68
+ _this.directivePropList = input;
69
+ return _this;
70
+ }
71
+ return StackedColumnDirective;
72
+ }(ej2AngularBase.ComplexBase));
73
+ StackedColumnDirective.decorators = [
74
+ { type: core.Directive, args: [{
75
+ selector: 'ejs-grid>e-columns>e-column>e-stacked-columns>e-stacked-column',
76
+ inputs: input,
77
+ outputs: outputs,
78
+ queries: {}
79
+ },] },
80
+ ];
81
+ /**
82
+ * @nocollapse
83
+ */
84
+ StackedColumnDirective.ctorParameters = function () { return [
85
+ { type: core.ViewContainerRef, },
86
+ ]; };
87
+ StackedColumnDirective.propDecorators = {
88
+ 'template': [{ type: core.ContentChild, args: ['template',] },],
89
+ 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
90
+ 'commandsTemplate': [{ type: core.ContentChild, args: ['commandsTemplate',] },],
91
+ 'filter_itemTemplate': [{ type: core.ContentChild, args: ['filterItemTemplate',] },],
92
+ 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
93
+ 'filterTemplate': [{ type: core.ContentChild, args: ['filterTemplate',] },],
94
+ };
95
+ __decorate([
96
+ ej2AngularBase.Template(),
97
+ __metadata("design:type", Object)
98
+ ], StackedColumnDirective.prototype, "template", void 0);
99
+ __decorate([
100
+ ej2AngularBase.Template(),
101
+ __metadata("design:type", Object)
102
+ ], StackedColumnDirective.prototype, "headerTemplate", void 0);
103
+ __decorate([
104
+ ej2AngularBase.Template(),
105
+ __metadata("design:type", Object)
106
+ ], StackedColumnDirective.prototype, "commandsTemplate", void 0);
107
+ __decorate([
108
+ ej2AngularBase.Template(),
109
+ __metadata("design:type", Object)
110
+ ], StackedColumnDirective.prototype, "filter_itemTemplate", void 0);
111
+ __decorate([
112
+ ej2AngularBase.Template(),
113
+ __metadata("design:type", Object)
114
+ ], StackedColumnDirective.prototype, "editTemplate", void 0);
115
+ __decorate([
116
+ ej2AngularBase.Template(),
117
+ __metadata("design:type", Object)
118
+ ], StackedColumnDirective.prototype, "filterTemplate", void 0);
119
+ /**
120
+ * StackedColumn Array Directive
121
+ */
122
+ var StackedColumnsDirective = /** @class */ (function (_super) {
123
+ __extends(StackedColumnsDirective, _super);
124
+ function StackedColumnsDirective() {
125
+ return _super.call(this, 'columns') || this;
126
+ }
127
+ return StackedColumnsDirective;
128
+ }(ej2AngularBase.ArrayBase));
129
+ StackedColumnsDirective.decorators = [
130
+ { type: core.Directive, args: [{
131
+ selector: 'ejs-grid>e-columns>e-column>e-stacked-columns',
132
+ queries: {
133
+ children: new core.ContentChildren(StackedColumnDirective)
134
+ },
135
+ },] },
136
+ ];
137
+ /**
138
+ * @nocollapse
139
+ */
140
+ StackedColumnsDirective.ctorParameters = function () { return []; };
141
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
142
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
143
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
144
+ r = Reflect.decorate(decorators, target, key, desc);
145
+ else
146
+ for (var i = decorators.length - 1; i >= 0; i--)
147
+ if (d = decorators[i])
148
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
149
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
150
+ };
151
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
152
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
153
+ return Reflect.metadata(k, v);
154
+ };
155
+ var input$1 = ['allowEditing', 'allowFiltering', 'allowGrouping', 'allowReordering', 'allowResizing', 'allowSearching', 'allowSorting', 'autoFit', 'clipMode', 'columns', 'commands', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'headerValueAccessor', 'hideAtMedia', 'index', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'templateOptions', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];
156
+ var outputs$1 = [];
157
+ /**
158
+ * `e-column` directive represent a column of the Angular Grid.
159
+ * It must be contained in a Grid component(`ejs-grid`).
160
+ * ```html
161
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
162
+ * <e-columns>
163
+ * <e-column field='ID' width='100'></e-column>
164
+ * <e-column field='name' headerText='Name' width='100'></e-column>
165
+ * </e-columns>
166
+ * </ejs-grid>
167
+ * ```
168
+ */
169
+ var ColumnDirective = /** @class */ (function (_super) {
170
+ __extends(ColumnDirective, _super);
171
+ /**
172
+ * @param {?} viewContainerRef
173
+ */
174
+ function ColumnDirective(viewContainerRef) {
175
+ var _this = _super.call(this) || this;
176
+ _this.viewContainerRef = viewContainerRef;
177
+ _this.tags = ['columns'];
178
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
179
+ _this.registerEvents(outputs$1);
180
+ _this.directivePropList = input$1;
181
+ return _this;
182
+ }
183
+ return ColumnDirective;
184
+ }(ej2AngularBase.ComplexBase));
185
+ ColumnDirective.decorators = [
186
+ { type: core.Directive, args: [{
187
+ selector: 'ejs-grid>e-columns>e-column',
188
+ inputs: input$1,
189
+ outputs: outputs$1,
190
+ queries: {
191
+ childColumns: new core.ContentChild(StackedColumnsDirective)
192
+ }
193
+ },] },
194
+ ];
195
+ /**
196
+ * @nocollapse
197
+ */
198
+ ColumnDirective.ctorParameters = function () { return [
199
+ { type: core.ViewContainerRef, },
200
+ ]; };
201
+ ColumnDirective.propDecorators = {
202
+ 'template': [{ type: core.ContentChild, args: ['template',] },],
203
+ 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
204
+ 'commandsTemplate': [{ type: core.ContentChild, args: ['commandsTemplate',] },],
205
+ 'filter_itemTemplate': [{ type: core.ContentChild, args: ['filterItemTemplate',] },],
206
+ 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
207
+ 'filterTemplate': [{ type: core.ContentChild, args: ['filterTemplate',] },],
208
+ };
209
+ __decorate$1([
210
+ ej2AngularBase.Template(),
211
+ __metadata$1("design:type", Object)
212
+ ], ColumnDirective.prototype, "template", void 0);
213
+ __decorate$1([
214
+ ej2AngularBase.Template(),
215
+ __metadata$1("design:type", Object)
216
+ ], ColumnDirective.prototype, "headerTemplate", void 0);
217
+ __decorate$1([
218
+ ej2AngularBase.Template(),
219
+ __metadata$1("design:type", Object)
220
+ ], ColumnDirective.prototype, "commandsTemplate", void 0);
221
+ __decorate$1([
222
+ ej2AngularBase.Template(),
223
+ __metadata$1("design:type", Object)
224
+ ], ColumnDirective.prototype, "filter_itemTemplate", void 0);
225
+ __decorate$1([
226
+ ej2AngularBase.Template(),
227
+ __metadata$1("design:type", Object)
228
+ ], ColumnDirective.prototype, "editTemplate", void 0);
229
+ __decorate$1([
230
+ ej2AngularBase.Template(),
231
+ __metadata$1("design:type", Object)
232
+ ], ColumnDirective.prototype, "filterTemplate", void 0);
233
+ /**
234
+ * Column Array Directive
235
+ */
236
+ var ColumnsDirective = /** @class */ (function (_super) {
237
+ __extends(ColumnsDirective, _super);
238
+ function ColumnsDirective() {
239
+ return _super.call(this, 'columns') || this;
240
+ }
241
+ return ColumnsDirective;
242
+ }(ej2AngularBase.ArrayBase));
243
+ ColumnsDirective.decorators = [
244
+ { type: core.Directive, args: [{
245
+ selector: 'ejs-grid>e-columns',
246
+ queries: {
247
+ children: new core.ContentChildren(ColumnDirective)
248
+ },
249
+ },] },
250
+ ];
251
+ /**
252
+ * @nocollapse
253
+ */
254
+ ColumnsDirective.ctorParameters = function () { return []; };
255
+ var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
256
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
257
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
258
+ r = Reflect.decorate(decorators, target, key, desc);
259
+ else
260
+ for (var i = decorators.length - 1; i >= 0; i--)
261
+ if (d = decorators[i])
262
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
263
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
264
+ };
265
+ var __metadata$2 = (this && this.__metadata) || function (k, v) {
266
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
267
+ return Reflect.metadata(k, v);
268
+ };
269
+ var input$2 = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'groupCaptionTemplate', 'groupFooterTemplate', 'type'];
270
+ var outputs$2 = [];
271
+ /**
272
+ * `e-aggregate->e-column` directive represent a aggregate column of the Angular Grid.
273
+ * ```html
274
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
275
+ * <e-columns>
276
+ * <e-column field='ID' width='100'></e-column>
277
+ * <e-column field='name' headerText='Name' width='100'></e-column>
278
+ * </e-columns>
279
+ * <e-aggregates>
280
+ * <e-aggregate>
281
+ * <e-columns>
282
+ * <e-column field='ID' type='Min'></e-column>
283
+ * </e-columns>
284
+ * </e-aggregate>
285
+ * </e-aggregates>
286
+ * </ejs-grid>
287
+ * ```
288
+ */
289
+ var AggregateColumnDirective = /** @class */ (function (_super) {
290
+ __extends(AggregateColumnDirective, _super);
291
+ /**
292
+ * @param {?} viewContainerRef
293
+ */
294
+ function AggregateColumnDirective(viewContainerRef) {
295
+ var _this = _super.call(this) || this;
296
+ _this.viewContainerRef = viewContainerRef;
297
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
298
+ _this.registerEvents(outputs$2);
299
+ _this.directivePropList = input$2;
300
+ return _this;
301
+ }
302
+ return AggregateColumnDirective;
303
+ }(ej2AngularBase.ComplexBase));
304
+ AggregateColumnDirective.decorators = [
305
+ { type: core.Directive, args: [{
306
+ selector: 'ejs-grid>e-aggregates>e-aggregate>e-columns>e-column',
307
+ inputs: input$2,
308
+ outputs: outputs$2,
309
+ queries: {}
310
+ },] },
311
+ ];
312
+ /**
313
+ * @nocollapse
314
+ */
315
+ AggregateColumnDirective.ctorParameters = function () { return [
316
+ { type: core.ViewContainerRef, },
317
+ ]; };
318
+ AggregateColumnDirective.propDecorators = {
319
+ 'footerTemplate': [{ type: core.ContentChild, args: ['footerTemplate',] },],
320
+ 'groupFooterTemplate': [{ type: core.ContentChild, args: ['groupFooterTemplate',] },],
321
+ 'groupCaptionTemplate': [{ type: core.ContentChild, args: ['groupCaptionTemplate',] },],
322
+ };
323
+ __decorate$2([
324
+ ej2AngularBase.Template(),
325
+ __metadata$2("design:type", Object)
326
+ ], AggregateColumnDirective.prototype, "footerTemplate", void 0);
327
+ __decorate$2([
328
+ ej2AngularBase.Template(),
329
+ __metadata$2("design:type", Object)
330
+ ], AggregateColumnDirective.prototype, "groupFooterTemplate", void 0);
331
+ __decorate$2([
332
+ ej2AngularBase.Template(),
333
+ __metadata$2("design:type", Object)
334
+ ], AggregateColumnDirective.prototype, "groupCaptionTemplate", void 0);
335
+ /**
336
+ * AggregateColumn Array Directive
337
+ */
338
+ var AggregateColumnsDirective = /** @class */ (function (_super) {
339
+ __extends(AggregateColumnsDirective, _super);
340
+ function AggregateColumnsDirective() {
341
+ return _super.call(this, 'columns') || this;
342
+ }
343
+ return AggregateColumnsDirective;
344
+ }(ej2AngularBase.ArrayBase));
345
+ AggregateColumnsDirective.decorators = [
346
+ { type: core.Directive, args: [{
347
+ selector: 'ejs-grid>e-aggregates>e-aggregate>e-columns',
348
+ queries: {
349
+ children: new core.ContentChildren(AggregateColumnDirective)
350
+ },
351
+ },] },
352
+ ];
353
+ /**
354
+ * @nocollapse
355
+ */
356
+ AggregateColumnsDirective.ctorParameters = function () { return []; };
357
+ var input$3 = ['columns'];
358
+ var outputs$3 = [];
359
+ /**
360
+ * `e-aggregate` directive represent a aggregate row of the Angular Grid.
361
+ * It must be contained in a Grid component(`ejs-grid`).
362
+ * ```html
363
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
364
+ * <e-columns>
365
+ * <e-column field='ID' width='100'></e-column>
366
+ * <e-column field='name' headerText='Name' width='100'></e-column>
367
+ * </e-columns>
368
+ * <e-aggregates>
369
+ * <e-aggregate>
370
+ * <e-columns>
371
+ * <e-column field='ID' type='Min'></e-column>
372
+ * </e-columns>
373
+ * </e-aggregate>
374
+ * </e-aggregates>
375
+ * </ejs-grid>
376
+ * ```
377
+ */
378
+ var AggregateDirective = /** @class */ (function (_super) {
379
+ __extends(AggregateDirective, _super);
380
+ /**
381
+ * @param {?} viewContainerRef
382
+ */
383
+ function AggregateDirective(viewContainerRef) {
384
+ var _this = _super.call(this) || this;
385
+ _this.viewContainerRef = viewContainerRef;
386
+ _this.tags = ['columns'];
387
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
388
+ _this.registerEvents(outputs$3);
389
+ _this.directivePropList = input$3;
390
+ return _this;
391
+ }
392
+ return AggregateDirective;
393
+ }(ej2AngularBase.ComplexBase));
394
+ AggregateDirective.decorators = [
395
+ { type: core.Directive, args: [{
396
+ selector: 'ejs-grid>e-aggregates>e-aggregate',
397
+ inputs: input$3,
398
+ outputs: outputs$3,
399
+ queries: {
400
+ childColumns: new core.ContentChild(AggregateColumnsDirective)
401
+ }
402
+ },] },
403
+ ];
404
+ /**
405
+ * @nocollapse
406
+ */
407
+ AggregateDirective.ctorParameters = function () { return [
408
+ { type: core.ViewContainerRef, },
409
+ ]; };
410
+ /**
411
+ * Aggregate Array Directive
412
+ */
413
+ var AggregatesDirective = /** @class */ (function (_super) {
414
+ __extends(AggregatesDirective, _super);
415
+ function AggregatesDirective() {
416
+ return _super.call(this, 'aggregates') || this;
417
+ }
418
+ return AggregatesDirective;
419
+ }(ej2AngularBase.ArrayBase));
420
+ AggregatesDirective.decorators = [
421
+ { type: core.Directive, args: [{
422
+ selector: 'ejs-grid>e-aggregates',
423
+ queries: {
424
+ children: new core.ContentChildren(AggregateDirective)
425
+ },
426
+ },] },
427
+ ];
428
+ /**
429
+ * @nocollapse
430
+ */
431
+ AggregatesDirective.ctorParameters = function () { return []; };
432
+ var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
433
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
434
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
435
+ r = Reflect.decorate(decorators, target, key, desc);
436
+ else
437
+ for (var i = decorators.length - 1; i >= 0; i--)
438
+ if (d = decorators[i])
439
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
440
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
441
+ };
442
+ var __metadata$3 = (this && this.__metadata) || function (k, v) {
443
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
444
+ return Reflect.metadata(k, v);
445
+ };
446
+ var inputs = ['adaptiveUIMode', 'aggregates', 'allowExcelExport', 'allowFiltering', 'allowGrouping', 'allowKeyboard', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoFit', 'childGrid', 'clipMode', 'columnChooserSettings', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'cssClass', 'currencyCode', 'currentAction', 'currentViewData', 'dataSource', 'detailTemplate', 'editSettings', 'ej2StatePersistenceVersion', 'emptyRecordTemplate', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableColumnVirtualization', 'enableHeaderFocus', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', 'enableStickyHeader', 'enableVirtualMaskRow', 'enableVirtualization', 'exportGrids', 'filterSettings', 'frozenColumns', 'frozenRows', 'gridLines', 'groupSettings', 'height', 'hierarchyPrintMode', 'infiniteScrollSettings', 'loadingIndicator', 'locale', 'pageSettings', 'pagerTemplate', 'parentDetails', 'printMode', 'query', 'queryString', 'resizeSettings', 'rowDropSettings', 'rowHeight', 'rowRenderingMode', 'rowTemplate', 'searchSettings', 'selectedRowIndex', 'selectionSettings', 'showColumnChooser', 'showColumnMenu', 'showHider', 'sortSettings', 'textWrapSettings', 'toolbar', 'toolbarTemplate', 'width'];
447
+ var outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'batchAdd', 'batchCancel', 'batchDelete', 'beforeAutoFill', 'beforeBatchAdd', 'beforeBatchDelete', 'beforeBatchSave', 'beforeCopy', 'beforeCustomFilterOpen', 'beforeDataBound', 'beforeDetailTemplateDetach', 'beforeExcelExport', 'beforeOpenAdaptiveDialog', 'beforeOpenColumnChooser', 'beforePaste', 'beforePdfExport', 'beforePrint', 'beginEdit', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', 'cellSaved', 'cellSelected', 'cellSelecting', 'checkBoxChange', 'columnDataStateChange', 'columnDeselected', 'columnDeselecting', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuClose', 'columnMenuOpen', 'columnSelected', 'columnSelecting', 'commandClick', 'contextMenuClick', 'contextMenuClose', 'contextMenuOpen', 'created', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'destroyed', 'detailDataBound', 'excelAggregateQueryCellInfo', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'exportDetailDataBound', 'exportDetailTemplate', 'exportGroupCaption', 'headerCellInfo', 'keyPressed', 'lazyLoadGroupCollapse', 'lazyLoadGroupExpand', 'load', 'pdfAggregateQueryCellInfo', 'pdfExportComplete', 'pdfHeaderQueryCellInfo', 'pdfQueryCellInfo', 'printComplete', 'queryCellInfo', 'recordClick', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'toolbarClick', 'dataSourceChange'];
448
+ var twoWays = ['dataSource'];
449
+ /**
450
+ * `ejs-grid` represents the Angular Grid Component.
451
+ * ```html
452
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-grid>
453
+ * ```
454
+ */
455
+ exports.GridComponent = /** @class */ (function (_super) {
456
+ __extends(GridComponent, _super);
457
+ /**
458
+ * @param {?} ngEle
459
+ * @param {?} srenderer
460
+ * @param {?} viewContainerRef
461
+ * @param {?} injector
462
+ */
463
+ function GridComponent(ngEle, srenderer, viewContainerRef, injector) {
464
+ var _this = _super.call(this) || this;
465
+ _this.ngEle = ngEle;
466
+ _this.srenderer = srenderer;
467
+ _this.viewContainerRef = viewContainerRef;
468
+ _this.injector = injector;
469
+ _this.tags = ['columns', 'aggregates'];
470
+ _this.element = _this.ngEle.nativeElement;
471
+ _this.injectedModules = _this.injectedModules || [];
472
+ try {
473
+ var mod = _this.injector.get('GridsFilter');
474
+ if (_this.injectedModules.indexOf(mod) === -1) {
475
+ _this.injectedModules.push(mod);
476
+ }
477
+ }
478
+ catch (_a) { }
479
+ try {
480
+ var mod = _this.injector.get('GridsPage');
481
+ if (_this.injectedModules.indexOf(mod) === -1) {
482
+ _this.injectedModules.push(mod);
483
+ }
484
+ }
485
+ catch (_b) { }
486
+ try {
487
+ var mod = _this.injector.get('GridsSelection');
488
+ if (_this.injectedModules.indexOf(mod) === -1) {
489
+ _this.injectedModules.push(mod);
490
+ }
491
+ }
492
+ catch (_c) { }
493
+ try {
494
+ var mod = _this.injector.get('GridsSort');
495
+ if (_this.injectedModules.indexOf(mod) === -1) {
496
+ _this.injectedModules.push(mod);
497
+ }
498
+ }
499
+ catch (_d) { }
500
+ try {
501
+ var mod = _this.injector.get('GridsGroup');
502
+ if (_this.injectedModules.indexOf(mod) === -1) {
503
+ _this.injectedModules.push(mod);
504
+ }
505
+ }
506
+ catch (_e) { }
507
+ try {
508
+ var mod = _this.injector.get('GridsReorder');
509
+ if (_this.injectedModules.indexOf(mod) === -1) {
510
+ _this.injectedModules.push(mod);
511
+ }
512
+ }
513
+ catch (_f) { }
514
+ try {
515
+ var mod = _this.injector.get('GridsRowDD');
516
+ if (_this.injectedModules.indexOf(mod) === -1) {
517
+ _this.injectedModules.push(mod);
518
+ }
519
+ }
520
+ catch (_g) { }
521
+ try {
522
+ var mod = _this.injector.get('GridsDetailRow');
523
+ if (_this.injectedModules.indexOf(mod) === -1) {
524
+ _this.injectedModules.push(mod);
525
+ }
526
+ }
527
+ catch (_h) { }
528
+ try {
529
+ var mod = _this.injector.get('GridsToolbar');
530
+ if (_this.injectedModules.indexOf(mod) === -1) {
531
+ _this.injectedModules.push(mod);
532
+ }
533
+ }
534
+ catch (_j) { }
535
+ try {
536
+ var mod = _this.injector.get('GridsAggregate');
537
+ if (_this.injectedModules.indexOf(mod) === -1) {
538
+ _this.injectedModules.push(mod);
539
+ }
540
+ }
541
+ catch (_k) { }
542
+ try {
543
+ var mod = _this.injector.get('GridsSearch');
544
+ if (_this.injectedModules.indexOf(mod) === -1) {
545
+ _this.injectedModules.push(mod);
546
+ }
547
+ }
548
+ catch (_l) { }
549
+ try {
550
+ var mod = _this.injector.get('GridsVirtualScroll');
551
+ if (_this.injectedModules.indexOf(mod) === -1) {
552
+ _this.injectedModules.push(mod);
553
+ }
554
+ }
555
+ catch (_m) { }
556
+ try {
557
+ var mod = _this.injector.get('GridsEdit');
558
+ if (_this.injectedModules.indexOf(mod) === -1) {
559
+ _this.injectedModules.push(mod);
560
+ }
561
+ }
562
+ catch (_o) { }
563
+ try {
564
+ var mod = _this.injector.get('GridsResize');
565
+ if (_this.injectedModules.indexOf(mod) === -1) {
566
+ _this.injectedModules.push(mod);
567
+ }
568
+ }
569
+ catch (_p) { }
570
+ try {
571
+ var mod = _this.injector.get('GridsExcelExport');
572
+ if (_this.injectedModules.indexOf(mod) === -1) {
573
+ _this.injectedModules.push(mod);
574
+ }
575
+ }
576
+ catch (_q) { }
577
+ try {
578
+ var mod = _this.injector.get('GridsPdfExport');
579
+ if (_this.injectedModules.indexOf(mod) === -1) {
580
+ _this.injectedModules.push(mod);
581
+ }
582
+ }
583
+ catch (_r) { }
584
+ try {
585
+ var mod = _this.injector.get('GridsCommandColumn');
586
+ if (_this.injectedModules.indexOf(mod) === -1) {
587
+ _this.injectedModules.push(mod);
588
+ }
589
+ }
590
+ catch (_s) { }
591
+ try {
592
+ var mod = _this.injector.get('GridsContextMenu');
593
+ if (_this.injectedModules.indexOf(mod) === -1) {
594
+ _this.injectedModules.push(mod);
595
+ }
596
+ }
597
+ catch (_t) { }
598
+ try {
599
+ var mod = _this.injector.get('GridsFreeze');
600
+ if (_this.injectedModules.indexOf(mod) === -1) {
601
+ _this.injectedModules.push(mod);
602
+ }
603
+ }
604
+ catch (_u) { }
605
+ try {
606
+ var mod = _this.injector.get('GridsColumnMenu');
607
+ if (_this.injectedModules.indexOf(mod) === -1) {
608
+ _this.injectedModules.push(mod);
609
+ }
610
+ }
611
+ catch (_v) { }
612
+ try {
613
+ var mod = _this.injector.get('GridsColumnChooser');
614
+ if (_this.injectedModules.indexOf(mod) === -1) {
615
+ _this.injectedModules.push(mod);
616
+ }
617
+ }
618
+ catch (_w) { }
619
+ try {
620
+ var mod = _this.injector.get('GridsForeignKey');
621
+ if (_this.injectedModules.indexOf(mod) === -1) {
622
+ _this.injectedModules.push(mod);
623
+ }
624
+ }
625
+ catch (_x) { }
626
+ try {
627
+ var mod = _this.injector.get('GridsInfiniteScroll');
628
+ if (_this.injectedModules.indexOf(mod) === -1) {
629
+ _this.injectedModules.push(mod);
630
+ }
631
+ }
632
+ catch (_y) { }
633
+ try {
634
+ var mod = _this.injector.get('GridsLazyLoadGroup');
635
+ if (_this.injectedModules.indexOf(mod) === -1) {
636
+ _this.injectedModules.push(mod);
637
+ }
638
+ }
639
+ catch (_z) { }
640
+ _this.registerEvents(outputs$4);
641
+ _this.addTwoWay.call(_this, twoWays);
642
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
643
+ _this.context = new ej2AngularBase.ComponentBase();
644
+ return _this;
645
+ }
646
+ /**
647
+ * @return {?}
648
+ */
649
+ GridComponent.prototype.ngOnInit = function () {
650
+ this.context.ngOnInit(this);
651
+ };
652
+ /**
653
+ * @return {?}
654
+ */
655
+ GridComponent.prototype.ngAfterViewInit = function () {
656
+ this.context.ngAfterViewInit(this);
657
+ };
658
+ /**
659
+ * @return {?}
660
+ */
661
+ GridComponent.prototype.ngOnDestroy = function () {
662
+ this.context.ngOnDestroy(this);
663
+ };
664
+ /**
665
+ * @return {?}
666
+ */
667
+ GridComponent.prototype.ngAfterContentChecked = function () {
668
+ this.tagObjects[0].instance = this.childColumns;
669
+ if (this.childAggregates) {
670
+ this.tagObjects[1].instance = /** @type {?} */ (this.childAggregates);
671
+ }
672
+ this.context.ngAfterContentChecked(this);
673
+ };
674
+ return GridComponent;
675
+ }(ej2Grids.Grid));
676
+ exports.GridComponent.decorators = [
677
+ { type: core.Component, args: [{
678
+ selector: 'ejs-grid',
679
+ inputs: inputs,
680
+ outputs: outputs$4,
681
+ template: '',
682
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
683
+ queries: {
684
+ childColumns: new core.ContentChild(ColumnsDirective),
685
+ childAggregates: new core.ContentChild(AggregatesDirective)
686
+ }
687
+ },] },
688
+ ];
689
+ /**
690
+ * @nocollapse
691
+ */
692
+ exports.GridComponent.ctorParameters = function () { return [
693
+ { type: core.ElementRef, },
694
+ { type: core.Renderer2, },
695
+ { type: core.ViewContainerRef, },
696
+ { type: core.Injector, },
697
+ ]; };
698
+ exports.GridComponent.propDecorators = {
699
+ 'rowTemplate': [{ type: core.ContentChild, args: ['rowTemplate',] },],
700
+ 'emptyRecordTemplate': [{ type: core.ContentChild, args: ['emptyRecordTemplate',] },],
701
+ 'detailTemplate': [{ type: core.ContentChild, args: ['detailTemplate',] },],
702
+ 'toolbarTemplate': [{ type: core.ContentChild, args: ['toolbarTemplate',] },],
703
+ 'pagerTemplate': [{ type: core.ContentChild, args: ['pagerTemplate',] },],
704
+ 'editSettings_template': [{ type: core.ContentChild, args: ['editSettingsTemplate',] },],
705
+ 'groupSettings_captionTemplate': [{ type: core.ContentChild, args: ['groupSettingsCaptionTemplate',] },],
706
+ 'columnChooserSettings_headerTemplate': [{ type: core.ContentChild, args: ['columnChooserSettingsHeaderTemplate',] },],
707
+ 'columnChooserSettings_template': [{ type: core.ContentChild, args: ['columnChooserSettingsTemplate',] },],
708
+ 'columnChooserSettings_footerTemplate': [{ type: core.ContentChild, args: ['columnChooserSettingsFooterTemplate',] },],
709
+ };
710
+ __decorate$3([
711
+ ej2AngularBase.Template(),
712
+ __metadata$3("design:type", Object)
713
+ ], exports.GridComponent.prototype, "rowTemplate", void 0);
714
+ __decorate$3([
715
+ ej2AngularBase.Template(),
716
+ __metadata$3("design:type", Object)
717
+ ], exports.GridComponent.prototype, "emptyRecordTemplate", void 0);
718
+ __decorate$3([
719
+ ej2AngularBase.Template(),
720
+ __metadata$3("design:type", Object)
721
+ ], exports.GridComponent.prototype, "detailTemplate", void 0);
722
+ __decorate$3([
723
+ ej2AngularBase.Template(),
724
+ __metadata$3("design:type", Object)
725
+ ], exports.GridComponent.prototype, "toolbarTemplate", void 0);
726
+ __decorate$3([
727
+ ej2AngularBase.Template(),
728
+ __metadata$3("design:type", Object)
729
+ ], exports.GridComponent.prototype, "pagerTemplate", void 0);
730
+ __decorate$3([
731
+ ej2AngularBase.Template(),
732
+ __metadata$3("design:type", Object)
733
+ ], exports.GridComponent.prototype, "editSettings_template", void 0);
734
+ __decorate$3([
735
+ ej2AngularBase.Template(),
736
+ __metadata$3("design:type", Object)
737
+ ], exports.GridComponent.prototype, "groupSettings_captionTemplate", void 0);
738
+ __decorate$3([
739
+ ej2AngularBase.Template(),
740
+ __metadata$3("design:type", Object)
741
+ ], exports.GridComponent.prototype, "columnChooserSettings_headerTemplate", void 0);
742
+ __decorate$3([
743
+ ej2AngularBase.Template(),
744
+ __metadata$3("design:type", Object)
745
+ ], exports.GridComponent.prototype, "columnChooserSettings_template", void 0);
746
+ __decorate$3([
747
+ ej2AngularBase.Template(),
748
+ __metadata$3("design:type", Object)
749
+ ], exports.GridComponent.prototype, "columnChooserSettings_footerTemplate", void 0);
750
+ exports.GridComponent = __decorate$3([
751
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
752
+ __metadata$3("design:paramtypes", [core.ElementRef,
753
+ core.Renderer2,
754
+ core.ViewContainerRef,
755
+ core.Injector])
756
+ ], exports.GridComponent);
757
+ /**
758
+ * NgModule definition for the Grid component.
759
+ */
760
+ var GridModule = /** @class */ (function () {
761
+ function GridModule() {
762
+ }
763
+ return GridModule;
764
+ }());
765
+ GridModule.decorators = [
766
+ { type: core.NgModule, args: [{
767
+ imports: [common.CommonModule],
768
+ declarations: [
769
+ exports.GridComponent,
770
+ StackedColumnDirective,
771
+ StackedColumnsDirective,
772
+ ColumnDirective,
773
+ ColumnsDirective,
774
+ AggregateColumnDirective,
775
+ AggregateColumnsDirective,
776
+ AggregateDirective,
777
+ AggregatesDirective
778
+ ],
779
+ exports: [
780
+ exports.GridComponent,
781
+ StackedColumnDirective,
782
+ StackedColumnsDirective,
783
+ ColumnDirective,
784
+ ColumnsDirective,
785
+ AggregateColumnDirective,
786
+ AggregateColumnsDirective,
787
+ AggregateDirective,
788
+ AggregatesDirective
789
+ ]
790
+ },] },
791
+ ];
792
+ /**
793
+ * @nocollapse
794
+ */
795
+ GridModule.ctorParameters = function () { return []; };
796
+ var FilterService = { provide: 'GridsFilter', useValue: ej2Grids.Filter };
797
+ var PageService = { provide: 'GridsPage', useValue: ej2Grids.Page };
798
+ var SelectionService = { provide: 'GridsSelection', useValue: ej2Grids.Selection };
799
+ var SortService = { provide: 'GridsSort', useValue: ej2Grids.Sort };
800
+ var GroupService = { provide: 'GridsGroup', useValue: ej2Grids.Group };
801
+ var ReorderService = { provide: 'GridsReorder', useValue: ej2Grids.Reorder };
802
+ var RowDDService = { provide: 'GridsRowDD', useValue: ej2Grids.RowDD };
803
+ var DetailRowService = { provide: 'GridsDetailRow', useValue: ej2Grids.DetailRow };
804
+ var ToolbarService = { provide: 'GridsToolbar', useValue: ej2Grids.Toolbar };
805
+ var AggregateService = { provide: 'GridsAggregate', useValue: ej2Grids.Aggregate };
806
+ var SearchService = { provide: 'GridsSearch', useValue: ej2Grids.Search };
807
+ var VirtualScrollService = { provide: 'GridsVirtualScroll', useValue: ej2Grids.VirtualScroll };
808
+ var EditService = { provide: 'GridsEdit', useValue: ej2Grids.Edit };
809
+ var ResizeService = { provide: 'GridsResize', useValue: ej2Grids.Resize };
810
+ var ExcelExportService = { provide: 'GridsExcelExport', useValue: ej2Grids.ExcelExport };
811
+ var PdfExportService = { provide: 'GridsPdfExport', useValue: ej2Grids.PdfExport };
812
+ var CommandColumnService = { provide: 'GridsCommandColumn', useValue: ej2Grids.CommandColumn };
813
+ var ContextMenuService = { provide: 'GridsContextMenu', useValue: ej2Grids.ContextMenu };
814
+ var FreezeService = { provide: 'GridsFreeze', useValue: ej2Grids.Freeze };
815
+ var ColumnMenuService = { provide: 'GridsColumnMenu', useValue: ej2Grids.ColumnMenu };
816
+ var ColumnChooserService = { provide: 'GridsColumnChooser', useValue: ej2Grids.ColumnChooser };
817
+ var ForeignKeyService = { provide: 'GridsForeignKey', useValue: ej2Grids.ForeignKey };
818
+ var InfiniteScrollService = { provide: 'GridsInfiniteScroll', useValue: ej2Grids.InfiniteScroll };
819
+ var LazyLoadGroupService = { provide: 'GridsLazyLoadGroup', useValue: ej2Grids.LazyLoadGroup };
820
+ /**
821
+ * NgModule definition for the Grid component with providers.
822
+ */
823
+ var GridAllModule = /** @class */ (function () {
824
+ function GridAllModule() {
825
+ }
826
+ return GridAllModule;
827
+ }());
828
+ GridAllModule.decorators = [
829
+ { type: core.NgModule, args: [{
830
+ imports: [common.CommonModule, GridModule],
831
+ exports: [
832
+ GridModule
833
+ ],
834
+ providers: [
835
+ FilterService,
836
+ PageService,
837
+ SelectionService,
838
+ SortService,
839
+ GroupService,
840
+ ReorderService,
841
+ RowDDService,
842
+ DetailRowService,
843
+ ToolbarService,
844
+ AggregateService,
845
+ SearchService,
846
+ VirtualScrollService,
847
+ EditService,
848
+ ResizeService,
849
+ ExcelExportService,
850
+ PdfExportService,
851
+ CommandColumnService,
852
+ ContextMenuService,
853
+ FreezeService,
854
+ ColumnMenuService,
855
+ ColumnChooserService,
856
+ ForeignKeyService,
857
+ InfiniteScrollService,
858
+ LazyLoadGroupService
859
+ ]
860
+ },] },
861
+ ];
862
+ /**
863
+ * @nocollapse
864
+ */
865
+ GridAllModule.ctorParameters = function () { return []; };
866
+ var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
867
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
868
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
869
+ r = Reflect.decorate(decorators, target, key, desc);
870
+ else
871
+ for (var i = decorators.length - 1; i >= 0; i--)
872
+ if (d = decorators[i])
873
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
874
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
875
+ };
876
+ var __metadata$4 = (this && this.__metadata) || function (k, v) {
877
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
878
+ return Reflect.metadata(k, v);
879
+ };
880
+ var inputs$1 = ['cssClass', 'currentPage', 'customText', 'enableExternalMessage', 'enablePagerMessage', 'enablePersistence', 'enableQueryString', 'enableRtl', 'externalMessage', 'locale', 'pageCount', 'pageSize', 'pageSizes', 'template', 'totalRecordsCount'];
881
+ var outputs$5 = ['click', 'created', 'dropDownChanged', 'currentPageChange', 'pageSizeChange', 'pageCountChange', 'pageSizesChange'];
882
+ var twoWays$1 = ['currentPage', 'pageSize', 'pageCount', 'pageSizes'];
883
+ /**
884
+ * `ejs-pager` represents the Angular Pager Component.
885
+ * ```html
886
+ * <ejs-pager></ejs-pager>
887
+ * ```
888
+ */
889
+ exports.PagerComponent = /** @class */ (function (_super) {
890
+ __extends(PagerComponent, _super);
891
+ /**
892
+ * @param {?} ngEle
893
+ * @param {?} srenderer
894
+ * @param {?} viewContainerRef
895
+ * @param {?} injector
896
+ */
897
+ function PagerComponent(ngEle, srenderer, viewContainerRef, injector) {
898
+ var _this = _super.call(this) || this;
899
+ _this.ngEle = ngEle;
900
+ _this.srenderer = srenderer;
901
+ _this.viewContainerRef = viewContainerRef;
902
+ _this.injector = injector;
903
+ _this.element = _this.ngEle.nativeElement;
904
+ _this.injectedModules = _this.injectedModules || [];
905
+ _this.registerEvents(outputs$5);
906
+ _this.addTwoWay.call(_this, twoWays$1);
907
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
908
+ _this.context = new ej2AngularBase.ComponentBase();
909
+ return _this;
910
+ }
911
+ /**
912
+ * @return {?}
913
+ */
914
+ PagerComponent.prototype.ngOnInit = function () {
915
+ this.context.ngOnInit(this);
916
+ };
917
+ /**
918
+ * @return {?}
919
+ */
920
+ PagerComponent.prototype.ngAfterViewInit = function () {
921
+ this.context.ngAfterViewInit(this);
922
+ };
923
+ /**
924
+ * @return {?}
925
+ */
926
+ PagerComponent.prototype.ngOnDestroy = function () {
927
+ this.context.ngOnDestroy(this);
928
+ };
929
+ /**
930
+ * @return {?}
931
+ */
932
+ PagerComponent.prototype.ngAfterContentChecked = function () {
933
+ this.context.ngAfterContentChecked(this);
934
+ };
935
+ return PagerComponent;
936
+ }(ej2Grids.Pager));
937
+ exports.PagerComponent.decorators = [
938
+ { type: core.Component, args: [{
939
+ selector: 'ejs-pager',
940
+ inputs: inputs$1,
941
+ outputs: outputs$5,
942
+ template: '',
943
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
944
+ queries: {}
945
+ },] },
946
+ ];
947
+ /**
948
+ * @nocollapse
949
+ */
950
+ exports.PagerComponent.ctorParameters = function () { return [
951
+ { type: core.ElementRef, },
952
+ { type: core.Renderer2, },
953
+ { type: core.ViewContainerRef, },
954
+ { type: core.Injector, },
955
+ ]; };
956
+ exports.PagerComponent.propDecorators = {
957
+ 'template': [{ type: core.ContentChild, args: ['template',] },],
958
+ };
959
+ __decorate$4([
960
+ ej2AngularBase.Template(),
961
+ __metadata$4("design:type", Object)
962
+ ], exports.PagerComponent.prototype, "template", void 0);
963
+ exports.PagerComponent = __decorate$4([
964
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
965
+ __metadata$4("design:paramtypes", [core.ElementRef,
966
+ core.Renderer2,
967
+ core.ViewContainerRef,
968
+ core.Injector])
969
+ ], exports.PagerComponent);
970
+ /**
971
+ * NgModule definition for the Pager component.
972
+ */
973
+ var PagerModule = /** @class */ (function () {
974
+ function PagerModule() {
975
+ }
976
+ return PagerModule;
977
+ }());
978
+ PagerModule.decorators = [
979
+ { type: core.NgModule, args: [{
980
+ imports: [common.CommonModule],
981
+ declarations: [
982
+ exports.PagerComponent
983
+ ],
984
+ exports: [
985
+ exports.PagerComponent
986
+ ]
987
+ },] },
988
+ ];
989
+ /**
990
+ * @nocollapse
991
+ */
992
+ PagerModule.ctorParameters = function () { return []; };
993
+ /**
994
+ * NgModule definition for the Pager component with providers.
995
+ */
996
+ var PagerAllModule = /** @class */ (function () {
997
+ function PagerAllModule() {
998
+ }
999
+ return PagerAllModule;
1000
+ }());
1001
+ PagerAllModule.decorators = [
1002
+ { type: core.NgModule, args: [{
1003
+ imports: [common.CommonModule, PagerModule],
1004
+ exports: [
1005
+ PagerModule
1006
+ ],
1007
+ providers: []
1008
+ },] },
1009
+ ];
1010
+ /**
1011
+ * @nocollapse
1012
+ */
1013
1013
  PagerAllModule.ctorParameters = function () { return []; };
1014
1014
 
1015
1015
  exports.StackedColumnDirective = StackedColumnDirective;
@@ -1345,8 +1345,10 @@ exports.contextMenuClick = ej2Grids.contextMenuClick;
1345
1345
  exports.freezeRender = ej2Grids.freezeRender;
1346
1346
  exports.freezeRefresh = ej2Grids.freezeRefresh;
1347
1347
  exports.contextMenuOpen = ej2Grids.contextMenuOpen;
1348
+ exports.contextMenuClose = ej2Grids.contextMenuClose;
1348
1349
  exports.columnMenuClick = ej2Grids.columnMenuClick;
1349
1350
  exports.columnMenuOpen = ej2Grids.columnMenuOpen;
1351
+ exports.columnMenuClose = ej2Grids.columnMenuClose;
1350
1352
  exports.filterOpen = ej2Grids.filterOpen;
1351
1353
  exports.filterDialogCreated = ej2Grids.filterDialogCreated;
1352
1354
  exports.filterMenuClose = ej2Grids.filterMenuClose;
@@ -1378,6 +1380,7 @@ exports.beforeBatchCancel = ej2Grids.beforeBatchCancel;
1378
1380
  exports.batchEditFormRendered = ej2Grids.batchEditFormRendered;
1379
1381
  exports.partialRefresh = ej2Grids.partialRefresh;
1380
1382
  exports.beforeCustomFilterOpen = ej2Grids.beforeCustomFilterOpen;
1383
+ exports.customFilterOpen = ej2Grids.customFilterOpen;
1381
1384
  exports.selectVirtualRow = ej2Grids.selectVirtualRow;
1382
1385
  exports.columnsPrepared = ej2Grids.columnsPrepared;
1383
1386
  exports.cBoxFltrBegin = ej2Grids.cBoxFltrBegin;