ngx-wapp-components 1.0.7 → 1.0.9
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/esm2020/lib/icons/wapping-icons/wapp-icons.component.mjs +1 -21
- package/esm2020/lib/report/w-powerbi-report/w-powerbi-report.component.mjs +201 -0
- package/esm2020/lib/shared/models/embed-config.model.mjs +2 -0
- package/esm2020/lib/wapp-components.module.mjs +16 -7
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/ngx-wapp-components.mjs +214 -28
- package/fesm2015/ngx-wapp-components.mjs.map +1 -1
- package/fesm2020/ngx-wapp-components.mjs +212 -28
- package/fesm2020/ngx-wapp-components.mjs.map +1 -1
- package/lib/report/w-powerbi-report/w-powerbi-report.component.d.ts +42 -0
- package/lib/shared/models/embed-config.model.d.ts +7 -0
- package/lib/wapp-components.module.d.ts +32 -30
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, Component, forwardRef, Input, EventEmitter, Output, ChangeDetectionStrategy, ViewChild, Pipe, NgModule } from '@angular/core';
|
|
2
|
+
import { Injectable, Component, forwardRef, Input, EventEmitter, Output, ChangeDetectionStrategy, ViewChild, Pipe, HostListener, NgModule } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/forms';
|
|
4
4
|
import { NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
5
5
|
import * as i2$1 from '@angular/common';
|
|
@@ -49,6 +49,8 @@ import * as i13 from 'primeng/selectbutton';
|
|
|
49
49
|
import { SelectButtonModule } from 'primeng/selectbutton';
|
|
50
50
|
import * as i12 from 'angular2-query-builder';
|
|
51
51
|
import { QueryBuilderModule, QueryBuilderComponent } from 'angular2-query-builder';
|
|
52
|
+
import * as i3$3 from 'powerbi-client-angular';
|
|
53
|
+
import { PowerBIReportEmbedComponent, PowerBIEmbedModule } from 'powerbi-client-angular';
|
|
52
54
|
import * as i1$1 from '@angular/cdk/clipboard';
|
|
53
55
|
import * as i2$2 from 'ngx-highlightjs';
|
|
54
56
|
import { HighlightModule, HIGHLIGHT_OPTIONS } from 'ngx-highlightjs';
|
|
@@ -56,6 +58,8 @@ import * as i1$2 from 'primeng/api';
|
|
|
56
58
|
import { ConfirmationService } from 'primeng/api';
|
|
57
59
|
import { BehaviorSubject, switchMap, forkJoin, map, of, tap } from 'rxjs';
|
|
58
60
|
import { filter } from 'rxjs/operators';
|
|
61
|
+
import { __awaiter } from 'tslib';
|
|
62
|
+
import { models } from 'powerbi-client';
|
|
59
63
|
|
|
60
64
|
class WappComponentsService {
|
|
61
65
|
constructor() { }
|
|
@@ -409,26 +413,6 @@ const wappingIcons = {
|
|
|
409
413
|
};
|
|
410
414
|
|
|
411
415
|
class WappIconsComponent {
|
|
412
|
-
/* @Input()
|
|
413
|
-
set name(iconName: string) {
|
|
414
|
-
this.element.nativeElement.innerHTML = wappingIcons[iconName] || null;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
@Input()
|
|
418
|
-
set width(width: number) {
|
|
419
|
-
var p = document.getElementById('icon');
|
|
420
|
-
p!.style.width = width + 'px';
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
@Input()
|
|
424
|
-
set height(height: number) {
|
|
425
|
-
var p = document.getElementById('icon');
|
|
426
|
-
p!.style.height = height + 'px';
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
@Input() set color(fillColor: string) {
|
|
430
|
-
this.applyColorToPaths(fillColor);
|
|
431
|
-
} */
|
|
432
416
|
constructor(element) {
|
|
433
417
|
this.element = element;
|
|
434
418
|
}
|
|
@@ -2251,6 +2235,201 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
2251
2235
|
args: ['clearClicked']
|
|
2252
2236
|
}] } });
|
|
2253
2237
|
|
|
2238
|
+
class WPowerbiReportComponent {
|
|
2239
|
+
constructor(elementRef) {
|
|
2240
|
+
this.elementRef = elementRef;
|
|
2241
|
+
this.hasReportFilters = false;
|
|
2242
|
+
this.showReportFilters = false;
|
|
2243
|
+
this.filterPanelPosition = "bottom";
|
|
2244
|
+
this.showPageNavigation = true;
|
|
2245
|
+
this.showPrintButton = true;
|
|
2246
|
+
this.showFullScreenButton = true;
|
|
2247
|
+
this.showVisualHeaders = false;
|
|
2248
|
+
this.showRefreshButton = false;
|
|
2249
|
+
this.zoomRatio = 0.00175;
|
|
2250
|
+
this.refreshNotAllowed = new EventEmitter();
|
|
2251
|
+
this.reportClass = 'report-container';
|
|
2252
|
+
this.reportConfig = {
|
|
2253
|
+
type: 'report',
|
|
2254
|
+
embedUrl: undefined,
|
|
2255
|
+
tokenType: models.TokenType.Embed,
|
|
2256
|
+
accessToken: undefined,
|
|
2257
|
+
filters: undefined,
|
|
2258
|
+
settings: {
|
|
2259
|
+
layoutType: models.LayoutType.Custom,
|
|
2260
|
+
customLayout: {
|
|
2261
|
+
displayOption: models.DisplayOption.FitToWidth
|
|
2262
|
+
}
|
|
2263
|
+
}
|
|
2264
|
+
};
|
|
2265
|
+
this.eventHandlersMap = new Map([
|
|
2266
|
+
['loaded', () => {
|
|
2267
|
+
const report = this.reportObj.getReport();
|
|
2268
|
+
report.setComponentTitle('Embedded report');
|
|
2269
|
+
},
|
|
2270
|
+
],
|
|
2271
|
+
['rendered', () => { }],
|
|
2272
|
+
['error', (event) => {
|
|
2273
|
+
if (event) {
|
|
2274
|
+
console.error(event.detail);
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
],
|
|
2278
|
+
['visualClicked', () => { }],
|
|
2279
|
+
['pageChanged', (event) => { }],
|
|
2280
|
+
]);
|
|
2281
|
+
}
|
|
2282
|
+
set zoom(value) {
|
|
2283
|
+
this._zoom = value;
|
|
2284
|
+
this.setReportZoom(this._zoom);
|
|
2285
|
+
}
|
|
2286
|
+
get zoom() {
|
|
2287
|
+
return this._zoom;
|
|
2288
|
+
}
|
|
2289
|
+
onResize(event) {
|
|
2290
|
+
this.getReportDivWidth();
|
|
2291
|
+
}
|
|
2292
|
+
ngOnInit() {
|
|
2293
|
+
this.embedReport();
|
|
2294
|
+
}
|
|
2295
|
+
getReportDivWidth() {
|
|
2296
|
+
this.powerbiReportWidth = this.elementRef.nativeElement.querySelector('#powerbiContainer').offsetWidth;
|
|
2297
|
+
this.setReportZoom(this.powerbiReportWidth * this.zoomRatio);
|
|
2298
|
+
}
|
|
2299
|
+
embedReport() {
|
|
2300
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2301
|
+
try {
|
|
2302
|
+
this.reportConfig = Object.assign(Object.assign({}, this.reportConfig), { id: this.embedConfig.id, embedUrl: this.embedConfig.embedUrl, accessToken: this.embedConfig.embedToken.token, filters: this.parameterReportFilters ? [JSON.parse(this.parameterReportFilters)] : undefined, settings: {
|
|
2303
|
+
panes: {
|
|
2304
|
+
filters: {
|
|
2305
|
+
visible: this.showReportFilters
|
|
2306
|
+
},
|
|
2307
|
+
pageNavigation: {
|
|
2308
|
+
visible: this.showPageNavigation
|
|
2309
|
+
},
|
|
2310
|
+
},
|
|
2311
|
+
visualSettings: {
|
|
2312
|
+
visualHeaders: [
|
|
2313
|
+
{
|
|
2314
|
+
settings: {
|
|
2315
|
+
visible: this.showVisualHeaders
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2318
|
+
]
|
|
2319
|
+
}
|
|
2320
|
+
} });
|
|
2321
|
+
}
|
|
2322
|
+
catch (error) {
|
|
2323
|
+
console.log(`Failed to fetch config for report. Status: ${error.status} ${error.statusText}`);
|
|
2324
|
+
return;
|
|
2325
|
+
}
|
|
2326
|
+
});
|
|
2327
|
+
}
|
|
2328
|
+
refresh() {
|
|
2329
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2330
|
+
const report = this.reportObj.getReport();
|
|
2331
|
+
try {
|
|
2332
|
+
yield report.refresh();
|
|
2333
|
+
}
|
|
2334
|
+
catch (errors) {
|
|
2335
|
+
console.log(errors);
|
|
2336
|
+
if (errors.message = "refreshNotAllowed")
|
|
2337
|
+
this.onRefreshNotAllowed();
|
|
2338
|
+
}
|
|
2339
|
+
});
|
|
2340
|
+
}
|
|
2341
|
+
updateFilters(filter) {
|
|
2342
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2343
|
+
try {
|
|
2344
|
+
const report = this.reportObj.getReport();
|
|
2345
|
+
yield report.removeFilters();
|
|
2346
|
+
yield report.updateFilters(models.FiltersOperations.Add, [filter]);
|
|
2347
|
+
}
|
|
2348
|
+
catch (error) {
|
|
2349
|
+
console.error(error);
|
|
2350
|
+
if (error.message = "refreshNotAllowed")
|
|
2351
|
+
this.onRefreshNotAllowed();
|
|
2352
|
+
return;
|
|
2353
|
+
}
|
|
2354
|
+
});
|
|
2355
|
+
}
|
|
2356
|
+
setReportZoom(zoom) {
|
|
2357
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2358
|
+
try {
|
|
2359
|
+
const report = this.reportObj.getReport();
|
|
2360
|
+
yield report.setZoom(zoom);
|
|
2361
|
+
}
|
|
2362
|
+
catch (error) {
|
|
2363
|
+
console.log("Error setting report zoom: " + error);
|
|
2364
|
+
}
|
|
2365
|
+
});
|
|
2366
|
+
}
|
|
2367
|
+
print() {
|
|
2368
|
+
const report = this.reportObj.getReport();
|
|
2369
|
+
report.print();
|
|
2370
|
+
}
|
|
2371
|
+
enterFullScreen() {
|
|
2372
|
+
const report = this.reportObj.getReport();
|
|
2373
|
+
report.fullscreen();
|
|
2374
|
+
}
|
|
2375
|
+
onRefreshNotAllowed() {
|
|
2376
|
+
this.refreshNotAllowed.emit(true);
|
|
2377
|
+
}
|
|
2378
|
+
}
|
|
2379
|
+
WPowerbiReportComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WPowerbiReportComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2380
|
+
WPowerbiReportComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: WPowerbiReportComponent, selector: "w-powerbi-report", inputs: { embedConfig: "embedConfig", reportTitle: "reportTitle", hasReportFilters: "hasReportFilters", parameterReportFilters: "parameterReportFilters", showReportFilters: "showReportFilters", filterPanelPosition: "filterPanelPosition", showPageNavigation: "showPageNavigation", showPrintButton: "showPrintButton", showFullScreenButton: "showFullScreenButton", showVisualHeaders: "showVisualHeaders", showRefreshButton: "showRefreshButton", zoomRatio: "zoomRatio", zoom: "zoom" }, outputs: { refreshNotAllowed: "refreshNotAllowed" }, host: { listeners: { "window:resize": "onResize($event)" } }, viewQueries: [{ propertyName: "reportObj", first: true, predicate: PowerBIReportEmbedComponent, descendants: true }], ngImport: i0, template: "<div *ngIf=\"reportTitle || showPrintButton || showFullScreenButton\" class=\"flex justify-content-between flex-wrap\">\r\n <div class=\"flex align-items-center justify-content-center\">\r\n <h4>{{reportTitle}}</h4>\r\n </div>\r\n <div class=\"flex align-items-center justify-content-center\">\r\n <div class=\"text-right\">\r\n <p-button *ngIf=\"showRefreshButton\" icon=\"pi pi-refresh\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"refresh()\">\r\n </p-button>\r\n <p-button *ngIf=\"showPrintButton\" icon=\"pi pi-print\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"print()\">\r\n </p-button>\r\n <p-button *ngIf=\"showFullScreenButton\" icon=\"pi pi-arrows-alt\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"enterFullScreen()\">\r\n </p-button>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'right'\" class=\"grid\">\r\n <div class=\"col-12 md:col-12 lg:col-8\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n </div>\r\n <div class=\"col-12 md:col-12 lg:col-4\">\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-right\"></ng-content>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'left'\" class=\"grid\">\r\n <div class=\"col-12 md:col-12 lg:col-8\">\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-left\"></ng-content>\r\n </div>\r\n <div class=\"col-12 md:col-12 lg:col-4\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'bottom'\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-bottom\"></ng-content>\r\n</div>\r\n\r\n<ng-template #powerbiReport>\r\n <div class=\"powerbi-report-container\">\r\n <div id=\"powerbiContainer\" class=\"card mt-10 text-center\">\r\n <powerbi-report [embedConfig]=\"reportConfig\" \r\n [cssClassName]=\"reportClass\" \r\n [eventHandlers]=\"eventHandlersMap\">\r\n </powerbi-report>\r\n </div>\r\n </div>\r\n</ng-template>", styles: [".powerbi-report-container{display:flex;flex-direction:column;height:100%}::ng-deep iframe{border:none}::ng-deep .hidden{height:0!important;width:0!important}::ng-deep .report-container{height:100vh;margin:8px auto;width:100%}::ng-deep .powerbi-report-container .card{padding:5px}\n"], dependencies: [{ kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5.Button, selector: "p-button", inputs: ["type", "iconPos", "icon", "badge", "label", "disabled", "loading", "loadingIcon", "style", "styleClass", "badgeClass", "ariaLabel"], outputs: ["onClick", "onFocus", "onBlur"] }, { kind: "component", type: i3$3.PowerBIReportEmbedComponent, selector: "powerbi-report[embedConfig]", inputs: ["embedConfig", "phasedEmbedding", "eventHandlers"] }] });
|
|
2381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WPowerbiReportComponent, decorators: [{
|
|
2382
|
+
type: Component,
|
|
2383
|
+
args: [{ selector: 'w-powerbi-report', template: "<div *ngIf=\"reportTitle || showPrintButton || showFullScreenButton\" class=\"flex justify-content-between flex-wrap\">\r\n <div class=\"flex align-items-center justify-content-center\">\r\n <h4>{{reportTitle}}</h4>\r\n </div>\r\n <div class=\"flex align-items-center justify-content-center\">\r\n <div class=\"text-right\">\r\n <p-button *ngIf=\"showRefreshButton\" icon=\"pi pi-refresh\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"refresh()\">\r\n </p-button>\r\n <p-button *ngIf=\"showPrintButton\" icon=\"pi pi-print\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"print()\">\r\n </p-button>\r\n <p-button *ngIf=\"showFullScreenButton\" icon=\"pi pi-arrows-alt\" \r\n styleClass=\"p-button-rounded p-button-secondary p-button-text\"\r\n (onClick)=\"enterFullScreen()\">\r\n </p-button>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'right'\" class=\"grid\">\r\n <div class=\"col-12 md:col-12 lg:col-8\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n </div>\r\n <div class=\"col-12 md:col-12 lg:col-4\">\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-right\"></ng-content>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'left'\" class=\"grid\">\r\n <div class=\"col-12 md:col-12 lg:col-8\">\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-left\"></ng-content>\r\n </div>\r\n <div class=\"col-12 md:col-12 lg:col-4\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n </div>\r\n</div>\r\n\r\n<div *ngIf=\"filterPanelPosition == 'bottom'\">\r\n <ng-container *ngTemplateOutlet=\"powerbiReport\"></ng-container>\r\n <ng-content *ngIf=\"hasReportFilters\" select=\".report-filters-bottom\"></ng-content>\r\n</div>\r\n\r\n<ng-template #powerbiReport>\r\n <div class=\"powerbi-report-container\">\r\n <div id=\"powerbiContainer\" class=\"card mt-10 text-center\">\r\n <powerbi-report [embedConfig]=\"reportConfig\" \r\n [cssClassName]=\"reportClass\" \r\n [eventHandlers]=\"eventHandlersMap\">\r\n </powerbi-report>\r\n </div>\r\n </div>\r\n</ng-template>", styles: [".powerbi-report-container{display:flex;flex-direction:column;height:100%}::ng-deep iframe{border:none}::ng-deep .hidden{height:0!important;width:0!important}::ng-deep .report-container{height:100vh;margin:8px auto;width:100%}::ng-deep .powerbi-report-container .card{padding:5px}\n"] }]
|
|
2384
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { embedConfig: [{
|
|
2385
|
+
type: Input,
|
|
2386
|
+
args: ['embedConfig']
|
|
2387
|
+
}], reportTitle: [{
|
|
2388
|
+
type: Input,
|
|
2389
|
+
args: ['reportTitle']
|
|
2390
|
+
}], hasReportFilters: [{
|
|
2391
|
+
type: Input,
|
|
2392
|
+
args: ['hasReportFilters']
|
|
2393
|
+
}], parameterReportFilters: [{
|
|
2394
|
+
type: Input,
|
|
2395
|
+
args: ['parameterReportFilters']
|
|
2396
|
+
}], showReportFilters: [{
|
|
2397
|
+
type: Input,
|
|
2398
|
+
args: ['showReportFilters']
|
|
2399
|
+
}], filterPanelPosition: [{
|
|
2400
|
+
type: Input,
|
|
2401
|
+
args: ['filterPanelPosition']
|
|
2402
|
+
}], showPageNavigation: [{
|
|
2403
|
+
type: Input,
|
|
2404
|
+
args: ['showPageNavigation']
|
|
2405
|
+
}], showPrintButton: [{
|
|
2406
|
+
type: Input,
|
|
2407
|
+
args: ['showPrintButton']
|
|
2408
|
+
}], showFullScreenButton: [{
|
|
2409
|
+
type: Input,
|
|
2410
|
+
args: ['showFullScreenButton']
|
|
2411
|
+
}], showVisualHeaders: [{
|
|
2412
|
+
type: Input,
|
|
2413
|
+
args: ['showVisualHeaders']
|
|
2414
|
+
}], showRefreshButton: [{
|
|
2415
|
+
type: Input,
|
|
2416
|
+
args: ['showRefreshButton']
|
|
2417
|
+
}], zoomRatio: [{
|
|
2418
|
+
type: Input,
|
|
2419
|
+
args: ['zoomRatio']
|
|
2420
|
+
}], refreshNotAllowed: [{
|
|
2421
|
+
type: Output,
|
|
2422
|
+
args: ['refreshNotAllowed']
|
|
2423
|
+
}], zoom: [{
|
|
2424
|
+
type: Input
|
|
2425
|
+
}], reportObj: [{
|
|
2426
|
+
type: ViewChild,
|
|
2427
|
+
args: [PowerBIReportEmbedComponent]
|
|
2428
|
+
}], onResize: [{
|
|
2429
|
+
type: HostListener,
|
|
2430
|
+
args: ['window:resize', ['$event']]
|
|
2431
|
+
}] } });
|
|
2432
|
+
|
|
2254
2433
|
class WappComponentsModule {
|
|
2255
2434
|
}
|
|
2256
2435
|
WappComponentsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WappComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2280,7 +2459,8 @@ WappComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ve
|
|
|
2280
2459
|
WInputSearchComponent,
|
|
2281
2460
|
WFilterPanelComponent,
|
|
2282
2461
|
WListFieldComponent,
|
|
2283
|
-
WappViewCardTitleTextComponent
|
|
2462
|
+
WappViewCardTitleTextComponent,
|
|
2463
|
+
WPowerbiReportComponent], imports: [InputTextModule,
|
|
2284
2464
|
FormsModule,
|
|
2285
2465
|
ReactiveFormsModule,
|
|
2286
2466
|
CommonModule,
|
|
@@ -2310,7 +2490,8 @@ WappComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ve
|
|
|
2310
2490
|
CalendarModule,
|
|
2311
2491
|
ToggleButtonModule,
|
|
2312
2492
|
QueryBuilderModule,
|
|
2313
|
-
SelectButtonModule
|
|
2493
|
+
SelectButtonModule,
|
|
2494
|
+
PowerBIEmbedModule], exports: [WappComponentsComponent,
|
|
2314
2495
|
WEditInputTextComponent,
|
|
2315
2496
|
WClipboardComponent,
|
|
2316
2497
|
HighlightModule,
|
|
@@ -2336,7 +2517,8 @@ WappComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", ve
|
|
|
2336
2517
|
WInputSearchComponent,
|
|
2337
2518
|
QueryBuilderModule,
|
|
2338
2519
|
QueryBuilderComponent,
|
|
2339
|
-
WFilterPanelComponent
|
|
2520
|
+
WFilterPanelComponent,
|
|
2521
|
+
WPowerbiReportComponent] });
|
|
2340
2522
|
WappComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WappComponentsModule, providers: [
|
|
2341
2523
|
{
|
|
2342
2524
|
provide: HIGHLIGHT_OPTIONS,
|
|
@@ -2374,7 +2556,8 @@ WappComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
2374
2556
|
CalendarModule,
|
|
2375
2557
|
ToggleButtonModule,
|
|
2376
2558
|
QueryBuilderModule,
|
|
2377
|
-
SelectButtonModule,
|
|
2559
|
+
SelectButtonModule,
|
|
2560
|
+
PowerBIEmbedModule, HighlightModule,
|
|
2378
2561
|
QueryBuilderModule] });
|
|
2379
2562
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: WappComponentsModule, decorators: [{
|
|
2380
2563
|
type: NgModule,
|
|
@@ -2406,7 +2589,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
2406
2589
|
WInputSearchComponent,
|
|
2407
2590
|
WFilterPanelComponent,
|
|
2408
2591
|
WListFieldComponent,
|
|
2409
|
-
WappViewCardTitleTextComponent
|
|
2592
|
+
WappViewCardTitleTextComponent,
|
|
2593
|
+
WPowerbiReportComponent,
|
|
2410
2594
|
],
|
|
2411
2595
|
imports: [
|
|
2412
2596
|
InputTextModule,
|
|
@@ -2439,7 +2623,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
2439
2623
|
CalendarModule,
|
|
2440
2624
|
ToggleButtonModule,
|
|
2441
2625
|
QueryBuilderModule,
|
|
2442
|
-
SelectButtonModule
|
|
2626
|
+
SelectButtonModule,
|
|
2627
|
+
PowerBIEmbedModule
|
|
2443
2628
|
],
|
|
2444
2629
|
exports: [
|
|
2445
2630
|
WappComponentsComponent,
|
|
@@ -2469,6 +2654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
2469
2654
|
QueryBuilderModule,
|
|
2470
2655
|
QueryBuilderComponent,
|
|
2471
2656
|
WFilterPanelComponent,
|
|
2657
|
+
WPowerbiReportComponent
|
|
2472
2658
|
],
|
|
2473
2659
|
providers: [
|
|
2474
2660
|
{
|
|
@@ -2505,5 +2691,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImpor
|
|
|
2505
2691
|
* Generated bundle index. Do not edit.
|
|
2506
2692
|
*/
|
|
2507
2693
|
|
|
2508
|
-
export { ColorTextPipe, DataTypeEnum, FormControlService, OperatorEnum, QBDataTypeEnum, TableColumnFilterTypes, TableColumnTypes, WBodyComponent, WBodyContainerComponent, WButtonComponent, WClipboardComponent, WContainerComponent, WEditInputNumberComponent, WEditInputTextComponent, WEditInputTextareaComponent, WEditMultiselectComponent, WEditSelectComponent, WEditTreeselectComponent, WFilterPanelComponent, WFooterComponent, WHeaderPanelComponent, WInputSearchComponent, WNavbarComponent, WPanelComponent, WPanelTitleComponent, WTableComponent, WTableLazyComponent, WappComponentsComponent, WappComponentsModule, WappComponentsService, WappIconsComponent, WappLogosComponent };
|
|
2694
|
+
export { ColorTextPipe, DataTypeEnum, FormControlService, OperatorEnum, QBDataTypeEnum, TableColumnFilterTypes, TableColumnTypes, WBodyComponent, WBodyContainerComponent, WButtonComponent, WClipboardComponent, WContainerComponent, WEditInputNumberComponent, WEditInputTextComponent, WEditInputTextareaComponent, WEditMultiselectComponent, WEditSelectComponent, WEditTreeselectComponent, WFilterPanelComponent, WFooterComponent, WHeaderPanelComponent, WInputSearchComponent, WNavbarComponent, WPanelComponent, WPanelTitleComponent, WPowerbiReportComponent, WTableComponent, WTableLazyComponent, WappComponentsComponent, WappComponentsModule, WappComponentsService, WappIconsComponent, WappLogosComponent };
|
|
2509
2695
|
//# sourceMappingURL=ngx-wapp-components.mjs.map
|