dotnetreport-ng 6.2.0 → 6.2.1-beta-v2

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.
@@ -20,5 +20,5 @@ export declare class DotnetdashboardComponent implements OnInit, OnDestroy {
20
20
  private bindWindowResize;
21
21
  private bindGridInit;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<DotnetdashboardComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<DotnetdashboardComponent, "app-dotnetdashboard", never, {}, {}, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<DotnetdashboardComponent, "app-dotnetdashboard", never, {}, {}, never, never, true, never>;
24
24
  }
@@ -19,5 +19,5 @@ export declare class DotnetreportComponent implements OnInit, OnDestroy {
19
19
  private renderKOTemplates;
20
20
  private bindWindowResize;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<DotnetreportComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<DotnetreportComponent, "app-dotnetreport", never, {}, {}, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<DotnetreportComponent, "app-dotnetreport", never, {}, {}, never, never, true, never>;
23
23
  }
@@ -1,2 +1,2 @@
1
- import { InjectionToken } from "@angular/core";
1
+ import { InjectionToken } from '@angular/core';
2
2
  export declare const BASE_URL_TOKEN: InjectionToken<string>;
@@ -18,5 +18,5 @@ export declare class DotnetsetupComponent implements OnInit, OnDestroy {
18
18
  init(): void;
19
19
  private renderKOTemplates;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<DotnetsetupComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<DotnetsetupComponent, "app-dotnetsetup", never, {}, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DotnetsetupComponent, "app-dotnetsetup", never, {}, {}, never, never, true, never>;
22
22
  }
@@ -0,0 +1,2 @@
1
+ import { Provider } from '@angular/core';
2
+ export declare function provideDotNetReport(baseUrl: string): Provider[];
package/package.json CHANGED
@@ -1,19 +1,9 @@
1
1
  {
2
2
  "name": "dotnetreport-ng",
3
- "version": "6.2.0",
4
- "description": "Angular Component for dotnetreport",
5
- "keywords": [
6
- "dotnet report",
7
- "dotnetreport",
8
- "angular report builder",
9
- "report builder"
10
- ],
11
- "author": {
12
- "name": "dotnetreport"
13
- },
3
+ "version": "6.2.1-beta-v2",
14
4
  "peerDependencies": {
15
- "@angular/common": ">=16.2.12",
16
- "@angular/core": ">=16.2.12",
5
+ "@angular/common": "^18.2.0",
6
+ "@angular/core": "^18.2.0",
17
7
  "@types/jquery": "^3.4.1",
18
8
  "@types/knockout": "^3.4.72",
19
9
  "bootbox": "^6.0.0",
@@ -23,6 +13,7 @@
23
13
  "dependencies": {
24
14
  "tslib": "^2.3.0"
25
15
  },
16
+ "sideEffects": false,
26
17
  "module": "fesm2022/dotnetreport-ng.mjs",
27
18
  "typings": "index.d.ts",
28
19
  "exports": {
@@ -35,6 +26,5 @@
35
26
  "esm": "./esm2022/dotnetreport-ng.mjs",
36
27
  "default": "./fesm2022/dotnetreport-ng.mjs"
37
28
  }
38
- },
39
- "sideEffects": false
29
+ }
40
30
  }
package/public-api.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './lib/dotnetreport-lib.service';
2
- export * from './lib/dotnetreport-lib.module';
3
- export * from './lib/dotnetreport/dotnetreport.component';
4
1
  export * from './lib/dotnetdashboard/dotnetdashboard.component';
2
+ export * from './lib/dotnetreport/dotnetreport.component';
5
3
  export * from './lib/dotnetsetup/dotnetsetup.component';
4
+ export * from './lib/dotnetreport-lib.di';
5
+ export * from './lib/provider';
Binary file
@@ -1,46 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
3
- import { BASE_URL_TOKEN } from './dotnetreport-lib.di';
4
- import { DotnetreportComponent } from './dotnetreport/dotnetreport.component';
5
- import { DotnetdashboardComponent } from './dotnetdashboard/dotnetdashboard.component';
6
- import { DotnetsetupComponent } from './dotnetsetup/dotnetsetup.component';
7
- import * as i0 from "@angular/core";
8
- export class DotnetReportModule {
9
- static forRoot(base_url) {
10
- return {
11
- ngModule: DotnetReportModule,
12
- providers: [
13
- {
14
- provide: BASE_URL_TOKEN,
15
- useValue: base_url
16
- }
17
- ]
18
- };
19
- }
20
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
21
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportModule, declarations: [DotnetreportComponent,
22
- DotnetdashboardComponent,
23
- DotnetsetupComponent], imports: [BrowserAnimationsModule], exports: [DotnetreportComponent,
24
- DotnetdashboardComponent,
25
- DotnetsetupComponent] });
26
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportModule, imports: [BrowserAnimationsModule] });
27
- }
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportModule, decorators: [{
29
- type: NgModule,
30
- args: [{
31
- declarations: [
32
- DotnetreportComponent,
33
- DotnetdashboardComponent,
34
- DotnetsetupComponent,
35
- ],
36
- imports: [
37
- BrowserAnimationsModule
38
- ],
39
- exports: [
40
- DotnetreportComponent,
41
- DotnetdashboardComponent,
42
- DotnetsetupComponent
43
- ]
44
- }]
45
- }] });
46
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG90bmV0cmVwb3J0LWxpYi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9kb3RuZXRyZXBvcnQtbGliL3NyYy9saWIvZG90bmV0cmVwb3J0LWxpYi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUF1QyxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDL0UsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDZDQUE2QyxDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQWtCM0UsTUFBTSxPQUFPLGtCQUFrQjtJQUU3QixNQUFNLENBQUMsT0FBTyxDQUFDLFFBQWdCO1FBQzdCLE9BQU87WUFDTCxRQUFRLEVBQUUsa0JBQWtCO1lBQzVCLFNBQVMsRUFBRTtnQkFDVDtvQkFDRSxPQUFPLEVBQUcsY0FBYztvQkFDeEIsUUFBUSxFQUFHLFFBQVE7aUJBQ3BCO2FBQ0Y7U0FDRixDQUFBO0lBQ0gsQ0FBQzt3R0FaVSxrQkFBa0I7eUdBQWxCLGtCQUFrQixpQkFiM0IscUJBQXFCO1lBQ3JCLHdCQUF3QjtZQUN4QixvQkFBb0IsYUFHcEIsdUJBQXVCLGFBR3ZCLHFCQUFxQjtZQUNyQix3QkFBd0I7WUFDeEIsb0JBQW9CO3lHQUdYLGtCQUFrQixZQVIzQix1QkFBdUI7OzRGQVFkLGtCQUFrQjtrQkFmOUIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1oscUJBQXFCO3dCQUNyQix3QkFBd0I7d0JBQ3hCLG9CQUFvQjtxQkFDckI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLHVCQUF1QjtxQkFDeEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLHFCQUFxQjt3QkFDckIsd0JBQXdCO3dCQUN4QixvQkFBb0I7cUJBQ3JCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4sIE1vZHVsZVdpdGhQcm92aWRlcnMsIE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJyb3dzZXJBbmltYXRpb25zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlci9hbmltYXRpb25zJztcclxuaW1wb3J0IHsgQkFTRV9VUkxfVE9LRU4gfSBmcm9tICcuL2RvdG5ldHJlcG9ydC1saWIuZGknO1xyXG5pbXBvcnQgeyBEb3RuZXRyZXBvcnRDb21wb25lbnQgfSBmcm9tICcuL2RvdG5ldHJlcG9ydC9kb3RuZXRyZXBvcnQuY29tcG9uZW50JztcclxuaW1wb3J0IHsgRG90bmV0ZGFzaGJvYXJkQ29tcG9uZW50IH0gZnJvbSAnLi9kb3RuZXRkYXNoYm9hcmQvZG90bmV0ZGFzaGJvYXJkLmNvbXBvbmVudCc7XHJcbmltcG9ydCB7IERvdG5ldHNldHVwQ29tcG9uZW50IH0gZnJvbSAnLi9kb3RuZXRzZXR1cC9kb3RuZXRzZXR1cC5jb21wb25lbnQnO1xyXG5cclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBEb3RuZXRyZXBvcnRDb21wb25lbnQsXHJcbiAgICBEb3RuZXRkYXNoYm9hcmRDb21wb25lbnQsXHJcbiAgICBEb3RuZXRzZXR1cENvbXBvbmVudCxcclxuICBdLFxyXG4gIGltcG9ydHM6IFtcclxuICAgIEJyb3dzZXJBbmltYXRpb25zTW9kdWxlXHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBEb3RuZXRyZXBvcnRDb21wb25lbnQsXHJcbiAgICBEb3RuZXRkYXNoYm9hcmRDb21wb25lbnQsXHJcbiAgICBEb3RuZXRzZXR1cENvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIERvdG5ldFJlcG9ydE1vZHVsZSB7XHJcblxyXG4gIHN0YXRpYyBmb3JSb290KGJhc2VfdXJsOiBzdHJpbmcpOiBNb2R1bGVXaXRoUHJvdmlkZXJzPERvdG5ldFJlcG9ydE1vZHVsZT4ge1xyXG4gICAgcmV0dXJuIHtcclxuICAgICAgbmdNb2R1bGU6IERvdG5ldFJlcG9ydE1vZHVsZSxcclxuICAgICAgcHJvdmlkZXJzOiBbXHJcbiAgICAgICAge1xyXG4gICAgICAgICAgcHJvdmlkZSA6IEJBU0VfVVJMX1RPS0VOLFxyXG4gICAgICAgICAgdXNlVmFsdWUgOiBiYXNlX3VybFxyXG4gICAgICAgIH1cclxuICAgICAgXVxyXG4gICAgfVxyXG4gIH1cclxuIH1cclxuIl19
@@ -1,15 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class DotnetReportService {
4
- constructor() {
5
- }
6
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportService, providedIn: 'root' });
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DotnetReportService, decorators: [{
10
- type: Injectable,
11
- args: [{
12
- providedIn: 'root'
13
- }]
14
- }], ctorParameters: function () { return []; } });
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG90bmV0cmVwb3J0LWxpYi5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZG90bmV0cmVwb3J0LWxpYi9zcmMvbGliL2RvdG5ldHJlcG9ydC1saWIuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sbUJBQW1CO0lBQzlCO0lBQ0EsQ0FBQzt3R0FGVSxtQkFBbUI7NEdBQW5CLG1CQUFtQixjQUZsQixNQUFNOzs0RkFFUCxtQkFBbUI7a0JBSC9CLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQEluamVjdGFibGUoe1xyXG4gIHByb3ZpZGVkSW46ICdyb290J1xyXG59KVxyXG5leHBvcnQgY2xhc3MgRG90bmV0UmVwb3J0U2VydmljZSB7XHJcbiAgY29uc3RydWN0b3IoKSB7IFxyXG4gIH1cclxuXHJcbn1cclxuIl19
@@ -1,12 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "./dotnetreport/dotnetreport.component";
4
- import * as i2 from "./dotnetdashboard/dotnetdashboard.component";
5
- import * as i3 from "./dotnetsetup/dotnetsetup.component";
6
- import * as i4 from "@angular/platform-browser/animations";
7
- export declare class DotnetReportModule {
8
- static forRoot(base_url: string): ModuleWithProviders<DotnetReportModule>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<DotnetReportModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<DotnetReportModule, [typeof i1.DotnetreportComponent, typeof i2.DotnetdashboardComponent, typeof i3.DotnetsetupComponent], [typeof i4.BrowserAnimationsModule], [typeof i1.DotnetreportComponent, typeof i2.DotnetdashboardComponent, typeof i3.DotnetsetupComponent]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<DotnetReportModule>;
12
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class DotnetReportService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<DotnetReportService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<DotnetReportService>;
6
- }