@osovitny/anatoly 3.19.41 → 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.
@@ -4,4 +4,5 @@ export declare class Utils {
4
4
  static downloadBlobFile(value: Blob, fileName: string): void;
5
5
  static slugify(text: string, prefix?: string, postfix?: string): string;
6
6
  static generateRandom(start: number, end: number): number;
7
+ static sortArray(items: any): any;
7
8
  }
@@ -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 SignInPage | typeof SignOutPage | typeof SignUpPage)[];
6
+ export declare const PAGES: (typeof SignUpPage | typeof SignOutPage | typeof SignInPage)[];
@@ -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 LanguageDropdownlist | typeof CardComponent | typeof CountryDropdownlist | typeof TimezoneDropdownlist | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent)[];
2
+ export declare const MAIN_COMPONENTS: (typeof CardComponent | typeof CountryDropdownlist | typeof LanguageDropdownlist | typeof TimezoneDropdownlist | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent)[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovitny/anatoly",
3
- "version": "3.19.41",
3
+ "version": "3.19.43",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "19.2.11",
6
6
  "@angular/core": "19.2.11",