ngx-sp-auth 3.2.0 → 3.2.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.
- package/fesm2022/ngx-sp-auth.mjs +38 -9
- package/fesm2022/ngx-sp-auth.mjs.map +1 -1
- package/lib/components/menu-lateral/menu/menu-lateral.component.d.ts +2 -0
- package/lib/components/menu-lateral/menu-services.service.d.ts +4 -1
- package/lib/components/menu-lateral/submenus/dynamic-menu/dynamic-menu.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export declare class MenuLateralComponent implements OnInit, OnDestroy {
|
|
|
33
33
|
ngOnDestroy(): void;
|
|
34
34
|
sidebar: ElementRef<HTMLDivElement>;
|
|
35
35
|
handleKeyboardShortcut: (event: KeyboardEvent) => void;
|
|
36
|
+
private _hostServeUrlOutSystems;
|
|
36
37
|
private notif_template?;
|
|
37
38
|
menuLink: HTMLAnchorElement;
|
|
38
39
|
desiredContent?: TemplateRef<any>;
|
|
@@ -57,6 +58,7 @@ export declare class MenuLateralComponent implements OnInit, OnDestroy {
|
|
|
57
58
|
footerUserName: string;
|
|
58
59
|
isPopoverVisible: boolean;
|
|
59
60
|
showBalloon: boolean;
|
|
61
|
+
get HostServerOutSystems(): string;
|
|
60
62
|
private getEstabelecimentoSession;
|
|
61
63
|
private getMenuUserImg;
|
|
62
64
|
getUserEmail(): void;
|
|
@@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
|
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { AuthStorageService } from '../../storage/auth-storage.service';
|
|
4
4
|
import { LibCustomEnvironmentService } from '../../custom/lib-custom-environment.service';
|
|
5
|
-
import { RetError, RetEstabelecimentosModal } from 'ngx-sp-infra';
|
|
5
|
+
import { RetError, RetEstabelecimentosModal, RetString } from 'ngx-sp-infra';
|
|
6
6
|
import { Usuario_IMG } from './model/usuario-img';
|
|
7
7
|
import { RetInfraUsuarioEmail } from './model/ret-infrausuarioemail';
|
|
8
8
|
import { RetInfraUsuarioImg } from './model/ret-infrausuarioimg';
|
|
@@ -36,6 +36,9 @@ export declare class MenuServicesService {
|
|
|
36
36
|
/** Método executado para montar estrutura da tela de submenu com os cards baseado no IdUnico do menu acessado em específico
|
|
37
37
|
*/
|
|
38
38
|
getTelaSubmenusWithCards(MenuIdUnico: number): Observable<RetSubmenuWithCards>;
|
|
39
|
+
/** Método executado para pegar o HostName de direcionamento para OS
|
|
40
|
+
*/
|
|
41
|
+
GetHostServerOutSystems(): Observable<RetString>;
|
|
39
42
|
private _menuFooterImg;
|
|
40
43
|
getMenuFooterImg(): Usuario_IMG | null;
|
|
41
44
|
setMenuFooterImg(value: Usuario_IMG): void;
|
|
@@ -11,6 +11,7 @@ export declare class DynamicMenuComponent implements OnInit {
|
|
|
11
11
|
recebeParam: Function;
|
|
12
12
|
titleSubmenu: string;
|
|
13
13
|
submenuList?: IMenuItemStructure[];
|
|
14
|
+
hostServerOutSystems: string;
|
|
14
15
|
menuList: IMenuItemStructure[];
|
|
15
16
|
menuStatic: IMenuItemStructure[];
|
|
16
17
|
selectedMenuItem: number[];
|
|
@@ -23,5 +24,5 @@ export declare class DynamicMenuComponent implements OnInit {
|
|
|
23
24
|
changeStar(ref: HTMLButtonElement, id: IMenuItemStructure | undefined): void;
|
|
24
25
|
getExternalUrl(url: string): string;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicMenuComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicMenuComponent, "app-dynamic-menu", never, { "submenuRef": { "alias": "submenuRef"; "required": false; }; "recebeParam": { "alias": "recebeParam"; "required": false; }; "titleSubmenu": { "alias": "titleSubmenu"; "required": false; }; "submenuList": { "alias": "submenuList"; "required": false; }; }, { "selectTemplate": "selectTemplate"; }, ["desiredContent"], never, true, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicMenuComponent, "app-dynamic-menu", never, { "submenuRef": { "alias": "submenuRef"; "required": false; }; "recebeParam": { "alias": "recebeParam"; "required": false; }; "titleSubmenu": { "alias": "titleSubmenu"; "required": false; }; "submenuList": { "alias": "submenuList"; "required": false; }; "hostServerOutSystems": { "alias": "hostServerOutSystems"; "required": false; }; }, { "selectTemplate": "selectTemplate"; }, ["desiredContent"], never, true, never>;
|
|
27
28
|
}
|