@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.
- package/@syncfusion/ej2-angular-pivotview.es5.js +438 -438
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-pivotview.js +387 -387
- package/@syncfusion/ej2-angular-pivotview.js.map +1 -1
- package/{license → LICENSE} +10 -10
- package/dist/ej2-angular-pivotview.umd.js +429 -429
- package/dist/ej2-angular-pivotview.umd.min.js +1 -1
- package/ej2-angular-pivotview.d.ts +6 -6
- package/package.json +4 -4
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/index.d.ts +7 -7
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +5 -5
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +48 -48
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +5 -5
- package/src/pivotview/pivotview-all.module.d.ts +19 -19
- package/src/pivotview/pivotview.component.d.ts +85 -85
- package/src/pivotview/pivotview.module.d.ts +5 -5
|
@@ -3,405 +3,405 @@ import { ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/
|
|
|
3
3
|
import { CalculatedField, ConditionalFormatting, DrillThrough, ExcelExport, FieldList, Grouping, GroupingBar, NumberFormatting, PDFExport, Pager, PivotChart, PivotFieldList, PivotView, Toolbar, VirtualScroll } from '@syncfusion/ej2-pivotview';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
|
|
6
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
7
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
8
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
9
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
10
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
11
|
-
};
|
|
12
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
13
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
14
|
-
};
|
|
15
|
-
const 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'];
|
|
16
|
-
const 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'];
|
|
17
|
-
const twoWays = [];
|
|
18
|
-
/**
|
|
19
|
-
* `ej-pivotview` represents the Angular Pivot Table Component.
|
|
20
|
-
* ```html
|
|
21
|
-
* <ej-pivotview></ej-pivotview>
|
|
22
|
-
* ```
|
|
23
|
-
*/
|
|
24
|
-
let PivotViewComponent = class PivotViewComponent extends PivotView {
|
|
25
|
-
/**
|
|
26
|
-
* @param {?} ngEle
|
|
27
|
-
* @param {?} srenderer
|
|
28
|
-
* @param {?} viewContainerRef
|
|
29
|
-
* @param {?} injector
|
|
30
|
-
*/
|
|
31
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
32
|
-
super();
|
|
33
|
-
this.ngEle = ngEle;
|
|
34
|
-
this.srenderer = srenderer;
|
|
35
|
-
this.viewContainerRef = viewContainerRef;
|
|
36
|
-
this.injector = injector;
|
|
37
|
-
this.element = this.ngEle.nativeElement;
|
|
38
|
-
this.injectedModules = this.injectedModules || [];
|
|
39
|
-
try {
|
|
40
|
-
let mod = this.injector.get('PivotViewGroupingBar');
|
|
41
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
42
|
-
this.injectedModules.push(mod);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
catch (_a) { }
|
|
46
|
-
try {
|
|
47
|
-
let mod = this.injector.get('PivotViewFieldList');
|
|
48
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
49
|
-
this.injectedModules.push(mod);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
catch (_b) { }
|
|
53
|
-
try {
|
|
54
|
-
let mod = this.injector.get('PivotViewCalculatedField');
|
|
55
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
56
|
-
this.injectedModules.push(mod);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
catch (_c) { }
|
|
60
|
-
try {
|
|
61
|
-
let mod = this.injector.get('PivotViewConditionalFormatting');
|
|
62
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
63
|
-
this.injectedModules.push(mod);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
catch (_d) { }
|
|
67
|
-
try {
|
|
68
|
-
let mod = this.injector.get('PivotViewVirtualScroll');
|
|
69
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
70
|
-
this.injectedModules.push(mod);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
catch (_e) { }
|
|
74
|
-
try {
|
|
75
|
-
let mod = this.injector.get('PivotViewDrillThrough');
|
|
76
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
77
|
-
this.injectedModules.push(mod);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
catch (_f) { }
|
|
81
|
-
try {
|
|
82
|
-
let mod = this.injector.get('PivotViewToolbar');
|
|
83
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
84
|
-
this.injectedModules.push(mod);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
catch (_g) { }
|
|
88
|
-
try {
|
|
89
|
-
let mod = this.injector.get('PivotViewPivotChart');
|
|
90
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
91
|
-
this.injectedModules.push(mod);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
catch (_h) { }
|
|
95
|
-
try {
|
|
96
|
-
let mod = this.injector.get('PivotViewPDFExport');
|
|
97
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
98
|
-
this.injectedModules.push(mod);
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
catch (_j) { }
|
|
102
|
-
try {
|
|
103
|
-
let mod = this.injector.get('PivotViewExcelExport');
|
|
104
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
105
|
-
this.injectedModules.push(mod);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
catch (_k) { }
|
|
109
|
-
try {
|
|
110
|
-
let mod = this.injector.get('PivotViewNumberFormatting');
|
|
111
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
112
|
-
this.injectedModules.push(mod);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
catch (_l) { }
|
|
116
|
-
try {
|
|
117
|
-
let mod = this.injector.get('PivotViewGrouping');
|
|
118
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
119
|
-
this.injectedModules.push(mod);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
catch (_m) { }
|
|
123
|
-
try {
|
|
124
|
-
let mod = this.injector.get('PivotViewPager');
|
|
125
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
126
|
-
this.injectedModules.push(mod);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
catch (_o) { }
|
|
130
|
-
this.registerEvents(outputs);
|
|
131
|
-
this.addTwoWay.call(this, twoWays);
|
|
132
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
133
|
-
this.context = new ComponentBase();
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* @return {?}
|
|
137
|
-
*/
|
|
138
|
-
ngOnInit() {
|
|
139
|
-
this.context.ngOnInit(this);
|
|
140
|
-
}
|
|
141
|
-
/**
|
|
142
|
-
* @return {?}
|
|
143
|
-
*/
|
|
144
|
-
ngAfterViewInit() {
|
|
145
|
-
this.context.ngAfterViewInit(this);
|
|
146
|
-
}
|
|
147
|
-
/**
|
|
148
|
-
* @return {?}
|
|
149
|
-
*/
|
|
150
|
-
ngOnDestroy() {
|
|
151
|
-
this.context.ngOnDestroy(this);
|
|
152
|
-
}
|
|
153
|
-
/**
|
|
154
|
-
* @return {?}
|
|
155
|
-
*/
|
|
156
|
-
ngAfterContentChecked() {
|
|
157
|
-
this.context.ngAfterContentChecked(this);
|
|
158
|
-
}
|
|
159
|
-
};
|
|
160
|
-
PivotViewComponent.decorators = [
|
|
161
|
-
{ type: Component, args: [{
|
|
162
|
-
selector: 'ejs-pivotview',
|
|
163
|
-
inputs: inputs,
|
|
164
|
-
outputs: outputs,
|
|
165
|
-
template: '',
|
|
166
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
167
|
-
queries: {}
|
|
168
|
-
},] },
|
|
169
|
-
];
|
|
170
|
-
/**
|
|
171
|
-
* @nocollapse
|
|
172
|
-
*/
|
|
173
|
-
PivotViewComponent.ctorParameters = () => [
|
|
174
|
-
{ type: ElementRef, },
|
|
175
|
-
{ type: Renderer2, },
|
|
176
|
-
{ type: ViewContainerRef, },
|
|
177
|
-
{ type: Injector, },
|
|
178
|
-
];
|
|
179
|
-
PivotViewComponent.propDecorators = {
|
|
180
|
-
'cellTemplate': [{ type: ContentChild, args: ['cellTemplate',] },],
|
|
181
|
-
'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate',] },],
|
|
182
|
-
};
|
|
183
|
-
__decorate([
|
|
184
|
-
Template(),
|
|
185
|
-
__metadata("design:type", Object)
|
|
186
|
-
], PivotViewComponent.prototype, "cellTemplate", void 0);
|
|
187
|
-
__decorate([
|
|
188
|
-
Template(),
|
|
189
|
-
__metadata("design:type", Object)
|
|
190
|
-
], PivotViewComponent.prototype, "tooltipTemplate", void 0);
|
|
191
|
-
PivotViewComponent = __decorate([
|
|
192
|
-
ComponentMixins([ComponentBase]),
|
|
193
|
-
__metadata("design:paramtypes", [ElementRef,
|
|
194
|
-
Renderer2,
|
|
195
|
-
ViewContainerRef,
|
|
196
|
-
Injector])
|
|
6
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
7
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
9
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
10
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
11
|
+
};
|
|
12
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
13
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
14
|
+
};
|
|
15
|
+
const 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'];
|
|
16
|
+
const 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'];
|
|
17
|
+
const twoWays = [];
|
|
18
|
+
/**
|
|
19
|
+
* `ej-pivotview` represents the Angular Pivot Table Component.
|
|
20
|
+
* ```html
|
|
21
|
+
* <ej-pivotview></ej-pivotview>
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
let PivotViewComponent = class PivotViewComponent extends PivotView {
|
|
25
|
+
/**
|
|
26
|
+
* @param {?} ngEle
|
|
27
|
+
* @param {?} srenderer
|
|
28
|
+
* @param {?} viewContainerRef
|
|
29
|
+
* @param {?} injector
|
|
30
|
+
*/
|
|
31
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
32
|
+
super();
|
|
33
|
+
this.ngEle = ngEle;
|
|
34
|
+
this.srenderer = srenderer;
|
|
35
|
+
this.viewContainerRef = viewContainerRef;
|
|
36
|
+
this.injector = injector;
|
|
37
|
+
this.element = this.ngEle.nativeElement;
|
|
38
|
+
this.injectedModules = this.injectedModules || [];
|
|
39
|
+
try {
|
|
40
|
+
let mod = this.injector.get('PivotViewGroupingBar');
|
|
41
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
42
|
+
this.injectedModules.push(mod);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
catch (_a) { }
|
|
46
|
+
try {
|
|
47
|
+
let mod = this.injector.get('PivotViewFieldList');
|
|
48
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
49
|
+
this.injectedModules.push(mod);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
catch (_b) { }
|
|
53
|
+
try {
|
|
54
|
+
let mod = this.injector.get('PivotViewCalculatedField');
|
|
55
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
56
|
+
this.injectedModules.push(mod);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
catch (_c) { }
|
|
60
|
+
try {
|
|
61
|
+
let mod = this.injector.get('PivotViewConditionalFormatting');
|
|
62
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
63
|
+
this.injectedModules.push(mod);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
catch (_d) { }
|
|
67
|
+
try {
|
|
68
|
+
let mod = this.injector.get('PivotViewVirtualScroll');
|
|
69
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
70
|
+
this.injectedModules.push(mod);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
catch (_e) { }
|
|
74
|
+
try {
|
|
75
|
+
let mod = this.injector.get('PivotViewDrillThrough');
|
|
76
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
77
|
+
this.injectedModules.push(mod);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
catch (_f) { }
|
|
81
|
+
try {
|
|
82
|
+
let mod = this.injector.get('PivotViewToolbar');
|
|
83
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
84
|
+
this.injectedModules.push(mod);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
catch (_g) { }
|
|
88
|
+
try {
|
|
89
|
+
let mod = this.injector.get('PivotViewPivotChart');
|
|
90
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
91
|
+
this.injectedModules.push(mod);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
catch (_h) { }
|
|
95
|
+
try {
|
|
96
|
+
let mod = this.injector.get('PivotViewPDFExport');
|
|
97
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
98
|
+
this.injectedModules.push(mod);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
catch (_j) { }
|
|
102
|
+
try {
|
|
103
|
+
let mod = this.injector.get('PivotViewExcelExport');
|
|
104
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
105
|
+
this.injectedModules.push(mod);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
catch (_k) { }
|
|
109
|
+
try {
|
|
110
|
+
let mod = this.injector.get('PivotViewNumberFormatting');
|
|
111
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
112
|
+
this.injectedModules.push(mod);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
catch (_l) { }
|
|
116
|
+
try {
|
|
117
|
+
let mod = this.injector.get('PivotViewGrouping');
|
|
118
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
119
|
+
this.injectedModules.push(mod);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
catch (_m) { }
|
|
123
|
+
try {
|
|
124
|
+
let mod = this.injector.get('PivotViewPager');
|
|
125
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
126
|
+
this.injectedModules.push(mod);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
catch (_o) { }
|
|
130
|
+
this.registerEvents(outputs);
|
|
131
|
+
this.addTwoWay.call(this, twoWays);
|
|
132
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
133
|
+
this.context = new ComponentBase();
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* @return {?}
|
|
137
|
+
*/
|
|
138
|
+
ngOnInit() {
|
|
139
|
+
this.context.ngOnInit(this);
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* @return {?}
|
|
143
|
+
*/
|
|
144
|
+
ngAfterViewInit() {
|
|
145
|
+
this.context.ngAfterViewInit(this);
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* @return {?}
|
|
149
|
+
*/
|
|
150
|
+
ngOnDestroy() {
|
|
151
|
+
this.context.ngOnDestroy(this);
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* @return {?}
|
|
155
|
+
*/
|
|
156
|
+
ngAfterContentChecked() {
|
|
157
|
+
this.context.ngAfterContentChecked(this);
|
|
158
|
+
}
|
|
159
|
+
};
|
|
160
|
+
PivotViewComponent.decorators = [
|
|
161
|
+
{ type: Component, args: [{
|
|
162
|
+
selector: 'ejs-pivotview',
|
|
163
|
+
inputs: inputs,
|
|
164
|
+
outputs: outputs,
|
|
165
|
+
template: '',
|
|
166
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
167
|
+
queries: {}
|
|
168
|
+
},] },
|
|
169
|
+
];
|
|
170
|
+
/**
|
|
171
|
+
* @nocollapse
|
|
172
|
+
*/
|
|
173
|
+
PivotViewComponent.ctorParameters = () => [
|
|
174
|
+
{ type: ElementRef, },
|
|
175
|
+
{ type: Renderer2, },
|
|
176
|
+
{ type: ViewContainerRef, },
|
|
177
|
+
{ type: Injector, },
|
|
178
|
+
];
|
|
179
|
+
PivotViewComponent.propDecorators = {
|
|
180
|
+
'cellTemplate': [{ type: ContentChild, args: ['cellTemplate',] },],
|
|
181
|
+
'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate',] },],
|
|
182
|
+
};
|
|
183
|
+
__decorate([
|
|
184
|
+
Template(),
|
|
185
|
+
__metadata("design:type", Object)
|
|
186
|
+
], PivotViewComponent.prototype, "cellTemplate", void 0);
|
|
187
|
+
__decorate([
|
|
188
|
+
Template(),
|
|
189
|
+
__metadata("design:type", Object)
|
|
190
|
+
], PivotViewComponent.prototype, "tooltipTemplate", void 0);
|
|
191
|
+
PivotViewComponent = __decorate([
|
|
192
|
+
ComponentMixins([ComponentBase]),
|
|
193
|
+
__metadata("design:paramtypes", [ElementRef,
|
|
194
|
+
Renderer2,
|
|
195
|
+
ViewContainerRef,
|
|
196
|
+
Injector])
|
|
197
197
|
], PivotViewComponent);
|
|
198
198
|
|
|
199
|
-
/**
|
|
200
|
-
* NgModule definition for the PivotView component.
|
|
201
|
-
*/
|
|
202
|
-
class PivotViewModule {
|
|
203
|
-
}
|
|
204
|
-
PivotViewModule.decorators = [
|
|
205
|
-
{ type: NgModule, args: [{
|
|
206
|
-
imports: [CommonModule],
|
|
207
|
-
declarations: [
|
|
208
|
-
PivotViewComponent
|
|
209
|
-
],
|
|
210
|
-
exports: [
|
|
211
|
-
PivotViewComponent
|
|
212
|
-
]
|
|
213
|
-
},] },
|
|
214
|
-
];
|
|
215
|
-
/**
|
|
216
|
-
* @nocollapse
|
|
217
|
-
*/
|
|
199
|
+
/**
|
|
200
|
+
* NgModule definition for the PivotView component.
|
|
201
|
+
*/
|
|
202
|
+
class PivotViewModule {
|
|
203
|
+
}
|
|
204
|
+
PivotViewModule.decorators = [
|
|
205
|
+
{ type: NgModule, args: [{
|
|
206
|
+
imports: [CommonModule],
|
|
207
|
+
declarations: [
|
|
208
|
+
PivotViewComponent
|
|
209
|
+
],
|
|
210
|
+
exports: [
|
|
211
|
+
PivotViewComponent
|
|
212
|
+
]
|
|
213
|
+
},] },
|
|
214
|
+
];
|
|
215
|
+
/**
|
|
216
|
+
* @nocollapse
|
|
217
|
+
*/
|
|
218
218
|
PivotViewModule.ctorParameters = () => [];
|
|
219
219
|
|
|
220
|
-
const GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: GroupingBar };
|
|
221
|
-
const FieldListService = { provide: 'PivotViewFieldList', useValue: FieldList };
|
|
222
|
-
const CalculatedFieldService = { provide: 'PivotViewCalculatedField', useValue: CalculatedField };
|
|
223
|
-
const ConditionalFormattingService = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting };
|
|
224
|
-
const VirtualScrollService = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll };
|
|
225
|
-
const DrillThroughService = { provide: 'PivotViewDrillThrough', useValue: DrillThrough };
|
|
226
|
-
const ToolbarService = { provide: 'PivotViewToolbar', useValue: Toolbar };
|
|
227
|
-
const PivotChartService = { provide: 'PivotViewPivotChart', useValue: PivotChart };
|
|
228
|
-
const PDFExportService = { provide: 'PivotViewPDFExport', useValue: PDFExport };
|
|
229
|
-
const ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ExcelExport };
|
|
230
|
-
const NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting };
|
|
231
|
-
const GroupingService = { provide: 'PivotViewGrouping', useValue: Grouping };
|
|
232
|
-
const PagerService = { provide: 'PivotViewPager', useValue: Pager };
|
|
233
|
-
/**
|
|
234
|
-
* NgModule definition for the PivotView component with providers.
|
|
235
|
-
*/
|
|
236
|
-
class PivotViewAllModule {
|
|
237
|
-
}
|
|
238
|
-
PivotViewAllModule.decorators = [
|
|
239
|
-
{ type: NgModule, args: [{
|
|
240
|
-
imports: [CommonModule, PivotViewModule],
|
|
241
|
-
exports: [
|
|
242
|
-
PivotViewModule
|
|
243
|
-
],
|
|
244
|
-
providers: [
|
|
245
|
-
GroupingBarService,
|
|
246
|
-
FieldListService,
|
|
247
|
-
CalculatedFieldService,
|
|
248
|
-
ConditionalFormattingService,
|
|
249
|
-
VirtualScrollService,
|
|
250
|
-
DrillThroughService,
|
|
251
|
-
ToolbarService,
|
|
252
|
-
PivotChartService,
|
|
253
|
-
PDFExportService,
|
|
254
|
-
ExcelExportService,
|
|
255
|
-
NumberFormattingService,
|
|
256
|
-
GroupingService,
|
|
257
|
-
PagerService
|
|
258
|
-
]
|
|
259
|
-
},] },
|
|
260
|
-
];
|
|
261
|
-
/**
|
|
262
|
-
* @nocollapse
|
|
263
|
-
*/
|
|
220
|
+
const GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: GroupingBar };
|
|
221
|
+
const FieldListService = { provide: 'PivotViewFieldList', useValue: FieldList };
|
|
222
|
+
const CalculatedFieldService = { provide: 'PivotViewCalculatedField', useValue: CalculatedField };
|
|
223
|
+
const ConditionalFormattingService = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting };
|
|
224
|
+
const VirtualScrollService = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll };
|
|
225
|
+
const DrillThroughService = { provide: 'PivotViewDrillThrough', useValue: DrillThrough };
|
|
226
|
+
const ToolbarService = { provide: 'PivotViewToolbar', useValue: Toolbar };
|
|
227
|
+
const PivotChartService = { provide: 'PivotViewPivotChart', useValue: PivotChart };
|
|
228
|
+
const PDFExportService = { provide: 'PivotViewPDFExport', useValue: PDFExport };
|
|
229
|
+
const ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ExcelExport };
|
|
230
|
+
const NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting };
|
|
231
|
+
const GroupingService = { provide: 'PivotViewGrouping', useValue: Grouping };
|
|
232
|
+
const PagerService = { provide: 'PivotViewPager', useValue: Pager };
|
|
233
|
+
/**
|
|
234
|
+
* NgModule definition for the PivotView component with providers.
|
|
235
|
+
*/
|
|
236
|
+
class PivotViewAllModule {
|
|
237
|
+
}
|
|
238
|
+
PivotViewAllModule.decorators = [
|
|
239
|
+
{ type: NgModule, args: [{
|
|
240
|
+
imports: [CommonModule, PivotViewModule],
|
|
241
|
+
exports: [
|
|
242
|
+
PivotViewModule
|
|
243
|
+
],
|
|
244
|
+
providers: [
|
|
245
|
+
GroupingBarService,
|
|
246
|
+
FieldListService,
|
|
247
|
+
CalculatedFieldService,
|
|
248
|
+
ConditionalFormattingService,
|
|
249
|
+
VirtualScrollService,
|
|
250
|
+
DrillThroughService,
|
|
251
|
+
ToolbarService,
|
|
252
|
+
PivotChartService,
|
|
253
|
+
PDFExportService,
|
|
254
|
+
ExcelExportService,
|
|
255
|
+
NumberFormattingService,
|
|
256
|
+
GroupingService,
|
|
257
|
+
PagerService
|
|
258
|
+
]
|
|
259
|
+
},] },
|
|
260
|
+
];
|
|
261
|
+
/**
|
|
262
|
+
* @nocollapse
|
|
263
|
+
*/
|
|
264
264
|
PivotViewAllModule.ctorParameters = () => [];
|
|
265
265
|
|
|
266
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
267
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
268
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
269
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
270
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
271
|
-
};
|
|
272
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
273
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
274
|
-
};
|
|
275
|
-
const inputs$1 = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
|
|
276
|
-
const outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
|
|
277
|
-
const twoWays$1 = [];
|
|
278
|
-
/**
|
|
279
|
-
* `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
|
|
280
|
-
* ```html
|
|
281
|
-
* <ej-pivotfieldlist></ej-pivotfieldlist>
|
|
282
|
-
* ```
|
|
283
|
-
*/
|
|
284
|
-
let PivotFieldListComponent = class PivotFieldListComponent extends PivotFieldList {
|
|
285
|
-
/**
|
|
286
|
-
* @param {?} ngEle
|
|
287
|
-
* @param {?} srenderer
|
|
288
|
-
* @param {?} viewContainerRef
|
|
289
|
-
* @param {?} injector
|
|
290
|
-
*/
|
|
291
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
292
|
-
super();
|
|
293
|
-
this.ngEle = ngEle;
|
|
294
|
-
this.srenderer = srenderer;
|
|
295
|
-
this.viewContainerRef = viewContainerRef;
|
|
296
|
-
this.injector = injector;
|
|
297
|
-
this.element = this.ngEle.nativeElement;
|
|
298
|
-
this.injectedModules = this.injectedModules || [];
|
|
299
|
-
try {
|
|
300
|
-
let mod = this.injector.get('PivotViewCalculatedField');
|
|
301
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
302
|
-
this.injectedModules.push(mod);
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
catch (_a) { }
|
|
306
|
-
this.registerEvents(outputs$1);
|
|
307
|
-
this.addTwoWay.call(this, twoWays$1);
|
|
308
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
309
|
-
this.context = new ComponentBase();
|
|
310
|
-
}
|
|
311
|
-
/**
|
|
312
|
-
* @return {?}
|
|
313
|
-
*/
|
|
314
|
-
ngOnInit() {
|
|
315
|
-
this.context.ngOnInit(this);
|
|
316
|
-
}
|
|
317
|
-
/**
|
|
318
|
-
* @return {?}
|
|
319
|
-
*/
|
|
320
|
-
ngAfterViewInit() {
|
|
321
|
-
this.context.ngAfterViewInit(this);
|
|
322
|
-
}
|
|
323
|
-
/**
|
|
324
|
-
* @return {?}
|
|
325
|
-
*/
|
|
326
|
-
ngOnDestroy() {
|
|
327
|
-
this.context.ngOnDestroy(this);
|
|
328
|
-
}
|
|
329
|
-
/**
|
|
330
|
-
* @return {?}
|
|
331
|
-
*/
|
|
332
|
-
ngAfterContentChecked() {
|
|
333
|
-
this.context.ngAfterContentChecked(this);
|
|
334
|
-
}
|
|
335
|
-
};
|
|
336
|
-
PivotFieldListComponent.decorators = [
|
|
337
|
-
{ type: Component, args: [{
|
|
338
|
-
selector: 'ejs-pivotfieldlist',
|
|
339
|
-
inputs: inputs$1,
|
|
340
|
-
outputs: outputs$1,
|
|
341
|
-
template: '',
|
|
342
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
343
|
-
queries: {}
|
|
344
|
-
},] },
|
|
345
|
-
];
|
|
346
|
-
/**
|
|
347
|
-
* @nocollapse
|
|
348
|
-
*/
|
|
349
|
-
PivotFieldListComponent.ctorParameters = () => [
|
|
350
|
-
{ type: ElementRef, },
|
|
351
|
-
{ type: Renderer2, },
|
|
352
|
-
{ type: ViewContainerRef, },
|
|
353
|
-
{ type: Injector, },
|
|
354
|
-
];
|
|
355
|
-
PivotFieldListComponent = __decorate$1([
|
|
356
|
-
ComponentMixins([ComponentBase]),
|
|
357
|
-
__metadata$1("design:paramtypes", [ElementRef,
|
|
358
|
-
Renderer2,
|
|
359
|
-
ViewContainerRef,
|
|
360
|
-
Injector])
|
|
266
|
+
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
267
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
268
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
269
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
270
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
271
|
+
};
|
|
272
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
273
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
274
|
+
};
|
|
275
|
+
const inputs$1 = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
|
|
276
|
+
const outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
|
|
277
|
+
const twoWays$1 = [];
|
|
278
|
+
/**
|
|
279
|
+
* `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
|
|
280
|
+
* ```html
|
|
281
|
+
* <ej-pivotfieldlist></ej-pivotfieldlist>
|
|
282
|
+
* ```
|
|
283
|
+
*/
|
|
284
|
+
let PivotFieldListComponent = class PivotFieldListComponent extends PivotFieldList {
|
|
285
|
+
/**
|
|
286
|
+
* @param {?} ngEle
|
|
287
|
+
* @param {?} srenderer
|
|
288
|
+
* @param {?} viewContainerRef
|
|
289
|
+
* @param {?} injector
|
|
290
|
+
*/
|
|
291
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
292
|
+
super();
|
|
293
|
+
this.ngEle = ngEle;
|
|
294
|
+
this.srenderer = srenderer;
|
|
295
|
+
this.viewContainerRef = viewContainerRef;
|
|
296
|
+
this.injector = injector;
|
|
297
|
+
this.element = this.ngEle.nativeElement;
|
|
298
|
+
this.injectedModules = this.injectedModules || [];
|
|
299
|
+
try {
|
|
300
|
+
let mod = this.injector.get('PivotViewCalculatedField');
|
|
301
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
302
|
+
this.injectedModules.push(mod);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
catch (_a) { }
|
|
306
|
+
this.registerEvents(outputs$1);
|
|
307
|
+
this.addTwoWay.call(this, twoWays$1);
|
|
308
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
309
|
+
this.context = new ComponentBase();
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* @return {?}
|
|
313
|
+
*/
|
|
314
|
+
ngOnInit() {
|
|
315
|
+
this.context.ngOnInit(this);
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* @return {?}
|
|
319
|
+
*/
|
|
320
|
+
ngAfterViewInit() {
|
|
321
|
+
this.context.ngAfterViewInit(this);
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
* @return {?}
|
|
325
|
+
*/
|
|
326
|
+
ngOnDestroy() {
|
|
327
|
+
this.context.ngOnDestroy(this);
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* @return {?}
|
|
331
|
+
*/
|
|
332
|
+
ngAfterContentChecked() {
|
|
333
|
+
this.context.ngAfterContentChecked(this);
|
|
334
|
+
}
|
|
335
|
+
};
|
|
336
|
+
PivotFieldListComponent.decorators = [
|
|
337
|
+
{ type: Component, args: [{
|
|
338
|
+
selector: 'ejs-pivotfieldlist',
|
|
339
|
+
inputs: inputs$1,
|
|
340
|
+
outputs: outputs$1,
|
|
341
|
+
template: '',
|
|
342
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
343
|
+
queries: {}
|
|
344
|
+
},] },
|
|
345
|
+
];
|
|
346
|
+
/**
|
|
347
|
+
* @nocollapse
|
|
348
|
+
*/
|
|
349
|
+
PivotFieldListComponent.ctorParameters = () => [
|
|
350
|
+
{ type: ElementRef, },
|
|
351
|
+
{ type: Renderer2, },
|
|
352
|
+
{ type: ViewContainerRef, },
|
|
353
|
+
{ type: Injector, },
|
|
354
|
+
];
|
|
355
|
+
PivotFieldListComponent = __decorate$1([
|
|
356
|
+
ComponentMixins([ComponentBase]),
|
|
357
|
+
__metadata$1("design:paramtypes", [ElementRef,
|
|
358
|
+
Renderer2,
|
|
359
|
+
ViewContainerRef,
|
|
360
|
+
Injector])
|
|
361
361
|
], PivotFieldListComponent);
|
|
362
362
|
|
|
363
|
-
/**
|
|
364
|
-
* NgModule definition for the PivotFieldList component.
|
|
365
|
-
*/
|
|
366
|
-
class PivotFieldListModule {
|
|
367
|
-
}
|
|
368
|
-
PivotFieldListModule.decorators = [
|
|
369
|
-
{ type: NgModule, args: [{
|
|
370
|
-
imports: [CommonModule],
|
|
371
|
-
declarations: [
|
|
372
|
-
PivotFieldListComponent
|
|
373
|
-
],
|
|
374
|
-
exports: [
|
|
375
|
-
PivotFieldListComponent
|
|
376
|
-
]
|
|
377
|
-
},] },
|
|
378
|
-
];
|
|
379
|
-
/**
|
|
380
|
-
* @nocollapse
|
|
381
|
-
*/
|
|
363
|
+
/**
|
|
364
|
+
* NgModule definition for the PivotFieldList component.
|
|
365
|
+
*/
|
|
366
|
+
class PivotFieldListModule {
|
|
367
|
+
}
|
|
368
|
+
PivotFieldListModule.decorators = [
|
|
369
|
+
{ type: NgModule, args: [{
|
|
370
|
+
imports: [CommonModule],
|
|
371
|
+
declarations: [
|
|
372
|
+
PivotFieldListComponent
|
|
373
|
+
],
|
|
374
|
+
exports: [
|
|
375
|
+
PivotFieldListComponent
|
|
376
|
+
]
|
|
377
|
+
},] },
|
|
378
|
+
];
|
|
379
|
+
/**
|
|
380
|
+
* @nocollapse
|
|
381
|
+
*/
|
|
382
382
|
PivotFieldListModule.ctorParameters = () => [];
|
|
383
383
|
|
|
384
|
-
/**
|
|
385
|
-
* NgModule definition for the PivotFieldList component with providers.
|
|
386
|
-
*/
|
|
387
|
-
class PivotFieldListAllModule {
|
|
388
|
-
}
|
|
389
|
-
PivotFieldListAllModule.decorators = [
|
|
390
|
-
{ type: NgModule, args: [{
|
|
391
|
-
imports: [CommonModule, PivotFieldListModule],
|
|
392
|
-
exports: [
|
|
393
|
-
PivotFieldListModule
|
|
394
|
-
],
|
|
395
|
-
providers: []
|
|
396
|
-
},] },
|
|
397
|
-
];
|
|
398
|
-
/**
|
|
399
|
-
* @nocollapse
|
|
400
|
-
*/
|
|
384
|
+
/**
|
|
385
|
+
* NgModule definition for the PivotFieldList component with providers.
|
|
386
|
+
*/
|
|
387
|
+
class PivotFieldListAllModule {
|
|
388
|
+
}
|
|
389
|
+
PivotFieldListAllModule.decorators = [
|
|
390
|
+
{ type: NgModule, args: [{
|
|
391
|
+
imports: [CommonModule, PivotFieldListModule],
|
|
392
|
+
exports: [
|
|
393
|
+
PivotFieldListModule
|
|
394
|
+
],
|
|
395
|
+
providers: []
|
|
396
|
+
},] },
|
|
397
|
+
];
|
|
398
|
+
/**
|
|
399
|
+
* @nocollapse
|
|
400
|
+
*/
|
|
401
401
|
PivotFieldListAllModule.ctorParameters = () => [];
|
|
402
402
|
|
|
403
|
-
/**
|
|
404
|
-
* Generated bundle index. Do not edit.
|
|
403
|
+
/**
|
|
404
|
+
* Generated bundle index. Do not edit.
|
|
405
405
|
*/
|
|
406
406
|
|
|
407
407
|
export { PivotViewComponent, PivotViewModule, PivotViewAllModule, GroupingBarService, FieldListService, CalculatedFieldService, ConditionalFormattingService, VirtualScrollService, DrillThroughService, ToolbarService, PivotChartService, PDFExportService, ExcelExportService, NumberFormattingService, GroupingService, PagerService, PivotFieldListComponent, PivotFieldListModule, PivotFieldListAllModule, inputs$1 as ɵc, outputs$1 as ɵd, inputs as ɵa, outputs as ɵb };
|