@syncfusion/ej2-angular-pivotview 29.2.10-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-pivotview.umd.js
3
- * version : 29.2.10
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,434 +13,434 @@
13
13
  (factory((global['ej2-angular-pivotview'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.pivotview,global.ng.common));
14
14
  }(this, (function (exports,core,ej2AngularBase,ej2Pivotview,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 inputs = ['aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'virtualScrollSettings', 'width'];
41
- var outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
42
- var twoWays = [];
43
- /**
44
- * `ej-pivotview` represents the Angular Pivot Table Component.
45
- * ```html
46
- * <ej-pivotview></ej-pivotview>
47
- * ```
48
- */
49
- exports.PivotViewComponent = /** @class */ (function (_super) {
50
- __extends(PivotViewComponent, _super);
51
- /**
52
- * @param {?} ngEle
53
- * @param {?} srenderer
54
- * @param {?} viewContainerRef
55
- * @param {?} injector
56
- */
57
- function PivotViewComponent(ngEle, srenderer, viewContainerRef, injector) {
58
- var _this = _super.call(this) || this;
59
- _this.ngEle = ngEle;
60
- _this.srenderer = srenderer;
61
- _this.viewContainerRef = viewContainerRef;
62
- _this.injector = injector;
63
- _this.element = _this.ngEle.nativeElement;
64
- _this.injectedModules = _this.injectedModules || [];
65
- try {
66
- var mod = _this.injector.get('PivotViewGroupingBar');
67
- if (_this.injectedModules.indexOf(mod) === -1) {
68
- _this.injectedModules.push(mod);
69
- }
70
- }
71
- catch (_a) { }
72
- try {
73
- var mod = _this.injector.get('PivotViewFieldList');
74
- if (_this.injectedModules.indexOf(mod) === -1) {
75
- _this.injectedModules.push(mod);
76
- }
77
- }
78
- catch (_b) { }
79
- try {
80
- var mod = _this.injector.get('PivotViewCalculatedField');
81
- if (_this.injectedModules.indexOf(mod) === -1) {
82
- _this.injectedModules.push(mod);
83
- }
84
- }
85
- catch (_c) { }
86
- try {
87
- var mod = _this.injector.get('PivotViewConditionalFormatting');
88
- if (_this.injectedModules.indexOf(mod) === -1) {
89
- _this.injectedModules.push(mod);
90
- }
91
- }
92
- catch (_d) { }
93
- try {
94
- var mod = _this.injector.get('PivotViewVirtualScroll');
95
- if (_this.injectedModules.indexOf(mod) === -1) {
96
- _this.injectedModules.push(mod);
97
- }
98
- }
99
- catch (_e) { }
100
- try {
101
- var mod = _this.injector.get('PivotViewDrillThrough');
102
- if (_this.injectedModules.indexOf(mod) === -1) {
103
- _this.injectedModules.push(mod);
104
- }
105
- }
106
- catch (_f) { }
107
- try {
108
- var mod = _this.injector.get('PivotViewToolbar');
109
- if (_this.injectedModules.indexOf(mod) === -1) {
110
- _this.injectedModules.push(mod);
111
- }
112
- }
113
- catch (_g) { }
114
- try {
115
- var mod = _this.injector.get('PivotViewPivotChart');
116
- if (_this.injectedModules.indexOf(mod) === -1) {
117
- _this.injectedModules.push(mod);
118
- }
119
- }
120
- catch (_h) { }
121
- try {
122
- var mod = _this.injector.get('PivotViewPDFExport');
123
- if (_this.injectedModules.indexOf(mod) === -1) {
124
- _this.injectedModules.push(mod);
125
- }
126
- }
127
- catch (_j) { }
128
- try {
129
- var mod = _this.injector.get('PivotViewExcelExport');
130
- if (_this.injectedModules.indexOf(mod) === -1) {
131
- _this.injectedModules.push(mod);
132
- }
133
- }
134
- catch (_k) { }
135
- try {
136
- var mod = _this.injector.get('PivotViewNumberFormatting');
137
- if (_this.injectedModules.indexOf(mod) === -1) {
138
- _this.injectedModules.push(mod);
139
- }
140
- }
141
- catch (_l) { }
142
- try {
143
- var mod = _this.injector.get('PivotViewGrouping');
144
- if (_this.injectedModules.indexOf(mod) === -1) {
145
- _this.injectedModules.push(mod);
146
- }
147
- }
148
- catch (_m) { }
149
- try {
150
- var mod = _this.injector.get('PivotViewPager');
151
- if (_this.injectedModules.indexOf(mod) === -1) {
152
- _this.injectedModules.push(mod);
153
- }
154
- }
155
- catch (_o) { }
156
- _this.registerEvents(outputs);
157
- _this.addTwoWay.call(_this, twoWays);
158
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
159
- _this.context = new ej2AngularBase.ComponentBase();
160
- return _this;
161
- }
162
- /**
163
- * @return {?}
164
- */
165
- PivotViewComponent.prototype.ngOnInit = function () {
166
- this.context.ngOnInit(this);
167
- };
168
- /**
169
- * @return {?}
170
- */
171
- PivotViewComponent.prototype.ngAfterViewInit = function () {
172
- this.context.ngAfterViewInit(this);
173
- };
174
- /**
175
- * @return {?}
176
- */
177
- PivotViewComponent.prototype.ngOnDestroy = function () {
178
- this.context.ngOnDestroy(this);
179
- };
180
- /**
181
- * @return {?}
182
- */
183
- PivotViewComponent.prototype.ngAfterContentChecked = function () {
184
- this.context.ngAfterContentChecked(this);
185
- };
186
- return PivotViewComponent;
187
- }(ej2Pivotview.PivotView));
188
- exports.PivotViewComponent.decorators = [
189
- { type: core.Component, args: [{
190
- selector: 'ejs-pivotview',
191
- inputs: inputs,
192
- outputs: outputs,
193
- template: '',
194
- changeDetection: core.ChangeDetectionStrategy.OnPush,
195
- queries: {}
196
- },] },
197
- ];
198
- /**
199
- * @nocollapse
200
- */
201
- exports.PivotViewComponent.ctorParameters = function () { return [
202
- { type: core.ElementRef, },
203
- { type: core.Renderer2, },
204
- { type: core.ViewContainerRef, },
205
- { type: core.Injector, },
206
- ]; };
207
- exports.PivotViewComponent.propDecorators = {
208
- 'cellTemplate': [{ type: core.ContentChild, args: ['cellTemplate',] },],
209
- 'tooltipTemplate': [{ type: core.ContentChild, args: ['tooltipTemplate',] },],
210
- };
211
- __decorate([
212
- ej2AngularBase.Template(),
213
- __metadata("design:type", Object)
214
- ], exports.PivotViewComponent.prototype, "cellTemplate", void 0);
215
- __decorate([
216
- ej2AngularBase.Template(),
217
- __metadata("design:type", Object)
218
- ], exports.PivotViewComponent.prototype, "tooltipTemplate", void 0);
219
- exports.PivotViewComponent = __decorate([
220
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
221
- __metadata("design:paramtypes", [core.ElementRef,
222
- core.Renderer2,
223
- core.ViewContainerRef,
224
- core.Injector])
225
- ], exports.PivotViewComponent);
226
- /**
227
- * NgModule definition for the PivotView component.
228
- */
229
- var PivotViewModule = /** @class */ (function () {
230
- function PivotViewModule() {
231
- }
232
- return PivotViewModule;
233
- }());
234
- PivotViewModule.decorators = [
235
- { type: core.NgModule, args: [{
236
- imports: [common.CommonModule],
237
- declarations: [
238
- exports.PivotViewComponent
239
- ],
240
- exports: [
241
- exports.PivotViewComponent
242
- ]
243
- },] },
244
- ];
245
- /**
246
- * @nocollapse
247
- */
248
- PivotViewModule.ctorParameters = function () { return []; };
249
- var GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: ej2Pivotview.GroupingBar };
250
- var FieldListService = { provide: 'PivotViewFieldList', useValue: ej2Pivotview.FieldList };
251
- var CalculatedFieldService = { provide: 'PivotViewCalculatedField', useValue: ej2Pivotview.CalculatedField };
252
- var ConditionalFormattingService = { provide: 'PivotViewConditionalFormatting', useValue: ej2Pivotview.ConditionalFormatting };
253
- var VirtualScrollService = { provide: 'PivotViewVirtualScroll', useValue: ej2Pivotview.VirtualScroll };
254
- var DrillThroughService = { provide: 'PivotViewDrillThrough', useValue: ej2Pivotview.DrillThrough };
255
- var ToolbarService = { provide: 'PivotViewToolbar', useValue: ej2Pivotview.Toolbar };
256
- var PivotChartService = { provide: 'PivotViewPivotChart', useValue: ej2Pivotview.PivotChart };
257
- var PDFExportService = { provide: 'PivotViewPDFExport', useValue: ej2Pivotview.PDFExport };
258
- var ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ej2Pivotview.ExcelExport };
259
- var NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: ej2Pivotview.NumberFormatting };
260
- var GroupingService = { provide: 'PivotViewGrouping', useValue: ej2Pivotview.Grouping };
261
- var PagerService = { provide: 'PivotViewPager', useValue: ej2Pivotview.Pager };
262
- /**
263
- * NgModule definition for the PivotView component with providers.
264
- */
265
- var PivotViewAllModule = /** @class */ (function () {
266
- function PivotViewAllModule() {
267
- }
268
- return PivotViewAllModule;
269
- }());
270
- PivotViewAllModule.decorators = [
271
- { type: core.NgModule, args: [{
272
- imports: [common.CommonModule, PivotViewModule],
273
- exports: [
274
- PivotViewModule
275
- ],
276
- providers: [
277
- GroupingBarService,
278
- FieldListService,
279
- CalculatedFieldService,
280
- ConditionalFormattingService,
281
- VirtualScrollService,
282
- DrillThroughService,
283
- ToolbarService,
284
- PivotChartService,
285
- PDFExportService,
286
- ExcelExportService,
287
- NumberFormattingService,
288
- GroupingService,
289
- PagerService
290
- ]
291
- },] },
292
- ];
293
- /**
294
- * @nocollapse
295
- */
296
- PivotViewAllModule.ctorParameters = function () { return []; };
297
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
298
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
299
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
300
- r = Reflect.decorate(decorators, target, key, desc);
301
- else
302
- for (var i = decorators.length - 1; i >= 0; i--)
303
- if (d = decorators[i])
304
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
305
- return c > 3 && r && Object.defineProperty(target, key, r), r;
306
- };
307
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
308
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
309
- return Reflect.metadata(k, v);
310
- };
311
- var inputs$1 = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
312
- var outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
313
- var twoWays$1 = [];
314
- /**
315
- * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
316
- * ```html
317
- * <ej-pivotfieldlist></ej-pivotfieldlist>
318
- * ```
319
- */
320
- exports.PivotFieldListComponent = /** @class */ (function (_super) {
321
- __extends(PivotFieldListComponent, _super);
322
- /**
323
- * @param {?} ngEle
324
- * @param {?} srenderer
325
- * @param {?} viewContainerRef
326
- * @param {?} injector
327
- */
328
- function PivotFieldListComponent(ngEle, srenderer, viewContainerRef, injector) {
329
- var _this = _super.call(this) || this;
330
- _this.ngEle = ngEle;
331
- _this.srenderer = srenderer;
332
- _this.viewContainerRef = viewContainerRef;
333
- _this.injector = injector;
334
- _this.element = _this.ngEle.nativeElement;
335
- _this.injectedModules = _this.injectedModules || [];
336
- try {
337
- var mod = _this.injector.get('PivotViewCalculatedField');
338
- if (_this.injectedModules.indexOf(mod) === -1) {
339
- _this.injectedModules.push(mod);
340
- }
341
- }
342
- catch (_a) { }
343
- _this.registerEvents(outputs$1);
344
- _this.addTwoWay.call(_this, twoWays$1);
345
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
346
- _this.context = new ej2AngularBase.ComponentBase();
347
- return _this;
348
- }
349
- /**
350
- * @return {?}
351
- */
352
- PivotFieldListComponent.prototype.ngOnInit = function () {
353
- this.context.ngOnInit(this);
354
- };
355
- /**
356
- * @return {?}
357
- */
358
- PivotFieldListComponent.prototype.ngAfterViewInit = function () {
359
- this.context.ngAfterViewInit(this);
360
- };
361
- /**
362
- * @return {?}
363
- */
364
- PivotFieldListComponent.prototype.ngOnDestroy = function () {
365
- this.context.ngOnDestroy(this);
366
- };
367
- /**
368
- * @return {?}
369
- */
370
- PivotFieldListComponent.prototype.ngAfterContentChecked = function () {
371
- this.context.ngAfterContentChecked(this);
372
- };
373
- return PivotFieldListComponent;
374
- }(ej2Pivotview.PivotFieldList));
375
- exports.PivotFieldListComponent.decorators = [
376
- { type: core.Component, args: [{
377
- selector: 'ejs-pivotfieldlist',
378
- inputs: inputs$1,
379
- outputs: outputs$1,
380
- template: '',
381
- changeDetection: core.ChangeDetectionStrategy.OnPush,
382
- queries: {}
383
- },] },
384
- ];
385
- /**
386
- * @nocollapse
387
- */
388
- exports.PivotFieldListComponent.ctorParameters = function () { return [
389
- { type: core.ElementRef, },
390
- { type: core.Renderer2, },
391
- { type: core.ViewContainerRef, },
392
- { type: core.Injector, },
393
- ]; };
394
- exports.PivotFieldListComponent = __decorate$1([
395
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
396
- __metadata$1("design:paramtypes", [core.ElementRef,
397
- core.Renderer2,
398
- core.ViewContainerRef,
399
- core.Injector])
400
- ], exports.PivotFieldListComponent);
401
- /**
402
- * NgModule definition for the PivotFieldList component.
403
- */
404
- var PivotFieldListModule = /** @class */ (function () {
405
- function PivotFieldListModule() {
406
- }
407
- return PivotFieldListModule;
408
- }());
409
- PivotFieldListModule.decorators = [
410
- { type: core.NgModule, args: [{
411
- imports: [common.CommonModule],
412
- declarations: [
413
- exports.PivotFieldListComponent
414
- ],
415
- exports: [
416
- exports.PivotFieldListComponent
417
- ]
418
- },] },
419
- ];
420
- /**
421
- * @nocollapse
422
- */
423
- PivotFieldListModule.ctorParameters = function () { return []; };
424
- /**
425
- * NgModule definition for the PivotFieldList component with providers.
426
- */
427
- var PivotFieldListAllModule = /** @class */ (function () {
428
- function PivotFieldListAllModule() {
429
- }
430
- return PivotFieldListAllModule;
431
- }());
432
- PivotFieldListAllModule.decorators = [
433
- { type: core.NgModule, args: [{
434
- imports: [common.CommonModule, PivotFieldListModule],
435
- exports: [
436
- PivotFieldListModule
437
- ],
438
- providers: []
439
- },] },
440
- ];
441
- /**
442
- * @nocollapse
443
- */
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 inputs = ['aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'virtualScrollSettings', 'width'];
41
+ var outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
42
+ var twoWays = [];
43
+ /**
44
+ * `ej-pivotview` represents the Angular Pivot Table Component.
45
+ * ```html
46
+ * <ej-pivotview></ej-pivotview>
47
+ * ```
48
+ */
49
+ exports.PivotViewComponent = /** @class */ (function (_super) {
50
+ __extends(PivotViewComponent, _super);
51
+ /**
52
+ * @param {?} ngEle
53
+ * @param {?} srenderer
54
+ * @param {?} viewContainerRef
55
+ * @param {?} injector
56
+ */
57
+ function PivotViewComponent(ngEle, srenderer, viewContainerRef, injector) {
58
+ var _this = _super.call(this) || this;
59
+ _this.ngEle = ngEle;
60
+ _this.srenderer = srenderer;
61
+ _this.viewContainerRef = viewContainerRef;
62
+ _this.injector = injector;
63
+ _this.element = _this.ngEle.nativeElement;
64
+ _this.injectedModules = _this.injectedModules || [];
65
+ try {
66
+ var mod = _this.injector.get('PivotViewGroupingBar');
67
+ if (_this.injectedModules.indexOf(mod) === -1) {
68
+ _this.injectedModules.push(mod);
69
+ }
70
+ }
71
+ catch (_a) { }
72
+ try {
73
+ var mod = _this.injector.get('PivotViewFieldList');
74
+ if (_this.injectedModules.indexOf(mod) === -1) {
75
+ _this.injectedModules.push(mod);
76
+ }
77
+ }
78
+ catch (_b) { }
79
+ try {
80
+ var mod = _this.injector.get('PivotViewCalculatedField');
81
+ if (_this.injectedModules.indexOf(mod) === -1) {
82
+ _this.injectedModules.push(mod);
83
+ }
84
+ }
85
+ catch (_c) { }
86
+ try {
87
+ var mod = _this.injector.get('PivotViewConditionalFormatting');
88
+ if (_this.injectedModules.indexOf(mod) === -1) {
89
+ _this.injectedModules.push(mod);
90
+ }
91
+ }
92
+ catch (_d) { }
93
+ try {
94
+ var mod = _this.injector.get('PivotViewVirtualScroll');
95
+ if (_this.injectedModules.indexOf(mod) === -1) {
96
+ _this.injectedModules.push(mod);
97
+ }
98
+ }
99
+ catch (_e) { }
100
+ try {
101
+ var mod = _this.injector.get('PivotViewDrillThrough');
102
+ if (_this.injectedModules.indexOf(mod) === -1) {
103
+ _this.injectedModules.push(mod);
104
+ }
105
+ }
106
+ catch (_f) { }
107
+ try {
108
+ var mod = _this.injector.get('PivotViewToolbar');
109
+ if (_this.injectedModules.indexOf(mod) === -1) {
110
+ _this.injectedModules.push(mod);
111
+ }
112
+ }
113
+ catch (_g) { }
114
+ try {
115
+ var mod = _this.injector.get('PivotViewPivotChart');
116
+ if (_this.injectedModules.indexOf(mod) === -1) {
117
+ _this.injectedModules.push(mod);
118
+ }
119
+ }
120
+ catch (_h) { }
121
+ try {
122
+ var mod = _this.injector.get('PivotViewPDFExport');
123
+ if (_this.injectedModules.indexOf(mod) === -1) {
124
+ _this.injectedModules.push(mod);
125
+ }
126
+ }
127
+ catch (_j) { }
128
+ try {
129
+ var mod = _this.injector.get('PivotViewExcelExport');
130
+ if (_this.injectedModules.indexOf(mod) === -1) {
131
+ _this.injectedModules.push(mod);
132
+ }
133
+ }
134
+ catch (_k) { }
135
+ try {
136
+ var mod = _this.injector.get('PivotViewNumberFormatting');
137
+ if (_this.injectedModules.indexOf(mod) === -1) {
138
+ _this.injectedModules.push(mod);
139
+ }
140
+ }
141
+ catch (_l) { }
142
+ try {
143
+ var mod = _this.injector.get('PivotViewGrouping');
144
+ if (_this.injectedModules.indexOf(mod) === -1) {
145
+ _this.injectedModules.push(mod);
146
+ }
147
+ }
148
+ catch (_m) { }
149
+ try {
150
+ var mod = _this.injector.get('PivotViewPager');
151
+ if (_this.injectedModules.indexOf(mod) === -1) {
152
+ _this.injectedModules.push(mod);
153
+ }
154
+ }
155
+ catch (_o) { }
156
+ _this.registerEvents(outputs);
157
+ _this.addTwoWay.call(_this, twoWays);
158
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
159
+ _this.context = new ej2AngularBase.ComponentBase();
160
+ return _this;
161
+ }
162
+ /**
163
+ * @return {?}
164
+ */
165
+ PivotViewComponent.prototype.ngOnInit = function () {
166
+ this.context.ngOnInit(this);
167
+ };
168
+ /**
169
+ * @return {?}
170
+ */
171
+ PivotViewComponent.prototype.ngAfterViewInit = function () {
172
+ this.context.ngAfterViewInit(this);
173
+ };
174
+ /**
175
+ * @return {?}
176
+ */
177
+ PivotViewComponent.prototype.ngOnDestroy = function () {
178
+ this.context.ngOnDestroy(this);
179
+ };
180
+ /**
181
+ * @return {?}
182
+ */
183
+ PivotViewComponent.prototype.ngAfterContentChecked = function () {
184
+ this.context.ngAfterContentChecked(this);
185
+ };
186
+ return PivotViewComponent;
187
+ }(ej2Pivotview.PivotView));
188
+ exports.PivotViewComponent.decorators = [
189
+ { type: core.Component, args: [{
190
+ selector: 'ejs-pivotview',
191
+ inputs: inputs,
192
+ outputs: outputs,
193
+ template: '',
194
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
195
+ queries: {}
196
+ },] },
197
+ ];
198
+ /**
199
+ * @nocollapse
200
+ */
201
+ exports.PivotViewComponent.ctorParameters = function () { return [
202
+ { type: core.ElementRef, },
203
+ { type: core.Renderer2, },
204
+ { type: core.ViewContainerRef, },
205
+ { type: core.Injector, },
206
+ ]; };
207
+ exports.PivotViewComponent.propDecorators = {
208
+ 'cellTemplate': [{ type: core.ContentChild, args: ['cellTemplate',] },],
209
+ 'tooltipTemplate': [{ type: core.ContentChild, args: ['tooltipTemplate',] },],
210
+ };
211
+ __decorate([
212
+ ej2AngularBase.Template(),
213
+ __metadata("design:type", Object)
214
+ ], exports.PivotViewComponent.prototype, "cellTemplate", void 0);
215
+ __decorate([
216
+ ej2AngularBase.Template(),
217
+ __metadata("design:type", Object)
218
+ ], exports.PivotViewComponent.prototype, "tooltipTemplate", void 0);
219
+ exports.PivotViewComponent = __decorate([
220
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
221
+ __metadata("design:paramtypes", [core.ElementRef,
222
+ core.Renderer2,
223
+ core.ViewContainerRef,
224
+ core.Injector])
225
+ ], exports.PivotViewComponent);
226
+ /**
227
+ * NgModule definition for the PivotView component.
228
+ */
229
+ var PivotViewModule = /** @class */ (function () {
230
+ function PivotViewModule() {
231
+ }
232
+ return PivotViewModule;
233
+ }());
234
+ PivotViewModule.decorators = [
235
+ { type: core.NgModule, args: [{
236
+ imports: [common.CommonModule],
237
+ declarations: [
238
+ exports.PivotViewComponent
239
+ ],
240
+ exports: [
241
+ exports.PivotViewComponent
242
+ ]
243
+ },] },
244
+ ];
245
+ /**
246
+ * @nocollapse
247
+ */
248
+ PivotViewModule.ctorParameters = function () { return []; };
249
+ var GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: ej2Pivotview.GroupingBar };
250
+ var FieldListService = { provide: 'PivotViewFieldList', useValue: ej2Pivotview.FieldList };
251
+ var CalculatedFieldService = { provide: 'PivotViewCalculatedField', useValue: ej2Pivotview.CalculatedField };
252
+ var ConditionalFormattingService = { provide: 'PivotViewConditionalFormatting', useValue: ej2Pivotview.ConditionalFormatting };
253
+ var VirtualScrollService = { provide: 'PivotViewVirtualScroll', useValue: ej2Pivotview.VirtualScroll };
254
+ var DrillThroughService = { provide: 'PivotViewDrillThrough', useValue: ej2Pivotview.DrillThrough };
255
+ var ToolbarService = { provide: 'PivotViewToolbar', useValue: ej2Pivotview.Toolbar };
256
+ var PivotChartService = { provide: 'PivotViewPivotChart', useValue: ej2Pivotview.PivotChart };
257
+ var PDFExportService = { provide: 'PivotViewPDFExport', useValue: ej2Pivotview.PDFExport };
258
+ var ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ej2Pivotview.ExcelExport };
259
+ var NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: ej2Pivotview.NumberFormatting };
260
+ var GroupingService = { provide: 'PivotViewGrouping', useValue: ej2Pivotview.Grouping };
261
+ var PagerService = { provide: 'PivotViewPager', useValue: ej2Pivotview.Pager };
262
+ /**
263
+ * NgModule definition for the PivotView component with providers.
264
+ */
265
+ var PivotViewAllModule = /** @class */ (function () {
266
+ function PivotViewAllModule() {
267
+ }
268
+ return PivotViewAllModule;
269
+ }());
270
+ PivotViewAllModule.decorators = [
271
+ { type: core.NgModule, args: [{
272
+ imports: [common.CommonModule, PivotViewModule],
273
+ exports: [
274
+ PivotViewModule
275
+ ],
276
+ providers: [
277
+ GroupingBarService,
278
+ FieldListService,
279
+ CalculatedFieldService,
280
+ ConditionalFormattingService,
281
+ VirtualScrollService,
282
+ DrillThroughService,
283
+ ToolbarService,
284
+ PivotChartService,
285
+ PDFExportService,
286
+ ExcelExportService,
287
+ NumberFormattingService,
288
+ GroupingService,
289
+ PagerService
290
+ ]
291
+ },] },
292
+ ];
293
+ /**
294
+ * @nocollapse
295
+ */
296
+ PivotViewAllModule.ctorParameters = function () { return []; };
297
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
298
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
299
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
300
+ r = Reflect.decorate(decorators, target, key, desc);
301
+ else
302
+ for (var i = decorators.length - 1; i >= 0; i--)
303
+ if (d = decorators[i])
304
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
305
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
306
+ };
307
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
308
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
309
+ return Reflect.metadata(k, v);
310
+ };
311
+ var inputs$1 = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
312
+ var outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
313
+ var twoWays$1 = [];
314
+ /**
315
+ * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
316
+ * ```html
317
+ * <ej-pivotfieldlist></ej-pivotfieldlist>
318
+ * ```
319
+ */
320
+ exports.PivotFieldListComponent = /** @class */ (function (_super) {
321
+ __extends(PivotFieldListComponent, _super);
322
+ /**
323
+ * @param {?} ngEle
324
+ * @param {?} srenderer
325
+ * @param {?} viewContainerRef
326
+ * @param {?} injector
327
+ */
328
+ function PivotFieldListComponent(ngEle, srenderer, viewContainerRef, injector) {
329
+ var _this = _super.call(this) || this;
330
+ _this.ngEle = ngEle;
331
+ _this.srenderer = srenderer;
332
+ _this.viewContainerRef = viewContainerRef;
333
+ _this.injector = injector;
334
+ _this.element = _this.ngEle.nativeElement;
335
+ _this.injectedModules = _this.injectedModules || [];
336
+ try {
337
+ var mod = _this.injector.get('PivotViewCalculatedField');
338
+ if (_this.injectedModules.indexOf(mod) === -1) {
339
+ _this.injectedModules.push(mod);
340
+ }
341
+ }
342
+ catch (_a) { }
343
+ _this.registerEvents(outputs$1);
344
+ _this.addTwoWay.call(_this, twoWays$1);
345
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
346
+ _this.context = new ej2AngularBase.ComponentBase();
347
+ return _this;
348
+ }
349
+ /**
350
+ * @return {?}
351
+ */
352
+ PivotFieldListComponent.prototype.ngOnInit = function () {
353
+ this.context.ngOnInit(this);
354
+ };
355
+ /**
356
+ * @return {?}
357
+ */
358
+ PivotFieldListComponent.prototype.ngAfterViewInit = function () {
359
+ this.context.ngAfterViewInit(this);
360
+ };
361
+ /**
362
+ * @return {?}
363
+ */
364
+ PivotFieldListComponent.prototype.ngOnDestroy = function () {
365
+ this.context.ngOnDestroy(this);
366
+ };
367
+ /**
368
+ * @return {?}
369
+ */
370
+ PivotFieldListComponent.prototype.ngAfterContentChecked = function () {
371
+ this.context.ngAfterContentChecked(this);
372
+ };
373
+ return PivotFieldListComponent;
374
+ }(ej2Pivotview.PivotFieldList));
375
+ exports.PivotFieldListComponent.decorators = [
376
+ { type: core.Component, args: [{
377
+ selector: 'ejs-pivotfieldlist',
378
+ inputs: inputs$1,
379
+ outputs: outputs$1,
380
+ template: '',
381
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
382
+ queries: {}
383
+ },] },
384
+ ];
385
+ /**
386
+ * @nocollapse
387
+ */
388
+ exports.PivotFieldListComponent.ctorParameters = function () { return [
389
+ { type: core.ElementRef, },
390
+ { type: core.Renderer2, },
391
+ { type: core.ViewContainerRef, },
392
+ { type: core.Injector, },
393
+ ]; };
394
+ exports.PivotFieldListComponent = __decorate$1([
395
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
396
+ __metadata$1("design:paramtypes", [core.ElementRef,
397
+ core.Renderer2,
398
+ core.ViewContainerRef,
399
+ core.Injector])
400
+ ], exports.PivotFieldListComponent);
401
+ /**
402
+ * NgModule definition for the PivotFieldList component.
403
+ */
404
+ var PivotFieldListModule = /** @class */ (function () {
405
+ function PivotFieldListModule() {
406
+ }
407
+ return PivotFieldListModule;
408
+ }());
409
+ PivotFieldListModule.decorators = [
410
+ { type: core.NgModule, args: [{
411
+ imports: [common.CommonModule],
412
+ declarations: [
413
+ exports.PivotFieldListComponent
414
+ ],
415
+ exports: [
416
+ exports.PivotFieldListComponent
417
+ ]
418
+ },] },
419
+ ];
420
+ /**
421
+ * @nocollapse
422
+ */
423
+ PivotFieldListModule.ctorParameters = function () { return []; };
424
+ /**
425
+ * NgModule definition for the PivotFieldList component with providers.
426
+ */
427
+ var PivotFieldListAllModule = /** @class */ (function () {
428
+ function PivotFieldListAllModule() {
429
+ }
430
+ return PivotFieldListAllModule;
431
+ }());
432
+ PivotFieldListAllModule.decorators = [
433
+ { type: core.NgModule, args: [{
434
+ imports: [common.CommonModule, PivotFieldListModule],
435
+ exports: [
436
+ PivotFieldListModule
437
+ ],
438
+ providers: []
439
+ },] },
440
+ ];
441
+ /**
442
+ * @nocollapse
443
+ */
444
444
  PivotFieldListAllModule.ctorParameters = function () { return []; };
445
445
 
446
446
  exports.PivotViewModule = PivotViewModule;