@osovitny/anatoly 3.19.42 → 3.19.43
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/fesm2022/osovitny-anatoly.mjs +94 -125
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/iam/iam-pages.routes.d.ts +1 -1
- package/lib/iam/iam.module.d.ts +3 -0
- package/lib/iam/services/auth.service.d.ts +1 -2
- package/lib/ui/components/index.d.ts +1 -1
- package/lib/ui/forms/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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 SignUpPage | typeof SignOutPage | typeof SignInPage)[];
|
package/lib/iam/iam.module.d.ts
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
import { AuthService } from './services/auth.service';
|
|
2
|
+
import { IPublicClientApplication } from '@azure/msal-browser';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
import * as i1 from "@angular/common";
|
|
3
5
|
import * as i2 from "@angular/router";
|
|
4
6
|
import * as i3 from "@angular/common/http";
|
|
5
7
|
import * as i4 from "@azure/msal-angular";
|
|
8
|
+
export declare function initializeMsalFactory(msalInstance: IPublicClientApplication, auth: AuthService): () => Promise<void>;
|
|
6
9
|
export declare class AnatolyIAMModule {
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyIAMModule, never>;
|
|
8
11
|
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyIAMModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.HttpClientModule, typeof i4.MsalModule], never>;
|
|
@@ -15,15 +15,14 @@ export declare class AuthService extends ApiServiceBase implements OnDestroy {
|
|
|
15
15
|
private msalService;
|
|
16
16
|
private msalBroadcastService;
|
|
17
17
|
private readonly msalDestroying$;
|
|
18
|
-
private initialized;
|
|
19
18
|
private signUpSignInPolicy;
|
|
20
19
|
private signUpPolicy;
|
|
21
20
|
private editProfilePolicy;
|
|
22
21
|
private resetPasswordPolicy;
|
|
23
22
|
constructor(http: HttpClient, router: Router, appContext: AppContextService, msalGuardConfig: MsalGuardConfiguration, msalService: MsalService, msalBroadcastService: MsalBroadcastService);
|
|
24
23
|
ngOnDestroy(): void;
|
|
25
|
-
private init;
|
|
26
24
|
private setDefaults;
|
|
25
|
+
init(): void;
|
|
27
26
|
private initMSAL;
|
|
28
27
|
private checkAndSetActiveAccount;
|
|
29
28
|
private isPopup;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CardComponent, CheckIconComponent, CountryDropdownlist, LanguageDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof CardComponent | typeof CountryDropdownlist | typeof LanguageDropdownlist | typeof TimezoneDropdownlist | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent)[];
|
package/lib/ui/forms/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AddressComponent, CompanyComponent, ContactUsForm } from './exports';
|
|
2
|
-
export declare const FORMS: (typeof
|
|
2
|
+
export declare const FORMS: (typeof ContactUsForm | typeof AddressComponent | typeof CompanyComponent)[];
|