ngx-sp-auth 3.3.2 → 3.3.3
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.
|
@@ -27,7 +27,7 @@ export declare class MenuServicesService {
|
|
|
27
27
|
/** Método executado para pegar o Menu lateral levando em conta as permissões do usuário, grupo e o tenant ativo
|
|
28
28
|
* Executado caso o getter do boolean Menu Dynamic seja true
|
|
29
29
|
*/
|
|
30
|
-
getMenuLateral(
|
|
30
|
+
getMenuLateral(projetoId: number): Observable<RetDynamicMenu>;
|
|
31
31
|
/** Método executado para montar estrutura de título, submenu e telas de acordo com os modelos presentes na ngx-sp-infra
|
|
32
32
|
* envia-se o título deste grupo de submenus, ícone e enum daqueles submenus que
|
|
33
33
|
* ficarão alocados no grupo de determinado título enviado
|
|
@@ -28,7 +28,7 @@ export declare class LibCustomMenuService {
|
|
|
28
28
|
empresaID: string;
|
|
29
29
|
}): void;
|
|
30
30
|
constructor(_customMenuService: ICustomMenuService, _menuConfig: LibMenuConfigService, _authStorageService: AuthStorageService);
|
|
31
|
-
|
|
31
|
+
menuDynamicGetProjetoId(): number;
|
|
32
32
|
menuDynamicOnInit(): void;
|
|
33
33
|
menuStaticOnInit(): void;
|
|
34
34
|
menuopenExpansibleMenu(ref: HTMLDivElement): void;
|
|
@@ -8,7 +8,7 @@ export interface ICustomMenuService {
|
|
|
8
8
|
get themeColor(): string;
|
|
9
9
|
get menuItems(): IMenuItemStructure[];
|
|
10
10
|
set menuItems(value: IMenuItemStructure[]);
|
|
11
|
-
|
|
11
|
+
menuDynamicGetProjetoId(): number;
|
|
12
12
|
menuDynamicOnInit(): void;
|
|
13
13
|
menuStaticOnInit(): void;
|
|
14
14
|
menuopenExpansibleMenu(ref: HTMLDivElement): void;
|