@osovitny/anatoly 3.19.46 → 3.19.47
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.
|
@@ -13,12 +13,12 @@ export declare class AppContextService extends ApiServiceBase {
|
|
|
13
13
|
readonly updated$: Observable<any>;
|
|
14
14
|
private _userUpdated;
|
|
15
15
|
readonly userUpdated$: Observable<any>;
|
|
16
|
-
private
|
|
17
|
-
readonly
|
|
16
|
+
private _standardJsonFilesLoaded;
|
|
17
|
+
readonly standardJsonFilesLoaded$: Observable<any>;
|
|
18
18
|
constructor(http: HttpClient, localStorage: LocalStorageService, sessionStorage: SessionStorageService);
|
|
19
19
|
private fireUpdated;
|
|
20
20
|
protected fireUserUpdated(): void;
|
|
21
|
-
private
|
|
21
|
+
private fireStandardJsonFilesLoaded;
|
|
22
22
|
private getCountriesJsonFile;
|
|
23
23
|
private getLanguagesJsonFile;
|
|
24
24
|
private getTimezonesJsonFile;
|
|
@@ -3,4 +3,4 @@ import { SignInPage } from "./pages/signin.page";
|
|
|
3
3
|
import { SignOutPage } from "./pages/signout.page";
|
|
4
4
|
import { SignUpPage } from "./pages/signup.page";
|
|
5
5
|
export declare const IAMRouterModule: import("@angular/core").ModuleWithProviders<RouterModule>;
|
|
6
|
-
export declare const PAGES: (typeof
|
|
6
|
+
export declare const PAGES: (typeof SignInPage | typeof SignOutPage | typeof SignUpPage)[];
|