@dsivd/prestations-ng 17.9.1-beta.2 → 17.9.1-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/CHANGELOG.md +4 -0
- package/dsivd-prestations-ng-17.9.1-beta.3.tgz +0 -0
- package/esm2022/sdk-statistics/sdk-statistics.service.mjs +31 -27
- package/fesm2022/dsivd-prestations-ng.mjs +30 -26
- package/fesm2022/dsivd-prestations-ng.mjs.map +1 -1
- package/package.json +1 -1
- package/sdk-statistics/sdk-statistics.service.d.ts +4 -2
- package/dsivd-prestations-ng-17.9.1-beta.2.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NgZone } from '@angular/core';
|
|
1
2
|
import { Router } from '@angular/router';
|
|
2
3
|
import { FoehnPageService } from '../foehn-page/foehn-page.service';
|
|
3
4
|
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
@@ -11,12 +12,13 @@ export declare class SdkStatisticsService {
|
|
|
11
12
|
private router;
|
|
12
13
|
private applicationInfoService;
|
|
13
14
|
private foehnPageService;
|
|
15
|
+
private ngZone;
|
|
14
16
|
private _router;
|
|
15
17
|
private _applicationInfoService;
|
|
16
18
|
private _foehnPageService;
|
|
17
|
-
constructor(router: Router, applicationInfoService: ApplicationInfoService, foehnPageService: FoehnPageService);
|
|
18
|
-
private static send;
|
|
19
|
+
constructor(router: Router, applicationInfoService: ApplicationInfoService, foehnPageService: FoehnPageService, ngZone: NgZone);
|
|
19
20
|
track(): void;
|
|
21
|
+
private send;
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdkStatisticsService, never>;
|
|
21
23
|
static ɵprov: i0.ɵɵInjectableDeclaration<SdkStatisticsService>;
|
|
22
24
|
}
|
|
Binary file
|