ngx-flexmonster 2.9.51-beta.2 → 2.9.51-beta.3
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/bundles/ngx-flexmonster.umd.js +234 -0
- package/bundles/ngx-flexmonster.umd.js.map +1 -0
- package/esm2015/lib/ngx-flexmonster.component.js +178 -0
- package/esm2015/lib/ngx-flexmonster.module.js +15 -0
- package/{esm2022/ngx-flexmonster.mjs → esm2015/ngx-flexmonster.js} +4 -4
- package/{esm2022/public-api.mjs → esm2015/public-api.js} +6 -6
- package/fesm2015/ngx-flexmonster.js +202 -0
- package/fesm2015/ngx-flexmonster.js.map +1 -0
- package/lib/ngx-flexmonster.component.d.ts +64 -67
- package/lib/ngx-flexmonster.module.d.ts +2 -8
- package/{index.d.ts → ngx-flexmonster.d.ts} +4 -5
- package/ngx-flexmonster.metadata.json +1 -0
- package/package.json +9 -15
- package/public-api.d.ts +2 -2
- package/esm2022/lib/ngx-flexmonster.component.mjs +0 -255
- package/esm2022/lib/ngx-flexmonster.module.mjs +0 -21
- package/fesm2022/ngx-flexmonster.mjs +0 -283
- package/fesm2022/ngx-flexmonster.mjs.map +0 -1
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import { EventEmitter, Component, ElementRef, Input, Output, NgModule } from '@angular/core';
|
|
2
|
+
import * as Flexmonster from 'flexmonster';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class FlexmonsterPivot {
|
|
6
|
+
constructor(el) {
|
|
7
|
+
// events
|
|
8
|
+
this.cellclick = new EventEmitter();
|
|
9
|
+
this.celldoubleclick = new EventEmitter();
|
|
10
|
+
this.chartclick = new EventEmitter();
|
|
11
|
+
this.dataerror = new EventEmitter();
|
|
12
|
+
this.datafilecancelled = new EventEmitter();
|
|
13
|
+
this.dataloaded = new EventEmitter();
|
|
14
|
+
this.datachanged = new EventEmitter();
|
|
15
|
+
this.fieldslistclose = new EventEmitter();
|
|
16
|
+
this.fieldslistopen = new EventEmitter();
|
|
17
|
+
this.filterclose = new EventEmitter();
|
|
18
|
+
this.filteropen = new EventEmitter();
|
|
19
|
+
this.drillthroughopen = new EventEmitter();
|
|
20
|
+
this.exportcomplete = new EventEmitter();
|
|
21
|
+
this.exportstart = new EventEmitter();
|
|
22
|
+
this.drillthroughclose = new EventEmitter();
|
|
23
|
+
this.fullscreen = new EventEmitter();
|
|
24
|
+
this.loadingdata = new EventEmitter();
|
|
25
|
+
this.loadinglocalization = new EventEmitter();
|
|
26
|
+
this.loadingolapstructure = new EventEmitter();
|
|
27
|
+
this.loadingreportfile = new EventEmitter();
|
|
28
|
+
this.localizationerror = new EventEmitter();
|
|
29
|
+
this.localizationloaded = new EventEmitter();
|
|
30
|
+
this.olapstructureerror = new EventEmitter();
|
|
31
|
+
this.olapstructureloaded = new EventEmitter();
|
|
32
|
+
this.openingreportfile = new EventEmitter();
|
|
33
|
+
this.printcomplete = new EventEmitter();
|
|
34
|
+
this.printstart = new EventEmitter();
|
|
35
|
+
this.querycomplete = new EventEmitter();
|
|
36
|
+
this.queryerror = new EventEmitter();
|
|
37
|
+
this.ready = new EventEmitter();
|
|
38
|
+
this.reportchange = new EventEmitter();
|
|
39
|
+
this.reportcomplete = new EventEmitter();
|
|
40
|
+
this.reportfilecancelled = new EventEmitter();
|
|
41
|
+
this.reportfileerror = new EventEmitter();
|
|
42
|
+
this.runningquery = new EventEmitter();
|
|
43
|
+
this.unauthorizederror = new EventEmitter();
|
|
44
|
+
this.update = new EventEmitter();
|
|
45
|
+
this.beforetoolbarcreated = new EventEmitter();
|
|
46
|
+
this.beforegriddraw = new EventEmitter();
|
|
47
|
+
this.aftergriddraw = new EventEmitter();
|
|
48
|
+
this.afterchartdraw = new EventEmitter();
|
|
49
|
+
this.root = el.nativeElement;
|
|
50
|
+
}
|
|
51
|
+
ngOnInit() {
|
|
52
|
+
console.log(Flexmonster);
|
|
53
|
+
this.flexmonster = new window.Flexmonster({
|
|
54
|
+
container: this.root.getElementsByClassName('fm-ng-wrapper')[0],
|
|
55
|
+
componentFolder: this.componentFolder,
|
|
56
|
+
width: this.width,
|
|
57
|
+
height: this.height,
|
|
58
|
+
toolbar: this.toolbar,
|
|
59
|
+
licenseKey: this.licenseKey,
|
|
60
|
+
licenseFilePath: this.licenseFilePath,
|
|
61
|
+
report: this.report,
|
|
62
|
+
global: this.global,
|
|
63
|
+
accessibility: this.accessibility,
|
|
64
|
+
shareReportConnection: this.shareReportConnection,
|
|
65
|
+
customizeAPIRequest: this.customizeAPIRequest,
|
|
66
|
+
customizeCell: this.customizeCell,
|
|
67
|
+
customizeChartElement: this.customizeChartElement,
|
|
68
|
+
customizeContextMenu: this.customizeContextMenu,
|
|
69
|
+
sortFieldsList: this.sortFieldsList,
|
|
70
|
+
cellclick: (cell) => this.cellclick.next(cell),
|
|
71
|
+
celldoubleclick: (cell) => this.celldoubleclick.next(cell),
|
|
72
|
+
chartclick: (event) => this.chartclick.next(event),
|
|
73
|
+
datachanged: (event) => this.datachanged.next(event),
|
|
74
|
+
dataerror: (event) => this.dataerror.next(event),
|
|
75
|
+
datafilecancelled: () => this.datafilecancelled.next(),
|
|
76
|
+
dataloaded: () => this.dataloaded.next(),
|
|
77
|
+
fieldslistclose: () => this.fieldslistclose.next(),
|
|
78
|
+
fieldslistopen: () => this.fieldslistopen.next(),
|
|
79
|
+
filterclose: () => this.filterclose.next(),
|
|
80
|
+
filteropen: (event) => this.filteropen.next(event),
|
|
81
|
+
drillthroughopen: (cell) => this.drillthroughopen.next(cell),
|
|
82
|
+
exportcomplete: () => this.exportcomplete.next(),
|
|
83
|
+
exportstart: () => this.exportstart.next(),
|
|
84
|
+
drillthroughclose: () => this.drillthroughclose.next(),
|
|
85
|
+
loadingdata: () => this.loadingdata.next(),
|
|
86
|
+
loadinglocalization: () => this.loadinglocalization.next(),
|
|
87
|
+
loadingolapstructure: () => this.loadingolapstructure.next(),
|
|
88
|
+
loadingreportfile: () => this.loadingreportfile.next(),
|
|
89
|
+
localizationerror: () => this.localizationerror.next(),
|
|
90
|
+
localizationloaded: () => this.localizationloaded.next(),
|
|
91
|
+
olapstructureerror: (event) => this.olapstructureerror.next(event),
|
|
92
|
+
olapstructureloaded: () => this.olapstructureloaded.next(),
|
|
93
|
+
openingreportfile: () => this.openingreportfile.next(),
|
|
94
|
+
printcomplete: () => this.printcomplete.next(),
|
|
95
|
+
printstart: () => this.printstart.next(),
|
|
96
|
+
querycomplete: () => this.querycomplete.next(),
|
|
97
|
+
queryerror: (event) => this.queryerror.next(event),
|
|
98
|
+
ready: () => this.ready.next(this.flexmonster),
|
|
99
|
+
reportchange: () => this.reportchange.next(),
|
|
100
|
+
reportcomplete: () => this.reportcomplete.next(),
|
|
101
|
+
reportfilecancelled: () => this.reportfilecancelled.next(),
|
|
102
|
+
reportfileerror: () => this.reportfileerror.next(),
|
|
103
|
+
runningquery: () => this.runningquery.next(),
|
|
104
|
+
unauthorizederror: (done) => this.unauthorizederror.next(done),
|
|
105
|
+
update: () => this.update.next(),
|
|
106
|
+
beforetoolbarcreated: (toolbar) => this.beforetoolbarcreated.next(toolbar),
|
|
107
|
+
beforegriddraw: (event) => this.beforegriddraw.next(event),
|
|
108
|
+
aftergriddraw: (event) => this.aftergriddraw.next(event),
|
|
109
|
+
afterchartdraw: () => this.afterchartdraw.next()
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
FlexmonsterPivot.decorators = [
|
|
114
|
+
{ type: Component, args: [{
|
|
115
|
+
selector: 'fm-pivot',
|
|
116
|
+
template: '<div style="width:100%;height:100%;"><div class="fm-ng-wrapper"></div></div>'
|
|
117
|
+
},] }
|
|
118
|
+
];
|
|
119
|
+
FlexmonsterPivot.ctorParameters = () => [
|
|
120
|
+
{ type: ElementRef }
|
|
121
|
+
];
|
|
122
|
+
FlexmonsterPivot.propDecorators = {
|
|
123
|
+
toolbar: [{ type: Input }],
|
|
124
|
+
licenseKey: [{ type: Input }],
|
|
125
|
+
licenseFilePath: [{ type: Input }],
|
|
126
|
+
width: [{ type: Input }],
|
|
127
|
+
height: [{ type: Input }],
|
|
128
|
+
componentFolder: [{ type: Input }],
|
|
129
|
+
report: [{ type: Input }],
|
|
130
|
+
shareReportConnection: [{ type: Input }],
|
|
131
|
+
global: [{ type: Input }],
|
|
132
|
+
accessibility: [{ type: Input }],
|
|
133
|
+
customizeAPIRequest: [{ type: Input }],
|
|
134
|
+
customizeCell: [{ type: Input }],
|
|
135
|
+
customizeChartElement: [{ type: Input }],
|
|
136
|
+
customizeContextMenu: [{ type: Input }],
|
|
137
|
+
sortFieldsList: [{ type: Input }],
|
|
138
|
+
cellclick: [{ type: Output }],
|
|
139
|
+
celldoubleclick: [{ type: Output }],
|
|
140
|
+
chartclick: [{ type: Output }],
|
|
141
|
+
dataerror: [{ type: Output }],
|
|
142
|
+
datafilecancelled: [{ type: Output }],
|
|
143
|
+
dataloaded: [{ type: Output }],
|
|
144
|
+
datachanged: [{ type: Output }],
|
|
145
|
+
fieldslistclose: [{ type: Output }],
|
|
146
|
+
fieldslistopen: [{ type: Output }],
|
|
147
|
+
filterclose: [{ type: Output }],
|
|
148
|
+
filteropen: [{ type: Output }],
|
|
149
|
+
drillthroughopen: [{ type: Output }],
|
|
150
|
+
exportcomplete: [{ type: Output }],
|
|
151
|
+
exportstart: [{ type: Output }],
|
|
152
|
+
drillthroughclose: [{ type: Output }],
|
|
153
|
+
fullscreen: [{ type: Output }],
|
|
154
|
+
loadingdata: [{ type: Output }],
|
|
155
|
+
loadinglocalization: [{ type: Output }],
|
|
156
|
+
loadingolapstructure: [{ type: Output }],
|
|
157
|
+
loadingreportfile: [{ type: Output }],
|
|
158
|
+
localizationerror: [{ type: Output }],
|
|
159
|
+
localizationloaded: [{ type: Output }],
|
|
160
|
+
olapstructureerror: [{ type: Output }],
|
|
161
|
+
olapstructureloaded: [{ type: Output }],
|
|
162
|
+
openingreportfile: [{ type: Output }],
|
|
163
|
+
printcomplete: [{ type: Output }],
|
|
164
|
+
printstart: [{ type: Output }],
|
|
165
|
+
querycomplete: [{ type: Output }],
|
|
166
|
+
queryerror: [{ type: Output }],
|
|
167
|
+
ready: [{ type: Output }],
|
|
168
|
+
reportchange: [{ type: Output }],
|
|
169
|
+
reportcomplete: [{ type: Output }],
|
|
170
|
+
reportfilecancelled: [{ type: Output }],
|
|
171
|
+
reportfileerror: [{ type: Output }],
|
|
172
|
+
runningquery: [{ type: Output }],
|
|
173
|
+
unauthorizederror: [{ type: Output }],
|
|
174
|
+
update: [{ type: Output }],
|
|
175
|
+
beforetoolbarcreated: [{ type: Output }],
|
|
176
|
+
beforegriddraw: [{ type: Output }],
|
|
177
|
+
aftergriddraw: [{ type: Output }],
|
|
178
|
+
afterchartdraw: [{ type: Output }]
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
class FlexmonsterPivotModule {
|
|
182
|
+
}
|
|
183
|
+
FlexmonsterPivotModule.decorators = [
|
|
184
|
+
{ type: NgModule, args: [{
|
|
185
|
+
imports: [
|
|
186
|
+
CommonModule
|
|
187
|
+
],
|
|
188
|
+
declarations: [FlexmonsterPivot],
|
|
189
|
+
exports: [FlexmonsterPivot]
|
|
190
|
+
},] }
|
|
191
|
+
];
|
|
192
|
+
|
|
193
|
+
/*
|
|
194
|
+
* Public API Surface of ngx-flexmonster
|
|
195
|
+
*/
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Generated bundle index. Do not edit.
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
export { FlexmonsterPivot, FlexmonsterPivotModule };
|
|
202
|
+
//# sourceMappingURL=ngx-flexmonster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ngx-flexmonster.js","sources":["../../../projects/ngx-flexmonster/src/lib/ngx-flexmonster.component.ts","../../../projects/ngx-flexmonster/src/lib/ngx-flexmonster.module.ts","../../../projects/ngx-flexmonster/src/public-api.ts","../../../projects/ngx-flexmonster/src/ngx-flexmonster.ts"],"sourcesContent":["import { Component, ElementRef, Input, Output, EventEmitter, OnInit } from '@angular/core';\r\nimport * as Flexmonster from 'flexmonster';\r\n\r\n@Component({\r\n selector: 'fm-pivot',\r\n template: '<div style=\"width:100%;height:100%;\"><div class=\"fm-ng-wrapper\"></div></div>',\r\n //providers: [FlexmonsterPivotService]\r\n})\r\nexport class FlexmonsterPivot { // implements OnInit\r\n // params\r\n @Input() toolbar: boolean;\r\n @Input() licenseKey: string;\r\n @Input() licenseFilePath: string;\r\n @Input() width: string | number;\r\n @Input() height: string | number;\r\n @Input() componentFolder: string;\r\n @Input() report: Flexmonster.Report | string;\r\n @Input() shareReportConnection: Flexmonster.APIClientOptions;\r\n @Input() global: Flexmonster.Report;\r\n @Input() accessibility: Flexmonster.AccessibilityOptions;\r\n @Input() customizeAPIRequest: (request: Object) => Object;\r\n @Input() customizeCell: (cell: Flexmonster.CellBuilder, data: Flexmonster.CellData) => void;\r\n @Input() customizeChartElement: (element: Element, data: Flexmonster.ChartData | Flexmonster.ChartLegendItemData) => void;\r\n @Input() customizeContextMenu: (cell: Flexmonster.ContextMenuItem[], data: Flexmonster.CellData | Flexmonster.ChartData, viewType: string) => Flexmonster.ContextMenuItem[];\r\n @Input() sortFieldsList: (first: Flexmonster.FieldsListSortingItem, second: Flexmonster.FieldsListSortingItem, fieldsListType: string) => number;\r\n\r\n // events\r\n @Output() cellclick: EventEmitter<Flexmonster.CellData> = new EventEmitter();\r\n @Output() celldoubleclick: EventEmitter<Flexmonster.CellData> = new EventEmitter();\r\n @Output() chartclick: EventEmitter<Flexmonster.ChartData> = new EventEmitter();\r\n @Output() dataerror: EventEmitter<Flexmonster.ErrorEvent> = new EventEmitter();\r\n @Output() datafilecancelled: EventEmitter<void> = new EventEmitter();\r\n @Output() dataloaded: EventEmitter<void> = new EventEmitter();\r\n @Output() datachanged: EventEmitter<Object> = new EventEmitter();\r\n @Output() fieldslistclose: EventEmitter<void> = new EventEmitter();\r\n @Output() fieldslistopen: EventEmitter<void> = new EventEmitter();\r\n @Output() filterclose: EventEmitter<void> = new EventEmitter();\r\n @Output() filteropen: EventEmitter<Object> = new EventEmitter();\r\n @Output() drillthroughopen: EventEmitter<Flexmonster.CellData | Flexmonster.ChartData> = new EventEmitter();\r\n @Output() exportcomplete: EventEmitter<void> = new EventEmitter();\r\n @Output() exportstart: EventEmitter<void> = new EventEmitter();\r\n @Output() drillthroughclose: EventEmitter<void> = new EventEmitter();\r\n @Output() fullscreen: EventEmitter<void> = new EventEmitter();\r\n @Output() loadingdata: EventEmitter<void> = new EventEmitter();\r\n @Output() loadinglocalization: EventEmitter<void> = new EventEmitter();\r\n @Output() loadingolapstructure: EventEmitter<void> = new EventEmitter();\r\n @Output() loadingreportfile: EventEmitter<void> = new EventEmitter();\r\n @Output() localizationerror: EventEmitter<void> = new EventEmitter();\r\n @Output() localizationloaded: EventEmitter<void> = new EventEmitter();\r\n @Output() olapstructureerror: EventEmitter<Flexmonster.ErrorEvent> = new EventEmitter();\r\n @Output() olapstructureloaded: EventEmitter<void> = new EventEmitter();\r\n @Output() openingreportfile: EventEmitter<void> = new EventEmitter();\r\n @Output() printcomplete: EventEmitter<void> = new EventEmitter();\r\n @Output() printstart: EventEmitter<void> = new EventEmitter();\r\n @Output() querycomplete: EventEmitter<void> = new EventEmitter();\r\n @Output() queryerror: EventEmitter<Flexmonster.ErrorEvent> = new EventEmitter();\r\n @Output() ready: EventEmitter<Flexmonster.Pivot> = new EventEmitter();\r\n @Output() reportchange: EventEmitter<void> = new EventEmitter();\r\n @Output() reportcomplete: EventEmitter<void> = new EventEmitter();\r\n @Output() reportfilecancelled: EventEmitter<void> = new EventEmitter();\r\n @Output() reportfileerror: EventEmitter<void> = new EventEmitter();\r\n @Output() runningquery: EventEmitter<void> = new EventEmitter();\r\n @Output() unauthorizederror: EventEmitter<Flexmonster.UnauthorizedErrorHandler> = new EventEmitter();\r\n @Output() update: EventEmitter<void> = new EventEmitter();\r\n @Output() beforetoolbarcreated: EventEmitter<Flexmonster.Toolbar> = new EventEmitter();\r\n @Output() beforegriddraw: EventEmitter<Object> = new EventEmitter();\r\n @Output() aftergriddraw: EventEmitter<Object> = new EventEmitter();\r\n @Output() afterchartdraw: EventEmitter<void> = new EventEmitter();\r\n // api\r\n public flexmonster: Flexmonster.Pivot;\r\n // private\r\n private root: HTMLElement;\r\n\r\n constructor(el: ElementRef) {\r\n this.root = <HTMLElement>el.nativeElement;\r\n }\r\n\r\n ngOnInit() {\r\n console.log(Flexmonster)\r\n this.flexmonster = new window.Flexmonster({\r\n container: this.root.getElementsByClassName('fm-ng-wrapper')[0],\r\n componentFolder: this.componentFolder,\r\n width: this.width,\r\n height: this.height,\r\n toolbar: this.toolbar,\r\n licenseKey: this.licenseKey,\r\n licenseFilePath: this.licenseFilePath,\r\n report: this.report,\r\n global: this.global,\r\n accessibility: this.accessibility,\r\n shareReportConnection: this.shareReportConnection,\r\n customizeAPIRequest: this.customizeAPIRequest,\r\n customizeCell: this.customizeCell,\r\n customizeChartElement: this.customizeChartElement,\r\n customizeContextMenu: this.customizeContextMenu,\r\n sortFieldsList: this.sortFieldsList,\r\n cellclick: (cell: Flexmonster.CellData) => this.cellclick.next(cell),\r\n celldoubleclick: (cell: Flexmonster.CellData) => this.celldoubleclick.next(cell),\r\n chartclick: (event: Flexmonster.ChartData) => this.chartclick.next(event),\r\n datachanged: (event: Object) => this.datachanged.next(event),\r\n dataerror: (event: Flexmonster.ErrorEvent | undefined) => this.dataerror.next(event!),\r\n datafilecancelled: () => this.datafilecancelled.next(),\r\n dataloaded: () => this.dataloaded.next(),\r\n fieldslistclose: () => this.fieldslistclose.next(),\r\n fieldslistopen: () => this.fieldslistopen.next(),\r\n filterclose: () => this.filterclose.next(),\r\n filteropen: (event: Object) => this.filteropen.next(event),\r\n drillthroughopen: (cell: Flexmonster.CellData | Flexmonster.ChartData) => this.drillthroughopen.next(cell),\r\n exportcomplete: () => this.exportcomplete.next(),\r\n exportstart: () => this.exportstart.next(),\r\n drillthroughclose: () => this.drillthroughclose.next(),\r\n loadingdata: () => this.loadingdata.next(),\r\n loadinglocalization: () => this.loadinglocalization.next(),\r\n loadingolapstructure: () => this.loadingolapstructure.next(),\r\n loadingreportfile: () => this.loadingreportfile.next(),\r\n localizationerror: () => this.localizationerror.next(),\r\n localizationloaded: () => this.localizationloaded.next(),\r\n olapstructureerror: (event: Flexmonster.ErrorEvent | undefined) => this.olapstructureerror.next(event!),\r\n olapstructureloaded: () => this.olapstructureloaded.next(),\r\n openingreportfile: () => this.openingreportfile.next(),\r\n printcomplete: () => this.printcomplete.next(),\r\n printstart: () => this.printstart.next(),\r\n querycomplete: () => this.querycomplete.next(),\r\n queryerror: (event: Flexmonster.ErrorEvent | undefined) => this.queryerror.next(event!),\r\n ready: () => this.ready.next(this.flexmonster),\r\n reportchange: () => this.reportchange.next(),\r\n reportcomplete: () => this.reportcomplete.next(),\r\n reportfilecancelled: () => this.reportfilecancelled.next(),\r\n reportfileerror: () => this.reportfileerror.next(),\r\n runningquery: () => this.runningquery.next(),\r\n unauthorizederror: (done: Flexmonster.UnauthorizedErrorHandler) => this.unauthorizederror.next(done),\r\n update: () => this.update.next(),\r\n beforetoolbarcreated: (toolbar: Flexmonster.Toolbar) => this.beforetoolbarcreated.next(toolbar),\r\n beforegriddraw: (event: Object) => this.beforegriddraw.next(event),\r\n aftergriddraw: (event: Object) => this.aftergriddraw.next(event),\r\n afterchartdraw: () => this.afterchartdraw.next()\r\n });\r\n }\r\n}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n\r\nimport { FlexmonsterPivot } from './ngx-flexmonster.component';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule\r\n ],\r\n declarations: [FlexmonsterPivot],\r\n exports: [FlexmonsterPivot]\r\n})\r\nexport class FlexmonsterPivotModule { }\r\n","/*\r\n * Public API Surface of ngx-flexmonster\r\n */\r\n\r\n//export * from './lib/ngx-flexmonster.service';\r\nexport * from './lib/ngx-flexmonster.component';\r\nexport * from './lib/ngx-flexmonster.module';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -1,67 +1,64 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import * as Flexmonster from 'flexmonster';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlexmonsterPivot, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlexmonsterPivot, "fm-pivot", never, { "toolbar": { "alias": "toolbar"; "required": false; }; "licenseKey": { "alias": "licenseKey"; "required": false; }; "licenseFilePath": { "alias": "licenseFilePath"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "componentFolder": { "alias": "componentFolder"; "required": false; }; "report": { "alias": "report"; "required": false; }; "shareReportConnection": { "alias": "shareReportConnection"; "required": false; }; "global": { "alias": "global"; "required": false; }; "accessibility": { "alias": "accessibility"; "required": false; }; "customizeAPIRequest": { "alias": "customizeAPIRequest"; "required": false; }; "customizeCell": { "alias": "customizeCell"; "required": false; }; "customizeChartElement": { "alias": "customizeChartElement"; "required": false; }; "customizeContextMenu": { "alias": "customizeContextMenu"; "required": false; }; "sortFieldsList": { "alias": "sortFieldsList"; "required": false; }; }, { "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"; }, never, never, false, never>;
|
|
67
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as Flexmonster from 'flexmonster';
|
|
3
|
+
export declare class FlexmonsterPivot {
|
|
4
|
+
toolbar: boolean;
|
|
5
|
+
licenseKey: string;
|
|
6
|
+
licenseFilePath: string;
|
|
7
|
+
width: string | number;
|
|
8
|
+
height: string | number;
|
|
9
|
+
componentFolder: string;
|
|
10
|
+
report: Flexmonster.Report | string;
|
|
11
|
+
shareReportConnection: Flexmonster.APIClientOptions;
|
|
12
|
+
global: Flexmonster.Report;
|
|
13
|
+
accessibility: Flexmonster.AccessibilityOptions;
|
|
14
|
+
customizeAPIRequest: (request: Object) => Object;
|
|
15
|
+
customizeCell: (cell: Flexmonster.CellBuilder, data: Flexmonster.CellData) => void;
|
|
16
|
+
customizeChartElement: (element: Element, data: Flexmonster.ChartData | Flexmonster.ChartLegendItemData) => void;
|
|
17
|
+
customizeContextMenu: (cell: Flexmonster.ContextMenuItem[], data: Flexmonster.CellData | Flexmonster.ChartData, viewType: string) => Flexmonster.ContextMenuItem[];
|
|
18
|
+
sortFieldsList: (first: Flexmonster.FieldsListSortingItem, second: Flexmonster.FieldsListSortingItem, fieldsListType: string) => number;
|
|
19
|
+
cellclick: EventEmitter<Flexmonster.CellData>;
|
|
20
|
+
celldoubleclick: EventEmitter<Flexmonster.CellData>;
|
|
21
|
+
chartclick: EventEmitter<Flexmonster.ChartData>;
|
|
22
|
+
dataerror: EventEmitter<Flexmonster.ErrorEvent>;
|
|
23
|
+
datafilecancelled: EventEmitter<void>;
|
|
24
|
+
dataloaded: EventEmitter<void>;
|
|
25
|
+
datachanged: EventEmitter<Object>;
|
|
26
|
+
fieldslistclose: EventEmitter<void>;
|
|
27
|
+
fieldslistopen: EventEmitter<void>;
|
|
28
|
+
filterclose: EventEmitter<void>;
|
|
29
|
+
filteropen: EventEmitter<Object>;
|
|
30
|
+
drillthroughopen: EventEmitter<Flexmonster.CellData | Flexmonster.ChartData>;
|
|
31
|
+
exportcomplete: EventEmitter<void>;
|
|
32
|
+
exportstart: EventEmitter<void>;
|
|
33
|
+
drillthroughclose: EventEmitter<void>;
|
|
34
|
+
fullscreen: EventEmitter<void>;
|
|
35
|
+
loadingdata: EventEmitter<void>;
|
|
36
|
+
loadinglocalization: EventEmitter<void>;
|
|
37
|
+
loadingolapstructure: EventEmitter<void>;
|
|
38
|
+
loadingreportfile: EventEmitter<void>;
|
|
39
|
+
localizationerror: EventEmitter<void>;
|
|
40
|
+
localizationloaded: EventEmitter<void>;
|
|
41
|
+
olapstructureerror: EventEmitter<Flexmonster.ErrorEvent>;
|
|
42
|
+
olapstructureloaded: EventEmitter<void>;
|
|
43
|
+
openingreportfile: EventEmitter<void>;
|
|
44
|
+
printcomplete: EventEmitter<void>;
|
|
45
|
+
printstart: EventEmitter<void>;
|
|
46
|
+
querycomplete: EventEmitter<void>;
|
|
47
|
+
queryerror: EventEmitter<Flexmonster.ErrorEvent>;
|
|
48
|
+
ready: EventEmitter<Flexmonster.Pivot>;
|
|
49
|
+
reportchange: EventEmitter<void>;
|
|
50
|
+
reportcomplete: EventEmitter<void>;
|
|
51
|
+
reportfilecancelled: EventEmitter<void>;
|
|
52
|
+
reportfileerror: EventEmitter<void>;
|
|
53
|
+
runningquery: EventEmitter<void>;
|
|
54
|
+
unauthorizederror: EventEmitter<Flexmonster.UnauthorizedErrorHandler>;
|
|
55
|
+
update: EventEmitter<void>;
|
|
56
|
+
beforetoolbarcreated: EventEmitter<Flexmonster.Toolbar>;
|
|
57
|
+
beforegriddraw: EventEmitter<Object>;
|
|
58
|
+
aftergriddraw: EventEmitter<Object>;
|
|
59
|
+
afterchartdraw: EventEmitter<void>;
|
|
60
|
+
flexmonster: Flexmonster.Pivot;
|
|
61
|
+
private root;
|
|
62
|
+
constructor(el: ElementRef);
|
|
63
|
+
ngOnInit(): void;
|
|
64
|
+
}
|
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class FlexmonsterPivotModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlexmonsterPivotModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FlexmonsterPivotModule, [typeof i1.FlexmonsterPivot], [typeof i2.CommonModule], [typeof i1.FlexmonsterPivot]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FlexmonsterPivotModule>;
|
|
8
|
-
}
|
|
1
|
+
export declare class FlexmonsterPivotModule {
|
|
2
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":4,"metadata":{"FlexmonsterPivot":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"fm-pivot","template":"<div style=\"width:100%;height:100%;\"><div class=\"fm-ng-wrapper\"></div></div>"}]}],"members":{"toolbar":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":10,"character":3}}]}],"licenseKey":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":11,"character":3}}]}],"licenseFilePath":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":3}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":13,"character":3}}]}],"height":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":14,"character":3}}]}],"componentFolder":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":15,"character":3}}]}],"report":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":16,"character":3}}]}],"shareReportConnection":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":17,"character":3}}]}],"global":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":18,"character":3}}]}],"accessibility":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":19,"character":3}}]}],"customizeAPIRequest":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":20,"character":3}}]}],"customizeCell":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":21,"character":3}}]}],"customizeChartElement":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":22,"character":3}}]}],"customizeContextMenu":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":23,"character":3}}]}],"sortFieldsList":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":3}}]}],"cellclick":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":27,"character":3}}]}],"celldoubleclick":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":28,"character":3}}]}],"chartclick":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":29,"character":3}}]}],"dataerror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":30,"character":3}}]}],"datafilecancelled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":31,"character":3}}]}],"dataloaded":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":32,"character":3}}]}],"datachanged":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":33,"character":3}}]}],"fieldslistclose":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":34,"character":3}}]}],"fieldslistopen":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":35,"character":3}}]}],"filterclose":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":36,"character":3}}]}],"filteropen":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":37,"character":3}}]}],"drillthroughopen":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":38,"character":3}}]}],"exportcomplete":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":39,"character":3}}]}],"exportstart":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":40,"character":3}}]}],"drillthroughclose":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":41,"character":3}}]}],"fullscreen":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":42,"character":3}}]}],"loadingdata":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":43,"character":3}}]}],"loadinglocalization":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":44,"character":3}}]}],"loadingolapstructure":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":45,"character":3}}]}],"loadingreportfile":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":46,"character":3}}]}],"localizationerror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":47,"character":3}}]}],"localizationloaded":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":48,"character":3}}]}],"olapstructureerror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":49,"character":3}}]}],"olapstructureloaded":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":50,"character":3}}]}],"openingreportfile":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":51,"character":3}}]}],"printcomplete":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":52,"character":3}}]}],"printstart":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":53,"character":3}}]}],"querycomplete":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":54,"character":3}}]}],"queryerror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":55,"character":3}}]}],"ready":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":56,"character":3}}]}],"reportchange":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":57,"character":3}}]}],"reportcomplete":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":58,"character":3}}]}],"reportfilecancelled":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":59,"character":3}}]}],"reportfileerror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":60,"character":3}}]}],"runningquery":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":61,"character":3}}]}],"unauthorizederror":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":62,"character":3}}]}],"update":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":63,"character":3}}]}],"beforetoolbarcreated":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":64,"character":3}}]}],"beforegriddraw":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":65,"character":3}}]}],"aftergriddraw":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":66,"character":3}}]}],"afterchartdraw":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":67,"character":3}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":73,"character":18}]}],"ngOnInit":[{"__symbolic":"method"}]}},"FlexmonsterPivotModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":5,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":7,"character":4}],"declarations":[{"__symbolic":"reference","name":"FlexmonsterPivot"}],"exports":[{"__symbolic":"reference","name":"FlexmonsterPivot"}]}]}],"members":{}}},"origins":{"FlexmonsterPivot":"./lib/ngx-flexmonster.component","FlexmonsterPivotModule":"./lib/ngx-flexmonster.module"},"importAs":"ngx-flexmonster"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-flexmonster",
|
|
3
|
-
"version": "2.9.51-beta.
|
|
3
|
+
"version": "2.9.51-beta.3",
|
|
4
4
|
"description": "Angular 12+ Module for Flexmonster Pivot Table & Charts",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -24,20 +24,14 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"flexmonster": "2.9.51",
|
|
27
|
-
"tslib": "^2.
|
|
27
|
+
"tslib": "^2.2.0"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"types": "./index.d.ts",
|
|
38
|
-
"esm2022": "./esm2022/ngx-flexmonster.mjs",
|
|
39
|
-
"esm": "./esm2022/ngx-flexmonster.mjs",
|
|
40
|
-
"default": "./fesm2022/ngx-flexmonster.mjs"
|
|
41
|
-
}
|
|
42
|
-
}
|
|
30
|
+
"main": "bundles/ngx-flexmonster.umd.js",
|
|
31
|
+
"module": "fesm2015/ngx-flexmonster.js",
|
|
32
|
+
"es2015": "fesm2015/ngx-flexmonster.js",
|
|
33
|
+
"esm2015": "esm2015/ngx-flexmonster.js",
|
|
34
|
+
"fesm2015": "fesm2015/ngx-flexmonster.js",
|
|
35
|
+
"typings": "ngx-flexmonster.d.ts",
|
|
36
|
+
"metadata": "ngx-flexmonster.metadata.json"
|
|
43
37
|
}
|
package/public-api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './lib/ngx-flexmonster.component';
|
|
2
|
-
export * from './lib/ngx-flexmonster.module';
|
|
1
|
+
export * from './lib/ngx-flexmonster.component';
|
|
2
|
+
export * from './lib/ngx-flexmonster.module';
|