@wavemaker/app-ng-runtime 11.9.5-1.6052 → 11.9.5-1.6099
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.
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/runtime/base/bundles/index.umd.js +12 -50
- app-ng-runtime/runtime/base/esm2022/services/app.service.mjs +9 -5
- app-ng-runtime/runtime/base/esm2022/services/i18n.service.mjs +8 -3
- app-ng-runtime/runtime/base/fesm2022/index.mjs +13 -4
- app-ng-runtime/runtime/base/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/runtime/base/services/app.service.d.ts +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
1
|
+
import { Injector, NgZone } from '@angular/core';
|
|
2
2
|
import { RouteReuseStrategy } from '@angular/router';
|
|
3
3
|
import { AbstractHttpService, AbstractI18nService, StatePersistence } from '@wm/core';
|
|
4
4
|
import { SecurityService } from '@wm/security';
|
|
@@ -10,6 +10,7 @@ export declare class AppRef {
|
|
|
10
10
|
private httpService;
|
|
11
11
|
private securityService;
|
|
12
12
|
private routeReuseStrategy;
|
|
13
|
+
private ngZone;
|
|
13
14
|
Variables: any;
|
|
14
15
|
Actions: any;
|
|
15
16
|
onAppVariablesReady: (...args: any[]) => void;
|
|
@@ -35,7 +36,7 @@ export declare class AppRef {
|
|
|
35
36
|
private _eventNotifier;
|
|
36
37
|
landingPageName: any;
|
|
37
38
|
reload(): void;
|
|
38
|
-
constructor(inj: Injector, i18nService: AbstractI18nService, statePersistence: StatePersistence, httpService: AbstractHttpService, securityService: SecurityService, routeReuseStrategy: RouteReuseStrategy);
|
|
39
|
+
constructor(inj: Injector, i18nService: AbstractI18nService, statePersistence: StatePersistence, httpService: AbstractHttpService, securityService: SecurityService, routeReuseStrategy: RouteReuseStrategy, ngZone: NgZone);
|
|
39
40
|
clearPageCache(pageName?: string): void;
|
|
40
41
|
notify(eventName: string, ...data: Array<any>): void;
|
|
41
42
|
getDependency(injToken: any): any;
|