ngx-flexmonster 2.9.110-1 → 2.9.111
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/README.md +67 -68
- package/esm2020/lib/ngx-flexmonster.component.mjs +240 -240
- package/esm2020/lib/ngx-flexmonster.module.mjs +20 -20
- package/esm2020/ngx-flexmonster.mjs +4 -4
- package/esm2020/public-api.mjs +7 -7
- package/fesm2015/ngx-flexmonster.mjs +253 -253
- package/fesm2015/ngx-flexmonster.mjs.map +1 -1
- package/fesm2020/ngx-flexmonster.mjs +253 -253
- package/fesm2020/ngx-flexmonster.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/ngx-flexmonster.component.d.ts +68 -68
- package/lib/ngx-flexmonster.module.d.ts +8 -8
- package/package.json +2 -2
- package/public-api.d.ts +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
5
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LWZsZXhtb25zdGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvbmd4LWZsZXhtb25zdGVyL3NyYy9uZ3gtZmxleG1vbnN0ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
package/esm2020/public-api.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of ngx-flexmonster
|
|
3
|
-
*/
|
|
4
|
-
//export * from './lib/ngx-flexmonster.service';
|
|
5
|
-
export * from './lib/ngx-flexmonster.component';
|
|
6
|
-
export * from './lib/ngx-flexmonster.module';
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of ngx-flexmonster
|
|
3
|
+
*/
|
|
4
|
+
//export * from './lib/ngx-flexmonster.service';
|
|
5
|
+
export * from './lib/ngx-flexmonster.component';
|
|
6
|
+
export * from './lib/ngx-flexmonster.module';
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL25neC1mbGV4bW9uc3Rlci9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGdEQUFnRDtBQUNoRCxjQUFjLGlDQUFpQyxDQUFDO0FBQ2hELGNBQWMsOEJBQThCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygbmd4LWZsZXhtb25zdGVyXHJcbiAqL1xyXG5cclxuLy9leHBvcnQgKiBmcm9tICcuL2xpYi9uZ3gtZmxleG1vbnN0ZXIuc2VydmljZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL25neC1mbGV4bW9uc3Rlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL2xpYi9uZ3gtZmxleG1vbnN0ZXIubW9kdWxlJztcclxuIl19
|
|
@@ -3,265 +3,265 @@ import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core'
|
|
|
3
3
|
import * as Flexmonster from 'flexmonster';
|
|
4
4
|
import { CommonModule } from '@angular/common';
|
|
5
5
|
|
|
6
|
-
const _ = Flexmonster; // Bundle the import for Angular compatibility. DO NOT REMOVE THIS LINE!
|
|
7
|
-
class FlexmonsterPivot {
|
|
8
|
-
constructor(el) {
|
|
9
|
-
// events
|
|
10
|
-
this.cellclick = new EventEmitter();
|
|
11
|
-
this.celldoubleclick = new EventEmitter();
|
|
12
|
-
this.chartclick = new EventEmitter();
|
|
13
|
-
this.dataerror = new EventEmitter();
|
|
14
|
-
this.datafilecancelled = new EventEmitter();
|
|
15
|
-
this.dataloaded = new EventEmitter();
|
|
16
|
-
this.datachanged = new EventEmitter();
|
|
17
|
-
this.fieldslistclose = new EventEmitter();
|
|
18
|
-
this.fieldslistopen = new EventEmitter();
|
|
19
|
-
this.filterclose = new EventEmitter();
|
|
20
|
-
this.filteropen = new EventEmitter();
|
|
21
|
-
this.drillthroughopen = new EventEmitter();
|
|
22
|
-
this.exportcomplete = new EventEmitter();
|
|
23
|
-
this.exportstart = new EventEmitter();
|
|
24
|
-
this.drillthroughclose = new EventEmitter();
|
|
25
|
-
this.fullscreen = new EventEmitter();
|
|
26
|
-
this.loadingdata = new EventEmitter();
|
|
27
|
-
this.loadinglocalization = new EventEmitter();
|
|
28
|
-
this.loadingolapstructure = new EventEmitter();
|
|
29
|
-
this.loadingreportfile = new EventEmitter();
|
|
30
|
-
this.localizationerror = new EventEmitter();
|
|
31
|
-
this.localizationloaded = new EventEmitter();
|
|
32
|
-
this.olapstructureerror = new EventEmitter();
|
|
33
|
-
this.olapstructureloaded = new EventEmitter();
|
|
34
|
-
this.openingreportfile = new EventEmitter();
|
|
35
|
-
this.printcomplete = new EventEmitter();
|
|
36
|
-
this.printstart = new EventEmitter();
|
|
37
|
-
this.querycomplete = new EventEmitter();
|
|
38
|
-
this.queryerror = new EventEmitter();
|
|
39
|
-
this.ready = new EventEmitter();
|
|
40
|
-
this.reportchange = new EventEmitter();
|
|
41
|
-
this.reportcomplete = new EventEmitter();
|
|
42
|
-
this.reportfilecancelled = new EventEmitter();
|
|
43
|
-
this.reportfileerror = new EventEmitter();
|
|
44
|
-
this.runningquery = new EventEmitter();
|
|
45
|
-
this.unauthorizederror = new EventEmitter();
|
|
46
|
-
this.update = new EventEmitter();
|
|
47
|
-
this.beforetoolbarcreated = new EventEmitter();
|
|
48
|
-
this.beforegriddraw = new EventEmitter();
|
|
49
|
-
this.aftergriddraw = new EventEmitter();
|
|
50
|
-
this.afterchartdraw = new EventEmitter();
|
|
51
|
-
this.root = el.nativeElement;
|
|
52
|
-
}
|
|
53
|
-
ngOnInit() {
|
|
54
|
-
this.flexmonster = new window.Flexmonster({
|
|
55
|
-
container: this.root.getElementsByClassName('fm-ng-wrapper')[0],
|
|
56
|
-
componentFolder: this.componentFolder,
|
|
57
|
-
width: this.width,
|
|
58
|
-
height: this.height,
|
|
59
|
-
toolbar: this.toolbar,
|
|
60
|
-
licenseKey: this.licenseKey,
|
|
61
|
-
licenseFilePath: this.licenseFilePath,
|
|
62
|
-
report: this.report,
|
|
63
|
-
global: this.global,
|
|
64
|
-
accessibility: this.accessibility,
|
|
65
|
-
shareReportConnection: this.shareReportConnection,
|
|
66
|
-
customizeAPIRequest: this.customizeAPIRequest,
|
|
67
|
-
customizeCell: this.customizeCell,
|
|
68
|
-
customizeChartElement: this.customizeChartElement,
|
|
69
|
-
customizeContextMenu: this.customizeContextMenu,
|
|
70
|
-
sortFieldsList: this.sortFieldsList,
|
|
71
|
-
cellclick: (cell) => this.cellclick.next(cell),
|
|
72
|
-
celldoubleclick: (cell) => this.celldoubleclick.next(cell),
|
|
73
|
-
chartclick: (event) => this.chartclick.next(event),
|
|
74
|
-
datachanged: (event) => this.datachanged.next(event),
|
|
75
|
-
dataerror: (event) => this.dataerror.next(event),
|
|
76
|
-
datafilecancelled: () => this.datafilecancelled.next(),
|
|
77
|
-
dataloaded: () => this.dataloaded.next(),
|
|
78
|
-
fieldslistclose: () => this.fieldslistclose.next(),
|
|
79
|
-
fieldslistopen: () => this.fieldslistopen.next(),
|
|
80
|
-
filterclose: () => this.filterclose.next(),
|
|
81
|
-
filteropen: (event) => this.filteropen.next(event),
|
|
82
|
-
drillthroughopen: (cell) => this.drillthroughopen.next(cell),
|
|
83
|
-
exportcomplete: () => this.exportcomplete.next(),
|
|
84
|
-
exportstart: () => this.exportstart.next(),
|
|
85
|
-
drillthroughclose: () => this.drillthroughclose.next(),
|
|
86
|
-
loadingdata: () => this.loadingdata.next(),
|
|
87
|
-
loadinglocalization: () => this.loadinglocalization.next(),
|
|
88
|
-
loadingolapstructure: () => this.loadingolapstructure.next(),
|
|
89
|
-
loadingreportfile: () => this.loadingreportfile.next(),
|
|
90
|
-
localizationerror: () => this.localizationerror.next(),
|
|
91
|
-
localizationloaded: () => this.localizationloaded.next(),
|
|
92
|
-
olapstructureerror: (event) => this.olapstructureerror.next(event),
|
|
93
|
-
olapstructureloaded: () => this.olapstructureloaded.next(),
|
|
94
|
-
openingreportfile: () => this.openingreportfile.next(),
|
|
95
|
-
printcomplete: () => this.printcomplete.next(),
|
|
96
|
-
printstart: () => this.printstart.next(),
|
|
97
|
-
querycomplete: () => this.querycomplete.next(),
|
|
98
|
-
queryerror: (event) => this.queryerror.next(event),
|
|
99
|
-
ready: () => this.ready.next(this.flexmonster),
|
|
100
|
-
reportchange: () => this.reportchange.next(),
|
|
101
|
-
reportcomplete: () => this.reportcomplete.next(),
|
|
102
|
-
reportfilecancelled: () => this.reportfilecancelled.next(),
|
|
103
|
-
reportfileerror: () => this.reportfileerror.next(),
|
|
104
|
-
runningquery: () => this.runningquery.next(),
|
|
105
|
-
unauthorizederror: (done) => this.unauthorizederror.next(done),
|
|
106
|
-
update: () => this.update.next(),
|
|
107
|
-
beforetoolbarcreated: (toolbar) => this.beforetoolbarcreated.next(toolbar),
|
|
108
|
-
beforegriddraw: (event) => this.beforegriddraw.next(event),
|
|
109
|
-
aftergriddraw: (event) => this.aftergriddraw.next(event),
|
|
110
|
-
afterchartdraw: () => this.afterchartdraw.next()
|
|
111
|
-
});
|
|
112
|
-
}
|
|
113
|
-
ngOnDestroy() {
|
|
114
|
-
if (this.flexmonster) {
|
|
115
|
-
this.flexmonster.dispose();
|
|
116
|
-
this.flexmonster = null;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
FlexmonsterPivot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivot, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
-
FlexmonsterPivot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FlexmonsterPivot, selector: "fm-pivot", inputs: { toolbar: "toolbar", licenseKey: "licenseKey", licenseFilePath: "licenseFilePath", width: "width", height: "height", componentFolder: "componentFolder", report: "report", shareReportConnection: "shareReportConnection", global: "global", accessibility: "accessibility", customizeAPIRequest: "customizeAPIRequest", customizeCell: "customizeCell", customizeChartElement: "customizeChartElement", customizeContextMenu: "customizeContextMenu", sortFieldsList: "sortFieldsList" }, outputs: { cellclick: "cellclick", celldoubleclick: "celldoubleclick", chartclick: "chartclick", dataerror: "dataerror", datafilecancelled: "datafilecancelled", dataloaded: "dataloaded", datachanged: "datachanged", fieldslistclose: "fieldslistclose", fieldslistopen: "fieldslistopen", filterclose: "filterclose", filteropen: "filteropen", drillthroughopen: "drillthroughopen", exportcomplete: "exportcomplete", exportstart: "exportstart", drillthroughclose: "drillthroughclose", fullscreen: "fullscreen", loadingdata: "loadingdata", loadinglocalization: "loadinglocalization", loadingolapstructure: "loadingolapstructure", loadingreportfile: "loadingreportfile", localizationerror: "localizationerror", localizationloaded: "localizationloaded", olapstructureerror: "olapstructureerror", olapstructureloaded: "olapstructureloaded", openingreportfile: "openingreportfile", printcomplete: "printcomplete", printstart: "printstart", querycomplete: "querycomplete", queryerror: "queryerror", ready: "ready", reportchange: "reportchange", reportcomplete: "reportcomplete", reportfilecancelled: "reportfilecancelled", reportfileerror: "reportfileerror", runningquery: "runningquery", unauthorizederror: "unauthorizederror", update: "update", beforetoolbarcreated: "beforetoolbarcreated", beforegriddraw: "beforegriddraw", aftergriddraw: "aftergriddraw", afterchartdraw: "afterchartdraw" }, ngImport: i0, template: '<div style="width:100%;height:100%;"><div class="fm-ng-wrapper"></div></div>', isInline: true });
|
|
122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivot, decorators: [{
|
|
123
|
-
type: Component,
|
|
124
|
-
args: [{
|
|
125
|
-
selector: 'fm-pivot',
|
|
126
|
-
template: '<div style="width:100%;height:100%;"><div class="fm-ng-wrapper"></div></div>',
|
|
127
|
-
//providers: [FlexmonsterPivotService]
|
|
128
|
-
}]
|
|
129
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { toolbar: [{
|
|
130
|
-
type: Input
|
|
131
|
-
}], licenseKey: [{
|
|
132
|
-
type: Input
|
|
133
|
-
}], licenseFilePath: [{
|
|
134
|
-
type: Input
|
|
135
|
-
}], width: [{
|
|
136
|
-
type: Input
|
|
137
|
-
}], height: [{
|
|
138
|
-
type: Input
|
|
139
|
-
}], componentFolder: [{
|
|
140
|
-
type: Input
|
|
141
|
-
}], report: [{
|
|
142
|
-
type: Input
|
|
143
|
-
}], shareReportConnection: [{
|
|
144
|
-
type: Input
|
|
145
|
-
}], global: [{
|
|
146
|
-
type: Input
|
|
147
|
-
}], accessibility: [{
|
|
148
|
-
type: Input
|
|
149
|
-
}], customizeAPIRequest: [{
|
|
150
|
-
type: Input
|
|
151
|
-
}], customizeCell: [{
|
|
152
|
-
type: Input
|
|
153
|
-
}], customizeChartElement: [{
|
|
154
|
-
type: Input
|
|
155
|
-
}], customizeContextMenu: [{
|
|
156
|
-
type: Input
|
|
157
|
-
}], sortFieldsList: [{
|
|
158
|
-
type: Input
|
|
159
|
-
}], cellclick: [{
|
|
160
|
-
type: Output
|
|
161
|
-
}], celldoubleclick: [{
|
|
162
|
-
type: Output
|
|
163
|
-
}], chartclick: [{
|
|
164
|
-
type: Output
|
|
165
|
-
}], dataerror: [{
|
|
166
|
-
type: Output
|
|
167
|
-
}], datafilecancelled: [{
|
|
168
|
-
type: Output
|
|
169
|
-
}], dataloaded: [{
|
|
170
|
-
type: Output
|
|
171
|
-
}], datachanged: [{
|
|
172
|
-
type: Output
|
|
173
|
-
}], fieldslistclose: [{
|
|
174
|
-
type: Output
|
|
175
|
-
}], fieldslistopen: [{
|
|
176
|
-
type: Output
|
|
177
|
-
}], filterclose: [{
|
|
178
|
-
type: Output
|
|
179
|
-
}], filteropen: [{
|
|
180
|
-
type: Output
|
|
181
|
-
}], drillthroughopen: [{
|
|
182
|
-
type: Output
|
|
183
|
-
}], exportcomplete: [{
|
|
184
|
-
type: Output
|
|
185
|
-
}], exportstart: [{
|
|
186
|
-
type: Output
|
|
187
|
-
}], drillthroughclose: [{
|
|
188
|
-
type: Output
|
|
189
|
-
}], fullscreen: [{
|
|
190
|
-
type: Output
|
|
191
|
-
}], loadingdata: [{
|
|
192
|
-
type: Output
|
|
193
|
-
}], loadinglocalization: [{
|
|
194
|
-
type: Output
|
|
195
|
-
}], loadingolapstructure: [{
|
|
196
|
-
type: Output
|
|
197
|
-
}], loadingreportfile: [{
|
|
198
|
-
type: Output
|
|
199
|
-
}], localizationerror: [{
|
|
200
|
-
type: Output
|
|
201
|
-
}], localizationloaded: [{
|
|
202
|
-
type: Output
|
|
203
|
-
}], olapstructureerror: [{
|
|
204
|
-
type: Output
|
|
205
|
-
}], olapstructureloaded: [{
|
|
206
|
-
type: Output
|
|
207
|
-
}], openingreportfile: [{
|
|
208
|
-
type: Output
|
|
209
|
-
}], printcomplete: [{
|
|
210
|
-
type: Output
|
|
211
|
-
}], printstart: [{
|
|
212
|
-
type: Output
|
|
213
|
-
}], querycomplete: [{
|
|
214
|
-
type: Output
|
|
215
|
-
}], queryerror: [{
|
|
216
|
-
type: Output
|
|
217
|
-
}], ready: [{
|
|
218
|
-
type: Output
|
|
219
|
-
}], reportchange: [{
|
|
220
|
-
type: Output
|
|
221
|
-
}], reportcomplete: [{
|
|
222
|
-
type: Output
|
|
223
|
-
}], reportfilecancelled: [{
|
|
224
|
-
type: Output
|
|
225
|
-
}], reportfileerror: [{
|
|
226
|
-
type: Output
|
|
227
|
-
}], runningquery: [{
|
|
228
|
-
type: Output
|
|
229
|
-
}], unauthorizederror: [{
|
|
230
|
-
type: Output
|
|
231
|
-
}], update: [{
|
|
232
|
-
type: Output
|
|
233
|
-
}], beforetoolbarcreated: [{
|
|
234
|
-
type: Output
|
|
235
|
-
}], beforegriddraw: [{
|
|
236
|
-
type: Output
|
|
237
|
-
}], aftergriddraw: [{
|
|
238
|
-
type: Output
|
|
239
|
-
}], afterchartdraw: [{
|
|
240
|
-
type: Output
|
|
6
|
+
const _ = Flexmonster; // Bundle the import for Angular compatibility. DO NOT REMOVE THIS LINE!
|
|
7
|
+
class FlexmonsterPivot {
|
|
8
|
+
constructor(el) {
|
|
9
|
+
// events
|
|
10
|
+
this.cellclick = new EventEmitter();
|
|
11
|
+
this.celldoubleclick = new EventEmitter();
|
|
12
|
+
this.chartclick = new EventEmitter();
|
|
13
|
+
this.dataerror = new EventEmitter();
|
|
14
|
+
this.datafilecancelled = new EventEmitter();
|
|
15
|
+
this.dataloaded = new EventEmitter();
|
|
16
|
+
this.datachanged = new EventEmitter();
|
|
17
|
+
this.fieldslistclose = new EventEmitter();
|
|
18
|
+
this.fieldslistopen = new EventEmitter();
|
|
19
|
+
this.filterclose = new EventEmitter();
|
|
20
|
+
this.filteropen = new EventEmitter();
|
|
21
|
+
this.drillthroughopen = new EventEmitter();
|
|
22
|
+
this.exportcomplete = new EventEmitter();
|
|
23
|
+
this.exportstart = new EventEmitter();
|
|
24
|
+
this.drillthroughclose = new EventEmitter();
|
|
25
|
+
this.fullscreen = new EventEmitter();
|
|
26
|
+
this.loadingdata = new EventEmitter();
|
|
27
|
+
this.loadinglocalization = new EventEmitter();
|
|
28
|
+
this.loadingolapstructure = new EventEmitter();
|
|
29
|
+
this.loadingreportfile = new EventEmitter();
|
|
30
|
+
this.localizationerror = new EventEmitter();
|
|
31
|
+
this.localizationloaded = new EventEmitter();
|
|
32
|
+
this.olapstructureerror = new EventEmitter();
|
|
33
|
+
this.olapstructureloaded = new EventEmitter();
|
|
34
|
+
this.openingreportfile = new EventEmitter();
|
|
35
|
+
this.printcomplete = new EventEmitter();
|
|
36
|
+
this.printstart = new EventEmitter();
|
|
37
|
+
this.querycomplete = new EventEmitter();
|
|
38
|
+
this.queryerror = new EventEmitter();
|
|
39
|
+
this.ready = new EventEmitter();
|
|
40
|
+
this.reportchange = new EventEmitter();
|
|
41
|
+
this.reportcomplete = new EventEmitter();
|
|
42
|
+
this.reportfilecancelled = new EventEmitter();
|
|
43
|
+
this.reportfileerror = new EventEmitter();
|
|
44
|
+
this.runningquery = new EventEmitter();
|
|
45
|
+
this.unauthorizederror = new EventEmitter();
|
|
46
|
+
this.update = new EventEmitter();
|
|
47
|
+
this.beforetoolbarcreated = new EventEmitter();
|
|
48
|
+
this.beforegriddraw = new EventEmitter();
|
|
49
|
+
this.aftergriddraw = new EventEmitter();
|
|
50
|
+
this.afterchartdraw = new EventEmitter();
|
|
51
|
+
this.root = el.nativeElement;
|
|
52
|
+
}
|
|
53
|
+
ngOnInit() {
|
|
54
|
+
this.flexmonster = new window.Flexmonster({
|
|
55
|
+
container: this.root.getElementsByClassName('fm-ng-wrapper')[0],
|
|
56
|
+
componentFolder: this.componentFolder,
|
|
57
|
+
width: this.width,
|
|
58
|
+
height: this.height,
|
|
59
|
+
toolbar: this.toolbar,
|
|
60
|
+
licenseKey: this.licenseKey,
|
|
61
|
+
licenseFilePath: this.licenseFilePath,
|
|
62
|
+
report: this.report,
|
|
63
|
+
global: this.global,
|
|
64
|
+
accessibility: this.accessibility,
|
|
65
|
+
shareReportConnection: this.shareReportConnection,
|
|
66
|
+
customizeAPIRequest: this.customizeAPIRequest,
|
|
67
|
+
customizeCell: this.customizeCell,
|
|
68
|
+
customizeChartElement: this.customizeChartElement,
|
|
69
|
+
customizeContextMenu: this.customizeContextMenu,
|
|
70
|
+
sortFieldsList: this.sortFieldsList,
|
|
71
|
+
cellclick: (cell) => this.cellclick.next(cell),
|
|
72
|
+
celldoubleclick: (cell) => this.celldoubleclick.next(cell),
|
|
73
|
+
chartclick: (event) => this.chartclick.next(event),
|
|
74
|
+
datachanged: (event) => this.datachanged.next(event),
|
|
75
|
+
dataerror: (event) => this.dataerror.next(event),
|
|
76
|
+
datafilecancelled: () => this.datafilecancelled.next(),
|
|
77
|
+
dataloaded: () => this.dataloaded.next(),
|
|
78
|
+
fieldslistclose: () => this.fieldslistclose.next(),
|
|
79
|
+
fieldslistopen: () => this.fieldslistopen.next(),
|
|
80
|
+
filterclose: () => this.filterclose.next(),
|
|
81
|
+
filteropen: (event) => this.filteropen.next(event),
|
|
82
|
+
drillthroughopen: (cell) => this.drillthroughopen.next(cell),
|
|
83
|
+
exportcomplete: () => this.exportcomplete.next(),
|
|
84
|
+
exportstart: () => this.exportstart.next(),
|
|
85
|
+
drillthroughclose: () => this.drillthroughclose.next(),
|
|
86
|
+
loadingdata: () => this.loadingdata.next(),
|
|
87
|
+
loadinglocalization: () => this.loadinglocalization.next(),
|
|
88
|
+
loadingolapstructure: () => this.loadingolapstructure.next(),
|
|
89
|
+
loadingreportfile: () => this.loadingreportfile.next(),
|
|
90
|
+
localizationerror: () => this.localizationerror.next(),
|
|
91
|
+
localizationloaded: () => this.localizationloaded.next(),
|
|
92
|
+
olapstructureerror: (event) => this.olapstructureerror.next(event),
|
|
93
|
+
olapstructureloaded: () => this.olapstructureloaded.next(),
|
|
94
|
+
openingreportfile: () => this.openingreportfile.next(),
|
|
95
|
+
printcomplete: () => this.printcomplete.next(),
|
|
96
|
+
printstart: () => this.printstart.next(),
|
|
97
|
+
querycomplete: () => this.querycomplete.next(),
|
|
98
|
+
queryerror: (event) => this.queryerror.next(event),
|
|
99
|
+
ready: () => this.ready.next(this.flexmonster),
|
|
100
|
+
reportchange: () => this.reportchange.next(),
|
|
101
|
+
reportcomplete: () => this.reportcomplete.next(),
|
|
102
|
+
reportfilecancelled: () => this.reportfilecancelled.next(),
|
|
103
|
+
reportfileerror: () => this.reportfileerror.next(),
|
|
104
|
+
runningquery: () => this.runningquery.next(),
|
|
105
|
+
unauthorizederror: (done) => this.unauthorizederror.next(done),
|
|
106
|
+
update: () => this.update.next(),
|
|
107
|
+
beforetoolbarcreated: (toolbar) => this.beforetoolbarcreated.next(toolbar),
|
|
108
|
+
beforegriddraw: (event) => this.beforegriddraw.next(event),
|
|
109
|
+
aftergriddraw: (event) => this.aftergriddraw.next(event),
|
|
110
|
+
afterchartdraw: () => this.afterchartdraw.next()
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
ngOnDestroy() {
|
|
114
|
+
if (this.flexmonster) {
|
|
115
|
+
this.flexmonster.dispose();
|
|
116
|
+
this.flexmonster = null;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
FlexmonsterPivot.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivot, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
121
|
+
FlexmonsterPivot.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FlexmonsterPivot, selector: "fm-pivot", inputs: { toolbar: "toolbar", licenseKey: "licenseKey", licenseFilePath: "licenseFilePath", width: "width", height: "height", componentFolder: "componentFolder", report: "report", shareReportConnection: "shareReportConnection", global: "global", accessibility: "accessibility", customizeAPIRequest: "customizeAPIRequest", customizeCell: "customizeCell", customizeChartElement: "customizeChartElement", customizeContextMenu: "customizeContextMenu", sortFieldsList: "sortFieldsList" }, outputs: { cellclick: "cellclick", celldoubleclick: "celldoubleclick", chartclick: "chartclick", dataerror: "dataerror", datafilecancelled: "datafilecancelled", dataloaded: "dataloaded", datachanged: "datachanged", fieldslistclose: "fieldslistclose", fieldslistopen: "fieldslistopen", filterclose: "filterclose", filteropen: "filteropen", drillthroughopen: "drillthroughopen", exportcomplete: "exportcomplete", exportstart: "exportstart", drillthroughclose: "drillthroughclose", fullscreen: "fullscreen", loadingdata: "loadingdata", loadinglocalization: "loadinglocalization", loadingolapstructure: "loadingolapstructure", loadingreportfile: "loadingreportfile", localizationerror: "localizationerror", localizationloaded: "localizationloaded", olapstructureerror: "olapstructureerror", olapstructureloaded: "olapstructureloaded", openingreportfile: "openingreportfile", printcomplete: "printcomplete", printstart: "printstart", querycomplete: "querycomplete", queryerror: "queryerror", ready: "ready", reportchange: "reportchange", reportcomplete: "reportcomplete", reportfilecancelled: "reportfilecancelled", reportfileerror: "reportfileerror", runningquery: "runningquery", unauthorizederror: "unauthorizederror", update: "update", beforetoolbarcreated: "beforetoolbarcreated", beforegriddraw: "beforegriddraw", aftergriddraw: "aftergriddraw", afterchartdraw: "afterchartdraw" }, ngImport: i0, template: '<div style="width:100%;height:100%;"><div class="fm-ng-wrapper"></div></div>', isInline: true });
|
|
122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivot, decorators: [{
|
|
123
|
+
type: Component,
|
|
124
|
+
args: [{
|
|
125
|
+
selector: 'fm-pivot',
|
|
126
|
+
template: '<div style="width:100%;height:100%;"><div class="fm-ng-wrapper"></div></div>',
|
|
127
|
+
//providers: [FlexmonsterPivotService]
|
|
128
|
+
}]
|
|
129
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { toolbar: [{
|
|
130
|
+
type: Input
|
|
131
|
+
}], licenseKey: [{
|
|
132
|
+
type: Input
|
|
133
|
+
}], licenseFilePath: [{
|
|
134
|
+
type: Input
|
|
135
|
+
}], width: [{
|
|
136
|
+
type: Input
|
|
137
|
+
}], height: [{
|
|
138
|
+
type: Input
|
|
139
|
+
}], componentFolder: [{
|
|
140
|
+
type: Input
|
|
141
|
+
}], report: [{
|
|
142
|
+
type: Input
|
|
143
|
+
}], shareReportConnection: [{
|
|
144
|
+
type: Input
|
|
145
|
+
}], global: [{
|
|
146
|
+
type: Input
|
|
147
|
+
}], accessibility: [{
|
|
148
|
+
type: Input
|
|
149
|
+
}], customizeAPIRequest: [{
|
|
150
|
+
type: Input
|
|
151
|
+
}], customizeCell: [{
|
|
152
|
+
type: Input
|
|
153
|
+
}], customizeChartElement: [{
|
|
154
|
+
type: Input
|
|
155
|
+
}], customizeContextMenu: [{
|
|
156
|
+
type: Input
|
|
157
|
+
}], sortFieldsList: [{
|
|
158
|
+
type: Input
|
|
159
|
+
}], cellclick: [{
|
|
160
|
+
type: Output
|
|
161
|
+
}], celldoubleclick: [{
|
|
162
|
+
type: Output
|
|
163
|
+
}], chartclick: [{
|
|
164
|
+
type: Output
|
|
165
|
+
}], dataerror: [{
|
|
166
|
+
type: Output
|
|
167
|
+
}], datafilecancelled: [{
|
|
168
|
+
type: Output
|
|
169
|
+
}], dataloaded: [{
|
|
170
|
+
type: Output
|
|
171
|
+
}], datachanged: [{
|
|
172
|
+
type: Output
|
|
173
|
+
}], fieldslistclose: [{
|
|
174
|
+
type: Output
|
|
175
|
+
}], fieldslistopen: [{
|
|
176
|
+
type: Output
|
|
177
|
+
}], filterclose: [{
|
|
178
|
+
type: Output
|
|
179
|
+
}], filteropen: [{
|
|
180
|
+
type: Output
|
|
181
|
+
}], drillthroughopen: [{
|
|
182
|
+
type: Output
|
|
183
|
+
}], exportcomplete: [{
|
|
184
|
+
type: Output
|
|
185
|
+
}], exportstart: [{
|
|
186
|
+
type: Output
|
|
187
|
+
}], drillthroughclose: [{
|
|
188
|
+
type: Output
|
|
189
|
+
}], fullscreen: [{
|
|
190
|
+
type: Output
|
|
191
|
+
}], loadingdata: [{
|
|
192
|
+
type: Output
|
|
193
|
+
}], loadinglocalization: [{
|
|
194
|
+
type: Output
|
|
195
|
+
}], loadingolapstructure: [{
|
|
196
|
+
type: Output
|
|
197
|
+
}], loadingreportfile: [{
|
|
198
|
+
type: Output
|
|
199
|
+
}], localizationerror: [{
|
|
200
|
+
type: Output
|
|
201
|
+
}], localizationloaded: [{
|
|
202
|
+
type: Output
|
|
203
|
+
}], olapstructureerror: [{
|
|
204
|
+
type: Output
|
|
205
|
+
}], olapstructureloaded: [{
|
|
206
|
+
type: Output
|
|
207
|
+
}], openingreportfile: [{
|
|
208
|
+
type: Output
|
|
209
|
+
}], printcomplete: [{
|
|
210
|
+
type: Output
|
|
211
|
+
}], printstart: [{
|
|
212
|
+
type: Output
|
|
213
|
+
}], querycomplete: [{
|
|
214
|
+
type: Output
|
|
215
|
+
}], queryerror: [{
|
|
216
|
+
type: Output
|
|
217
|
+
}], ready: [{
|
|
218
|
+
type: Output
|
|
219
|
+
}], reportchange: [{
|
|
220
|
+
type: Output
|
|
221
|
+
}], reportcomplete: [{
|
|
222
|
+
type: Output
|
|
223
|
+
}], reportfilecancelled: [{
|
|
224
|
+
type: Output
|
|
225
|
+
}], reportfileerror: [{
|
|
226
|
+
type: Output
|
|
227
|
+
}], runningquery: [{
|
|
228
|
+
type: Output
|
|
229
|
+
}], unauthorizederror: [{
|
|
230
|
+
type: Output
|
|
231
|
+
}], update: [{
|
|
232
|
+
type: Output
|
|
233
|
+
}], beforetoolbarcreated: [{
|
|
234
|
+
type: Output
|
|
235
|
+
}], beforegriddraw: [{
|
|
236
|
+
type: Output
|
|
237
|
+
}], aftergriddraw: [{
|
|
238
|
+
type: Output
|
|
239
|
+
}], afterchartdraw: [{
|
|
240
|
+
type: Output
|
|
241
241
|
}] } });
|
|
242
242
|
|
|
243
|
-
class FlexmonsterPivotModule {
|
|
244
|
-
}
|
|
245
|
-
FlexmonsterPivotModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
246
|
-
FlexmonsterPivotModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, declarations: [FlexmonsterPivot], imports: [CommonModule], exports: [FlexmonsterPivot] });
|
|
247
|
-
FlexmonsterPivotModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, imports: [CommonModule] });
|
|
248
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, decorators: [{
|
|
249
|
-
type: NgModule,
|
|
250
|
-
args: [{
|
|
251
|
-
imports: [
|
|
252
|
-
CommonModule
|
|
253
|
-
],
|
|
254
|
-
declarations: [FlexmonsterPivot],
|
|
255
|
-
exports: [FlexmonsterPivot]
|
|
256
|
-
}]
|
|
243
|
+
class FlexmonsterPivotModule {
|
|
244
|
+
}
|
|
245
|
+
FlexmonsterPivotModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
246
|
+
FlexmonsterPivotModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, declarations: [FlexmonsterPivot], imports: [CommonModule], exports: [FlexmonsterPivot] });
|
|
247
|
+
FlexmonsterPivotModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, imports: [CommonModule] });
|
|
248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FlexmonsterPivotModule, decorators: [{
|
|
249
|
+
type: NgModule,
|
|
250
|
+
args: [{
|
|
251
|
+
imports: [
|
|
252
|
+
CommonModule
|
|
253
|
+
],
|
|
254
|
+
declarations: [FlexmonsterPivot],
|
|
255
|
+
exports: [FlexmonsterPivot]
|
|
256
|
+
}]
|
|
257
257
|
}] });
|
|
258
258
|
|
|
259
|
-
/*
|
|
260
|
-
* Public API Surface of ngx-flexmonster
|
|
259
|
+
/*
|
|
260
|
+
* Public API Surface of ngx-flexmonster
|
|
261
261
|
*/
|
|
262
262
|
|
|
263
|
-
/**
|
|
264
|
-
* Generated bundle index. Do not edit.
|
|
263
|
+
/**
|
|
264
|
+
* Generated bundle index. Do not edit.
|
|
265
265
|
*/
|
|
266
266
|
|
|
267
267
|
export { FlexmonsterPivot, FlexmonsterPivotModule };
|