ngx-sp-auth 4.3.13 → 4.3.14
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MenuServicesService } from '
|
|
2
|
+
import { MenuServicesService } from '../../components/menu-lateral/menu-services.service';
|
|
3
3
|
import { ProjectUtilservice } from '../../project/project-utils.service';
|
|
4
|
+
import { LibCustomEnvironmentService } from './../../custom/lib-custom-environment.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class NavSubMenus {
|
|
6
7
|
icon: string;
|
|
@@ -19,6 +20,7 @@ export declare class TelaItem {
|
|
|
19
20
|
export declare class SubMenuComponent implements OnInit {
|
|
20
21
|
private _menuService;
|
|
21
22
|
private _projectUtil;
|
|
23
|
+
private _customEnv;
|
|
22
24
|
navSubmenus: NavSubMenus[];
|
|
23
25
|
isProduction: boolean;
|
|
24
26
|
hostname: string;
|
|
@@ -27,7 +29,7 @@ export declare class SubMenuComponent implements OnInit {
|
|
|
27
29
|
onTelaSelecionada: EventEmitter<string | null>;
|
|
28
30
|
hostNameOutSystems: string;
|
|
29
31
|
listaSubMenus: SubMenuItem[];
|
|
30
|
-
constructor(_menuService: MenuServicesService, _projectUtil: ProjectUtilservice);
|
|
32
|
+
constructor(_menuService: MenuServicesService, _projectUtil: ProjectUtilservice, _customEnv: LibCustomEnvironmentService);
|
|
31
33
|
ngOnInit(): void;
|
|
32
34
|
private listaFunction;
|
|
33
35
|
private getHostName;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MenuServicesService } from '
|
|
2
|
+
import { MenuServicesService } from '../../components/menu-lateral/menu-services.service';
|
|
3
|
+
import { LibCustomEnvironmentService } from '../../custom/lib-custom-environment.service';
|
|
3
4
|
import { ProjectUtilservice } from '../../project/project-utils.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class NavSubmenuCards {
|
|
@@ -12,14 +13,12 @@ export declare class NavSubmenuCards {
|
|
|
12
13
|
export declare class SubMenuCardComponent implements OnInit {
|
|
13
14
|
private _menuService;
|
|
14
15
|
private _projectUtil;
|
|
15
|
-
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
*/
|
|
20
|
-
constructor(_menuService: MenuServicesService, _projectUtil: ProjectUtilservice);
|
|
21
|
-
hostName: string;
|
|
16
|
+
private _customEnv;
|
|
22
17
|
subMenuCards: NavSubmenuCards[];
|
|
18
|
+
hostName: string;
|
|
19
|
+
getExternalUrl: (url: string) => string;
|
|
20
|
+
constructor(_menuService: MenuServicesService, _projectUtil: ProjectUtilservice, _customEnv: LibCustomEnvironmentService);
|
|
21
|
+
ngOnInit(): void;
|
|
23
22
|
GetHostName(): void;
|
|
24
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubMenuCardComponent, never>;
|
|
25
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<SubMenuCardComponent, "sub-menu-card, lib-submenu-card", never, { "subMenuCards": { "alias": "subMenuCards"; "required": false; }; }, {}, never, never, true, never>;
|