@syncfusion/ej2-angular-pivotview 30.2.6-ngcc → 30.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1029 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +351 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +351 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +7 -7
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +11 -5
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +51 -48
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +11 -5
- package/src/pivotview/pivotview-all.module.d.ts +25 -19
- package/src/pivotview/pivotview.component.d.ts +88 -85
- package/src/pivotview/pivotview.module.d.ts +11 -5
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -409
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-pivotview.umd.js +0 -736
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
import { __decorate } from 'tslib';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { Component, ChangeDetectionStrategy, ContentChild, NgModule } from '@angular/core';
|
|
4
|
+
import { setValue, ComponentBase, Template, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
|
5
|
+
import { PivotView, GroupingBar, FieldList, CalculatedField, ConditionalFormatting, VirtualScroll, DrillThrough, Toolbar, PivotChart, PDFExport, ExcelExport, NumberFormatting, Grouping, Pager, PivotFieldList } from '@syncfusion/ej2-pivotview';
|
|
6
|
+
export * from '@syncfusion/ej2-pivotview';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
const inputs$1 = ['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'];
|
|
10
|
+
const outputs$1 = ['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'];
|
|
11
|
+
const twoWays$1 = [];
|
|
12
|
+
/**
|
|
13
|
+
* `ej-pivotview` represents the Angular Pivot Table Component.
|
|
14
|
+
* ```html
|
|
15
|
+
* <ej-pivotview></ej-pivotview>
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
let PivotViewComponent = class PivotViewComponent extends PivotView {
|
|
19
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
20
|
+
super();
|
|
21
|
+
this.ngEle = ngEle;
|
|
22
|
+
this.srenderer = srenderer;
|
|
23
|
+
this.viewContainerRef = viewContainerRef;
|
|
24
|
+
this.injector = injector;
|
|
25
|
+
this.element = this.ngEle.nativeElement;
|
|
26
|
+
this.injectedModules = this.injectedModules || [];
|
|
27
|
+
try {
|
|
28
|
+
let mod = this.injector.get('PivotViewGroupingBar');
|
|
29
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
30
|
+
this.injectedModules.push(mod);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
catch { }
|
|
34
|
+
try {
|
|
35
|
+
let mod = this.injector.get('PivotViewFieldList');
|
|
36
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
37
|
+
this.injectedModules.push(mod);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
catch { }
|
|
41
|
+
try {
|
|
42
|
+
let mod = this.injector.get('PivotViewCalculatedField');
|
|
43
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
44
|
+
this.injectedModules.push(mod);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
catch { }
|
|
48
|
+
try {
|
|
49
|
+
let mod = this.injector.get('PivotViewConditionalFormatting');
|
|
50
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
51
|
+
this.injectedModules.push(mod);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
catch { }
|
|
55
|
+
try {
|
|
56
|
+
let mod = this.injector.get('PivotViewVirtualScroll');
|
|
57
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
58
|
+
this.injectedModules.push(mod);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
catch { }
|
|
62
|
+
try {
|
|
63
|
+
let mod = this.injector.get('PivotViewDrillThrough');
|
|
64
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
65
|
+
this.injectedModules.push(mod);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
catch { }
|
|
69
|
+
try {
|
|
70
|
+
let mod = this.injector.get('PivotViewToolbar');
|
|
71
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
72
|
+
this.injectedModules.push(mod);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
catch { }
|
|
76
|
+
try {
|
|
77
|
+
let mod = this.injector.get('PivotViewPivotChart');
|
|
78
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
79
|
+
this.injectedModules.push(mod);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
catch { }
|
|
83
|
+
try {
|
|
84
|
+
let mod = this.injector.get('PivotViewPDFExport');
|
|
85
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
86
|
+
this.injectedModules.push(mod);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
catch { }
|
|
90
|
+
try {
|
|
91
|
+
let mod = this.injector.get('PivotViewExcelExport');
|
|
92
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
93
|
+
this.injectedModules.push(mod);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
catch { }
|
|
97
|
+
try {
|
|
98
|
+
let mod = this.injector.get('PivotViewNumberFormatting');
|
|
99
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
100
|
+
this.injectedModules.push(mod);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
catch { }
|
|
104
|
+
try {
|
|
105
|
+
let mod = this.injector.get('PivotViewGrouping');
|
|
106
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
107
|
+
this.injectedModules.push(mod);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
catch { }
|
|
111
|
+
try {
|
|
112
|
+
let mod = this.injector.get('PivotViewPager');
|
|
113
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
114
|
+
this.injectedModules.push(mod);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
catch { }
|
|
118
|
+
this.registerEvents(outputs$1);
|
|
119
|
+
this.addTwoWay.call(this, twoWays$1);
|
|
120
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
121
|
+
this.context = new ComponentBase();
|
|
122
|
+
}
|
|
123
|
+
ngOnInit() {
|
|
124
|
+
this.context.ngOnInit(this);
|
|
125
|
+
}
|
|
126
|
+
ngAfterViewInit() {
|
|
127
|
+
this.context.ngAfterViewInit(this);
|
|
128
|
+
}
|
|
129
|
+
ngOnDestroy() {
|
|
130
|
+
this.context.ngOnDestroy(this);
|
|
131
|
+
}
|
|
132
|
+
ngAfterContentChecked() {
|
|
133
|
+
this.context.ngAfterContentChecked(this);
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
PivotViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
137
|
+
PivotViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: PivotViewComponent, selector: "ejs-pivotview", inputs: { aggregateTypes: "aggregateTypes", allowCalculatedField: "allowCalculatedField", allowConditionalFormatting: "allowConditionalFormatting", allowDataCompression: "allowDataCompression", allowDeferLayoutUpdate: "allowDeferLayoutUpdate", allowDrillThrough: "allowDrillThrough", allowExcelExport: "allowExcelExport", allowGrouping: "allowGrouping", allowNumberFormatting: "allowNumberFormatting", allowPdfExport: "allowPdfExport", cellTemplate: "cellTemplate", chartSettings: "chartSettings", chartTypes: "chartTypes", cssClass: "cssClass", dataSourceSettings: "dataSourceSettings", displayOption: "displayOption", editSettings: "editSettings", enableFieldSearching: "enableFieldSearching", enableHtmlSanitizer: "enableHtmlSanitizer", enablePaging: "enablePaging", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableValueSorting: "enableValueSorting", enableVirtualization: "enableVirtualization", exportAllPages: "exportAllPages", gridSettings: "gridSettings", groupingBarSettings: "groupingBarSettings", height: "height", hyperlinkSettings: "hyperlinkSettings", loadOnDemandInMemberEditor: "loadOnDemandInMemberEditor", locale: "locale", maxNodeLimitInMemberEditor: "maxNodeLimitInMemberEditor", maxRowsInDrillThrough: "maxRowsInDrillThrough", pageSettings: "pageSettings", pagerSettings: "pagerSettings", pivotValues: "pivotValues", showFieldList: "showFieldList", showGroupingBar: "showGroupingBar", showToolbar: "showToolbar", showTooltip: "showTooltip", showValuesButton: "showValuesButton", spinnerTemplate: "spinnerTemplate", toolbar: "toolbar", toolbarTemplate: "toolbarTemplate", tooltipTemplate: "tooltipTemplate", virtualScrollSettings: "virtualScrollSettings", width: "width" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", afterServiceInvoke: "afterServiceInvoke", aggregateCellInfo: "aggregateCellInfo", aggregateMenuOpen: "aggregateMenuOpen", beforeExport: "beforeExport", beforeServiceInvoke: "beforeServiceInvoke", beginDrillThrough: "beginDrillThrough", calculatedFieldCreate: "calculatedFieldCreate", cellClick: "cellClick", cellSelected: "cellSelected", cellSelecting: "cellSelecting", chartSeriesCreated: "chartSeriesCreated", conditionalFormatting: "conditionalFormatting", created: "created", dataBound: "dataBound", destroyed: "destroyed", drill: "drill", drillThrough: "drillThrough", editCompleted: "editCompleted", enginePopulated: "enginePopulated", enginePopulating: "enginePopulating", exportComplete: "exportComplete", fetchReport: "fetchReport", fieldDragStart: "fieldDragStart", fieldDrop: "fieldDrop", fieldListRefreshed: "fieldListRefreshed", fieldRemove: "fieldRemove", hyperlinkCellClick: "hyperlinkCellClick", load: "load", loadReport: "loadReport", memberEditorOpen: "memberEditorOpen", memberFiltering: "memberFiltering", newReport: "newReport", numberFormatting: "numberFormatting", onFieldDropped: "onFieldDropped", onHeadersSort: "onHeadersSort", onPdfCellRender: "onPdfCellRender", removeReport: "removeReport", renameReport: "renameReport", saveReport: "saveReport", toolbarClick: "toolbarClick", toolbarRender: "toolbarRender" }, queries: [{ propertyName: "cellTemplate", first: true, predicate: ["cellTemplate"], descendants: true }, { propertyName: "tooltipTemplate", first: true, predicate: ["tooltipTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
138
|
+
__decorate([
|
|
139
|
+
Template()
|
|
140
|
+
], PivotViewComponent.prototype, "cellTemplate", void 0);
|
|
141
|
+
__decorate([
|
|
142
|
+
Template()
|
|
143
|
+
], PivotViewComponent.prototype, "tooltipTemplate", void 0);
|
|
144
|
+
PivotViewComponent = __decorate([
|
|
145
|
+
ComponentMixins([ComponentBase])
|
|
146
|
+
], PivotViewComponent);
|
|
147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewComponent, decorators: [{
|
|
148
|
+
type: Component,
|
|
149
|
+
args: [{
|
|
150
|
+
selector: 'ejs-pivotview',
|
|
151
|
+
inputs: inputs$1,
|
|
152
|
+
outputs: outputs$1,
|
|
153
|
+
template: '',
|
|
154
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
155
|
+
queries: {}
|
|
156
|
+
}]
|
|
157
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { cellTemplate: [{
|
|
158
|
+
type: ContentChild,
|
|
159
|
+
args: ['cellTemplate']
|
|
160
|
+
}], tooltipTemplate: [{
|
|
161
|
+
type: ContentChild,
|
|
162
|
+
args: ['tooltipTemplate']
|
|
163
|
+
}] } });
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* NgModule definition for the PivotView component.
|
|
167
|
+
*/
|
|
168
|
+
class PivotViewModule {
|
|
169
|
+
}
|
|
170
|
+
PivotViewModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
171
|
+
PivotViewModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewModule, declarations: [PivotViewComponent], imports: [CommonModule], exports: [PivotViewComponent] });
|
|
172
|
+
PivotViewModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewModule, imports: [[CommonModule]] });
|
|
173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewModule, decorators: [{
|
|
174
|
+
type: NgModule,
|
|
175
|
+
args: [{
|
|
176
|
+
imports: [CommonModule],
|
|
177
|
+
declarations: [
|
|
178
|
+
PivotViewComponent
|
|
179
|
+
],
|
|
180
|
+
exports: [
|
|
181
|
+
PivotViewComponent
|
|
182
|
+
]
|
|
183
|
+
}]
|
|
184
|
+
}] });
|
|
185
|
+
|
|
186
|
+
const GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: GroupingBar };
|
|
187
|
+
const FieldListService = { provide: 'PivotViewFieldList', useValue: FieldList };
|
|
188
|
+
const CalculatedFieldService = { provide: 'PivotViewCalculatedField', useValue: CalculatedField };
|
|
189
|
+
const ConditionalFormattingService = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting };
|
|
190
|
+
const VirtualScrollService = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll };
|
|
191
|
+
const DrillThroughService = { provide: 'PivotViewDrillThrough', useValue: DrillThrough };
|
|
192
|
+
const ToolbarService = { provide: 'PivotViewToolbar', useValue: Toolbar };
|
|
193
|
+
const PivotChartService = { provide: 'PivotViewPivotChart', useValue: PivotChart };
|
|
194
|
+
const PDFExportService = { provide: 'PivotViewPDFExport', useValue: PDFExport };
|
|
195
|
+
const ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ExcelExport };
|
|
196
|
+
const NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting };
|
|
197
|
+
const GroupingService = { provide: 'PivotViewGrouping', useValue: Grouping };
|
|
198
|
+
const PagerService = { provide: 'PivotViewPager', useValue: Pager };
|
|
199
|
+
/**
|
|
200
|
+
* NgModule definition for the PivotView component with providers.
|
|
201
|
+
*/
|
|
202
|
+
class PivotViewAllModule {
|
|
203
|
+
}
|
|
204
|
+
PivotViewAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
205
|
+
PivotViewAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewAllModule, imports: [CommonModule, PivotViewModule], exports: [PivotViewModule] });
|
|
206
|
+
PivotViewAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewAllModule, providers: [
|
|
207
|
+
GroupingBarService,
|
|
208
|
+
FieldListService,
|
|
209
|
+
CalculatedFieldService,
|
|
210
|
+
ConditionalFormattingService,
|
|
211
|
+
VirtualScrollService,
|
|
212
|
+
DrillThroughService,
|
|
213
|
+
ToolbarService,
|
|
214
|
+
PivotChartService,
|
|
215
|
+
PDFExportService,
|
|
216
|
+
ExcelExportService,
|
|
217
|
+
NumberFormattingService,
|
|
218
|
+
GroupingService,
|
|
219
|
+
PagerService
|
|
220
|
+
], imports: [[CommonModule, PivotViewModule], PivotViewModule] });
|
|
221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotViewAllModule, decorators: [{
|
|
222
|
+
type: NgModule,
|
|
223
|
+
args: [{
|
|
224
|
+
imports: [CommonModule, PivotViewModule],
|
|
225
|
+
exports: [
|
|
226
|
+
PivotViewModule
|
|
227
|
+
],
|
|
228
|
+
providers: [
|
|
229
|
+
GroupingBarService,
|
|
230
|
+
FieldListService,
|
|
231
|
+
CalculatedFieldService,
|
|
232
|
+
ConditionalFormattingService,
|
|
233
|
+
VirtualScrollService,
|
|
234
|
+
DrillThroughService,
|
|
235
|
+
ToolbarService,
|
|
236
|
+
PivotChartService,
|
|
237
|
+
PDFExportService,
|
|
238
|
+
ExcelExportService,
|
|
239
|
+
NumberFormattingService,
|
|
240
|
+
GroupingService,
|
|
241
|
+
PagerService
|
|
242
|
+
]
|
|
243
|
+
}]
|
|
244
|
+
}] });
|
|
245
|
+
|
|
246
|
+
const inputs = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
|
|
247
|
+
const outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
|
|
248
|
+
const twoWays = [];
|
|
249
|
+
/**
|
|
250
|
+
* `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
|
|
251
|
+
* ```html
|
|
252
|
+
* <ej-pivotfieldlist></ej-pivotfieldlist>
|
|
253
|
+
* ```
|
|
254
|
+
*/
|
|
255
|
+
let PivotFieldListComponent = class PivotFieldListComponent extends PivotFieldList {
|
|
256
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
257
|
+
super();
|
|
258
|
+
this.ngEle = ngEle;
|
|
259
|
+
this.srenderer = srenderer;
|
|
260
|
+
this.viewContainerRef = viewContainerRef;
|
|
261
|
+
this.injector = injector;
|
|
262
|
+
this.element = this.ngEle.nativeElement;
|
|
263
|
+
this.injectedModules = this.injectedModules || [];
|
|
264
|
+
try {
|
|
265
|
+
let mod = this.injector.get('PivotViewCalculatedField');
|
|
266
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
267
|
+
this.injectedModules.push(mod);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
catch { }
|
|
271
|
+
this.registerEvents(outputs);
|
|
272
|
+
this.addTwoWay.call(this, twoWays);
|
|
273
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
274
|
+
this.context = new ComponentBase();
|
|
275
|
+
}
|
|
276
|
+
ngOnInit() {
|
|
277
|
+
this.context.ngOnInit(this);
|
|
278
|
+
}
|
|
279
|
+
ngAfterViewInit() {
|
|
280
|
+
this.context.ngAfterViewInit(this);
|
|
281
|
+
}
|
|
282
|
+
ngOnDestroy() {
|
|
283
|
+
this.context.ngOnDestroy(this);
|
|
284
|
+
}
|
|
285
|
+
ngAfterContentChecked() {
|
|
286
|
+
this.context.ngAfterContentChecked(this);
|
|
287
|
+
}
|
|
288
|
+
};
|
|
289
|
+
PivotFieldListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
290
|
+
PivotFieldListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: PivotFieldListComponent, selector: "ejs-pivotfieldlist", inputs: { aggregateTypes: "aggregateTypes", allowCalculatedField: "allowCalculatedField", allowDeferLayoutUpdate: "allowDeferLayoutUpdate", cssClass: "cssClass", currencyCode: "currencyCode", dataSourceSettings: "dataSourceSettings", enableFieldSearching: "enableFieldSearching", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", loadOnDemandInMemberEditor: "loadOnDemandInMemberEditor", locale: "locale", maxNodeLimitInMemberEditor: "maxNodeLimitInMemberEditor", renderMode: "renderMode", showValuesButton: "showValuesButton", spinnerTemplate: "spinnerTemplate", target: "target" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", afterServiceInvoke: "afterServiceInvoke", aggregateCellInfo: "aggregateCellInfo", aggregateMenuOpen: "aggregateMenuOpen", beforeServiceInvoke: "beforeServiceInvoke", calculatedFieldCreate: "calculatedFieldCreate", created: "created", dataBound: "dataBound", destroyed: "destroyed", enginePopulated: "enginePopulated", enginePopulating: "enginePopulating", fieldDragStart: "fieldDragStart", fieldDrop: "fieldDrop", fieldRemove: "fieldRemove", load: "load", memberEditorOpen: "memberEditorOpen", memberFiltering: "memberFiltering", onFieldDropped: "onFieldDropped", onHeadersSort: "onHeadersSort" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
291
|
+
PivotFieldListComponent = __decorate([
|
|
292
|
+
ComponentMixins([ComponentBase])
|
|
293
|
+
], PivotFieldListComponent);
|
|
294
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListComponent, decorators: [{
|
|
295
|
+
type: Component,
|
|
296
|
+
args: [{
|
|
297
|
+
selector: 'ejs-pivotfieldlist',
|
|
298
|
+
inputs: inputs,
|
|
299
|
+
outputs: outputs,
|
|
300
|
+
template: '',
|
|
301
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
302
|
+
queries: {}
|
|
303
|
+
}]
|
|
304
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* NgModule definition for the PivotFieldList component.
|
|
308
|
+
*/
|
|
309
|
+
class PivotFieldListModule {
|
|
310
|
+
}
|
|
311
|
+
PivotFieldListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
312
|
+
PivotFieldListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListModule, declarations: [PivotFieldListComponent], imports: [CommonModule], exports: [PivotFieldListComponent] });
|
|
313
|
+
PivotFieldListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListModule, imports: [[CommonModule]] });
|
|
314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListModule, decorators: [{
|
|
315
|
+
type: NgModule,
|
|
316
|
+
args: [{
|
|
317
|
+
imports: [CommonModule],
|
|
318
|
+
declarations: [
|
|
319
|
+
PivotFieldListComponent
|
|
320
|
+
],
|
|
321
|
+
exports: [
|
|
322
|
+
PivotFieldListComponent
|
|
323
|
+
]
|
|
324
|
+
}]
|
|
325
|
+
}] });
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* NgModule definition for the PivotFieldList component with providers.
|
|
329
|
+
*/
|
|
330
|
+
class PivotFieldListAllModule {
|
|
331
|
+
}
|
|
332
|
+
PivotFieldListAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
333
|
+
PivotFieldListAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListAllModule, imports: [CommonModule, PivotFieldListModule], exports: [PivotFieldListModule] });
|
|
334
|
+
PivotFieldListAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListAllModule, providers: [], imports: [[CommonModule, PivotFieldListModule], PivotFieldListModule] });
|
|
335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PivotFieldListAllModule, decorators: [{
|
|
336
|
+
type: NgModule,
|
|
337
|
+
args: [{
|
|
338
|
+
imports: [CommonModule, PivotFieldListModule],
|
|
339
|
+
exports: [
|
|
340
|
+
PivotFieldListModule
|
|
341
|
+
],
|
|
342
|
+
providers: []
|
|
343
|
+
}]
|
|
344
|
+
}] });
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Generated bundle index. Do not edit.
|
|
348
|
+
*/
|
|
349
|
+
|
|
350
|
+
export { CalculatedFieldService, ConditionalFormattingService, DrillThroughService, ExcelExportService, FieldListService, GroupingBarService, GroupingService, NumberFormattingService, PDFExportService, PagerService, PivotChartService, PivotFieldListAllModule, PivotFieldListComponent, PivotFieldListModule, PivotViewAllModule, PivotViewComponent, PivotViewModule, ToolbarService, VirtualScrollService };
|
|
351
|
+
//# sourceMappingURL=syncfusion-ej2-angular-pivotview.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-pivotview.mjs","sources":["../../src/pivotview/pivotview.component.ts","../../src/pivotview/pivotview.module.ts","../../src/pivotview/pivotview-all.module.ts","../../src/pivotfieldlist/pivotfieldlist.component.ts","../../src/pivotfieldlist/pivotfieldlist.module.ts","../../src/pivotfieldlist/pivotfieldlist-all.module.ts","../../syncfusion-ej2-angular-pivotview.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotView } from '@syncfusion/ej2-pivotview';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const inputs: string[] = ['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'];\nexport const outputs: string[] = ['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'];\nexport const twoWays: string[] = [];\n\n/**\n * `ej-pivotview` represents the Angular Pivot Table Component.\n * ```html\n * <ej-pivotview></ej-pivotview>\n * ```\n */\n@Component({\n selector: 'ejs-pivotview',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class PivotViewComponent extends PivotView implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeExport: any;\n\tbeforeServiceInvoke: any;\n\tbeginDrillThrough: any;\n\tcalculatedFieldCreate: any;\n\tcellClick: any;\n\tcellSelected: any;\n\tcellSelecting: any;\n\tchartSeriesCreated: any;\n\tconditionalFormatting: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tdrill: any;\n\tdrillThrough: any;\n\teditCompleted: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\texportComplete: any;\n\tfetchReport: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldListRefreshed: any;\n\tfieldRemove: any;\n\thyperlinkCellClick: any;\n\tload: any;\n\tloadReport: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tnewReport: any;\n\tnumberFormatting: any;\n\tonFieldDropped: any;\n\tonHeadersSort: any;\n\tonPdfCellRender: any;\n\tremoveReport: any;\n\trenameReport: any;\n\tsaveReport: any;\n\ttoolbarClick: any;\n\tpublic toolbarRender: any;\n\n\n /** \n * Allows the table cell elements to be customized with either an HTML string or the element’s ID, \n * that can be used to add additional HTML elements with custom formats to the cell elements that are displayed in the pivot table.\n * @default null\n * @asptype string\n */\n @ContentChild('cellTemplate')\n @Template()\n public cellTemplate: any;\n /** \n * Allows the tooltip element to be customized with either an HTML string or the element’s ID, \n * can be used to displayed with custom formats either by mouse hovering or by touch in the pivot table.\n * @default null\n * @asptype string\n */\n @ContentChild('tooltipTemplate')\n @Template()\n public tooltipTemplate: any;\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewGroupingBar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewFieldList');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewConditionalFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewDrillThrough');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewPivotChart');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewPDFExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewExcelExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewNumberFormatting');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewGrouping');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r try {\n let mod = this.injector.get('PivotViewPager');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\n\n/**\n * NgModule definition for the PivotView component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n PivotViewComponent\n ],\n exports: [\n PivotViewComponent\n ]\n})\nexport class PivotViewModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotViewComponent } from './pivotview.component';\nimport { PivotViewModule } from './pivotview.module';\nimport {GroupingBar, FieldList, CalculatedField, ConditionalFormatting, VirtualScroll, DrillThrough, Toolbar, PivotChart, PDFExport, ExcelExport, NumberFormatting, Grouping, Pager} from '@syncfusion/ej2-pivotview'\n\n\nexport const GroupingBarService: ValueProvider = { provide: 'PivotViewGroupingBar', useValue: GroupingBar};\nexport const FieldListService: ValueProvider = { provide: 'PivotViewFieldList', useValue: FieldList};\nexport const CalculatedFieldService: ValueProvider = { provide: 'PivotViewCalculatedField', useValue: CalculatedField};\nexport const ConditionalFormattingService: ValueProvider = { provide: 'PivotViewConditionalFormatting', useValue: ConditionalFormatting};\nexport const VirtualScrollService: ValueProvider = { provide: 'PivotViewVirtualScroll', useValue: VirtualScroll};\nexport const DrillThroughService: ValueProvider = { provide: 'PivotViewDrillThrough', useValue: DrillThrough};\nexport const ToolbarService: ValueProvider = { provide: 'PivotViewToolbar', useValue: Toolbar};\nexport const PivotChartService: ValueProvider = { provide: 'PivotViewPivotChart', useValue: PivotChart};\nexport const PDFExportService: ValueProvider = { provide: 'PivotViewPDFExport', useValue: PDFExport};\nexport const ExcelExportService: ValueProvider = { provide: 'PivotViewExcelExport', useValue: ExcelExport};\nexport const NumberFormattingService: ValueProvider = { provide: 'PivotViewNumberFormatting', useValue: NumberFormatting};\nexport const GroupingService: ValueProvider = { provide: 'PivotViewGrouping', useValue: Grouping};\nexport const PagerService: ValueProvider = { provide: 'PivotViewPager', useValue: Pager};\n\n/**\n * NgModule definition for the PivotView component with providers.\n */\n@NgModule({\n imports: [CommonModule, PivotViewModule],\n exports: [\n PivotViewModule\n ],\n providers:[\n GroupingBarService,\n FieldListService,\n CalculatedFieldService,\n ConditionalFormattingService,\n VirtualScrollService,\n DrillThroughService,\n ToolbarService,\n PivotChartService,\n PDFExportService,\n ExcelExportService,\n NumberFormattingService,\n GroupingService,\n PagerService\n ]\n})\nexport class PivotViewAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { PivotFieldList } from '@syncfusion/ej2-pivotview';\n\n\n\nexport const inputs: string[] = ['aggregateTypes','allowCalculatedField','allowDeferLayoutUpdate','cssClass','currencyCode','dataSourceSettings','enableFieldSearching','enableHtmlSanitizer','enablePersistence','enableRtl','loadOnDemandInMemberEditor','locale','maxNodeLimitInMemberEditor','renderMode','showValuesButton','spinnerTemplate','target'];\nexport const outputs: string[] = ['actionBegin','actionComplete','actionFailure','afterServiceInvoke','aggregateCellInfo','aggregateMenuOpen','beforeServiceInvoke','calculatedFieldCreate','created','dataBound','destroyed','enginePopulated','enginePopulating','fieldDragStart','fieldDrop','fieldRemove','load','memberEditorOpen','memberFiltering','onFieldDropped','onHeadersSort'];\nexport const twoWays: string[] = [];\n\n/**\n * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.\n * ```html\n * <ej-pivotfieldlist></ej-pivotfieldlist>\n * ```\n */\n@Component({\n selector: 'ejs-pivotfieldlist',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class PivotFieldListComponent extends PivotFieldList implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tafterServiceInvoke: any;\n\taggregateCellInfo: any;\n\taggregateMenuOpen: any;\n\tbeforeServiceInvoke: any;\n\tcalculatedFieldCreate: any;\n\tcreated: any;\n\tdataBound: any;\n\tdestroyed: any;\n\tenginePopulated: any;\n\tenginePopulating: any;\n\tfieldDragStart: any;\n\tfieldDrop: any;\n\tfieldRemove: any;\n\tload: any;\n\tmemberEditorOpen: any;\n\tmemberFiltering: any;\n\tonFieldDropped: any;\n\tpublic onHeadersSort: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('PivotViewCalculatedField');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\n\n/**\n * NgModule definition for the PivotFieldList component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n PivotFieldListComponent\n ],\n exports: [\n PivotFieldListComponent\n ]\n})\nexport class PivotFieldListModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PivotFieldListComponent } from './pivotfieldlist.component';\nimport { PivotFieldListModule } from './pivotfieldlist.module';\n\n\n\n\n\n/**\n * NgModule definition for the PivotFieldList component with providers.\n */\n@NgModule({\n imports: [CommonModule, PivotFieldListModule],\n exports: [\n PivotFieldListModule\n ],\n providers:[\n \n ]\n})\nexport class PivotFieldListAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["inputs","outputs","twoWays"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-pivotview",
|
|
3
|
-
"version": "30.2.6
|
|
3
|
+
"version": "30.2.6",
|
|
4
4
|
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~30.2.4",
|
|
11
11
|
"@syncfusion/ej2-pivotview": "30.2.6"
|
|
12
12
|
},
|
|
13
|
-
"devDependencies": {},
|
|
14
13
|
"keywords": [
|
|
15
14
|
"angular",
|
|
16
15
|
"angular-pivotview"
|
|
@@ -20,10 +19,24 @@
|
|
|
20
19
|
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
21
20
|
},
|
|
22
21
|
"sideEffects": false,
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
22
|
+
"module": "fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
23
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
24
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
25
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
26
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
27
|
+
"typings": "syncfusion-ej2-angular-pivotview.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
"./package.json": {
|
|
30
|
+
"default": "./package.json"
|
|
31
|
+
},
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./syncfusion-ej2-angular-pivotview.d.ts",
|
|
34
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
35
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-pivotview.mjs",
|
|
36
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
37
|
+
"node": "./fesm2015/syncfusion-ej2-angular-pivotview.mjs",
|
|
38
|
+
"default": "./fesm2020/syncfusion-ej2-angular-pivotview.mjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
28
41
|
"homepage": "https://www.syncfusion.com/angular-components"
|
|
29
42
|
}
|
package/public_api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/index';
|
|
1
|
+
export * from './src/index';
|
package/src/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { PivotViewComponent } from './pivotview/pivotview.component';
|
|
2
|
-
export { PivotViewModule } from './pivotview/pivotview.module';
|
|
3
|
-
export { PivotViewAllModule, GroupingBarService, FieldListService, CalculatedFieldService, ConditionalFormattingService, VirtualScrollService, DrillThroughService, ToolbarService, PivotChartService, PDFExportService, ExcelExportService, NumberFormattingService, GroupingService, PagerService } from './pivotview/pivotview-all.module';
|
|
4
|
-
export { PivotFieldListComponent } from './pivotfieldlist/pivotfieldlist.component';
|
|
5
|
-
export { PivotFieldListModule } from './pivotfieldlist/pivotfieldlist.module';
|
|
6
|
-
export { PivotFieldListAllModule } from './pivotfieldlist/pivotfieldlist-all.module';
|
|
7
|
-
export * from '@syncfusion/ej2-pivotview';
|
|
1
|
+
export { PivotViewComponent } from './pivotview/pivotview.component';
|
|
2
|
+
export { PivotViewModule } from './pivotview/pivotview.module';
|
|
3
|
+
export { PivotViewAllModule, GroupingBarService, FieldListService, CalculatedFieldService, ConditionalFormattingService, VirtualScrollService, DrillThroughService, ToolbarService, PivotChartService, PDFExportService, ExcelExportService, NumberFormattingService, GroupingService, PagerService } from './pivotview/pivotview-all.module';
|
|
4
|
+
export { PivotFieldListComponent } from './pivotfieldlist/pivotfieldlist.component';
|
|
5
|
+
export { PivotFieldListModule } from './pivotfieldlist/pivotfieldlist.module';
|
|
6
|
+
export { PivotFieldListAllModule } from './pivotfieldlist/pivotfieldlist-all.module';
|
|
7
|
+
export * from '@syncfusion/ej2-pivotview';
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./pivotfieldlist.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the PivotFieldList component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class PivotFieldListAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PivotFieldListAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotFieldListAllModule, never, [typeof i1.CommonModule, typeof i2.PivotFieldListModule], [typeof i2.PivotFieldListModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PivotFieldListAllModule>;
|
|
11
|
+
}
|
|
@@ -1,48 +1,51 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { PivotFieldList } from '@syncfusion/ej2-pivotview';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { PivotFieldList } from '@syncfusion/ej2-pivotview';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ej-pivotfieldlist></ej-pivotfieldlist>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class PivotFieldListComponent extends PivotFieldList implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
context: any;
|
|
20
|
+
tagObjects: any;
|
|
21
|
+
actionBegin: any;
|
|
22
|
+
actionComplete: any;
|
|
23
|
+
actionFailure: any;
|
|
24
|
+
afterServiceInvoke: any;
|
|
25
|
+
aggregateCellInfo: any;
|
|
26
|
+
aggregateMenuOpen: any;
|
|
27
|
+
beforeServiceInvoke: any;
|
|
28
|
+
calculatedFieldCreate: any;
|
|
29
|
+
created: any;
|
|
30
|
+
dataBound: any;
|
|
31
|
+
destroyed: any;
|
|
32
|
+
enginePopulated: any;
|
|
33
|
+
enginePopulating: any;
|
|
34
|
+
fieldDragStart: any;
|
|
35
|
+
fieldDrop: any;
|
|
36
|
+
fieldRemove: any;
|
|
37
|
+
load: any;
|
|
38
|
+
memberEditorOpen: any;
|
|
39
|
+
memberFiltering: any;
|
|
40
|
+
onFieldDropped: any;
|
|
41
|
+
onHeadersSort: any;
|
|
42
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
ngAfterViewInit(): void;
|
|
45
|
+
ngOnDestroy(): void;
|
|
46
|
+
ngAfterContentChecked(): void;
|
|
47
|
+
registerEvents: (eventList: string[]) => void;
|
|
48
|
+
addTwoWay: (propList: string[]) => void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PivotFieldListComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotFieldListComponent, "ejs-pivotfieldlist", never, { "aggregateTypes": "aggregateTypes"; "allowCalculatedField": "allowCalculatedField"; "allowDeferLayoutUpdate": "allowDeferLayoutUpdate"; "cssClass": "cssClass"; "currencyCode": "currencyCode"; "dataSourceSettings": "dataSourceSettings"; "enableFieldSearching": "enableFieldSearching"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "loadOnDemandInMemberEditor": "loadOnDemandInMemberEditor"; "locale": "locale"; "maxNodeLimitInMemberEditor": "maxNodeLimitInMemberEditor"; "renderMode": "renderMode"; "showValuesButton": "showValuesButton"; "spinnerTemplate": "spinnerTemplate"; "target": "target"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "afterServiceInvoke": "afterServiceInvoke"; "aggregateCellInfo": "aggregateCellInfo"; "aggregateMenuOpen": "aggregateMenuOpen"; "beforeServiceInvoke": "beforeServiceInvoke"; "calculatedFieldCreate": "calculatedFieldCreate"; "created": "created"; "dataBound": "dataBound"; "destroyed": "destroyed"; "enginePopulated": "enginePopulated"; "enginePopulating": "enginePopulating"; "fieldDragStart": "fieldDragStart"; "fieldDrop": "fieldDrop"; "fieldRemove": "fieldRemove"; "load": "load"; "memberEditorOpen": "memberEditorOpen"; "memberFiltering": "memberFiltering"; "onFieldDropped": "onFieldDropped"; "onHeadersSort": "onHeadersSort"; }, never, never>;
|
|
51
|
+
}
|