ngx-sp-auth 4.18.2 → 4.18.4

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.
@@ -83,7 +83,7 @@ export declare class MenuLateralComponent implements OnInit, OnDestroy {
83
83
  private validateCachedImg;
84
84
  private checkForCachedImage;
85
85
  logout(): void;
86
- getExternalUrl(url: string): string;
86
+ getExternalUrl(url: string, isOutroModulo: boolean): string;
87
87
  constroiRegrasDynamicMenu(menus: DynamicMenu[]): DynamicMenu[];
88
88
  deleteIDB(): Promise<void>;
89
89
  private configMsal;
@@ -14,5 +14,6 @@ export declare class DynamicMenu implements IMenuItemStructure {
14
14
  route: string;
15
15
  isExternal: boolean;
16
16
  isSelected: boolean;
17
+ isOutroModulo: boolean;
17
18
  children?: ISubmenuItemStructure[] | undefined;
18
19
  }
@@ -8,5 +8,6 @@ export interface IMenuItemStructure {
8
8
  route: string;
9
9
  isExternal: boolean;
10
10
  isSelected: boolean;
11
+ isOutroModulo: boolean;
11
12
  children?: ISubmenuItemStructure[];
12
13
  }
@@ -6,4 +6,5 @@ export interface ISubmenuItemStructure {
6
6
  route: string;
7
7
  isExternal: boolean;
8
8
  isSelected: boolean;
9
+ isOutroModulo: boolean;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-sp-auth",
3
- "version": "4.18.2",
3
+ "version": "4.18.4",
4
4
  "description": "Biblioteca de utilitários de autenticação.",
5
5
  "author": "P&D",
6
6
  "keywords": [
@@ -23,7 +23,7 @@
23
23
  "@azure/msal-angular": "^4.0.16",
24
24
  "@azure/msal-browser": "^4.18.0",
25
25
  "idb": "^8.0.3",
26
- "ngx-sp-infra": "^6.19.0",
26
+ "ngx-sp-infra": "^6.19.2",
27
27
  "ngx-toastr": "^19.0.0"
28
28
  },
29
29
  "sideEffects": false,