ngx-sp-auth 4.1.2 → 4.1.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.
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { TelaItem } from '../sub-menu.component';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ListComponent {
|
|
4
|
-
/**
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
constructor();
|
|
8
|
-
GetExternalUrl(url: string): string;
|
|
9
5
|
telasItem: TelaItem[];
|
|
10
6
|
hostName: string;
|
|
7
|
+
onTelaSelecionada: EventEmitter<string | null>;
|
|
8
|
+
getExternalUrl: (url: string) => string;
|
|
11
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "app-list", never, { "telasItem": { "alias": "telasItem"; "required": false; }; "hostName": { "alias": "hostName"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "app-list", never, { "telasItem": { "alias": "telasItem"; "required": false; }; "hostName": { "alias": "hostName"; "required": false; }; }, { "onTelaSelecionada": "onTelaSelecionada"; }, never, never, true, never>;
|
|
13
11
|
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { SubMenuItem, TelaItem } from '../sub-menu.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NavTabsComponent implements OnInit {
|
|
4
|
+
export declare class NavTabsComponent implements OnInit, OnChanges {
|
|
5
5
|
subMenus: SubMenuItem[];
|
|
6
6
|
hostName: string;
|
|
7
7
|
activeItem?: string;
|
|
8
|
+
onTituloSelecionado: EventEmitter<string | null>;
|
|
9
|
+
onTelaSelecionada: EventEmitter<string | null>;
|
|
8
10
|
telasItem: TelaItem[];
|
|
9
11
|
listaAtiva: string;
|
|
10
12
|
constructor();
|
|
11
13
|
ngOnInit(): void;
|
|
12
|
-
|
|
14
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
+
setAbaAtiva(titulo: string): void;
|
|
13
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavTabsComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavTabsComponent, "app-nav-tabs", never, { "subMenus": { "alias": "subMenus"; "required": false; }; "hostName": { "alias": "hostName"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavTabsComponent, "app-nav-tabs", never, { "subMenus": { "alias": "subMenus"; "required": false; }; "hostName": { "alias": "hostName"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "onTituloSelecionado": "onTituloSelecionado"; "onTelaSelecionada": "onTelaSelecionada"; }, never, never, true, never>;
|
|
15
18
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { MenuServicesService } from '../../../public-api';
|
|
3
3
|
import { ProjectUtilservice } from '../../project/project-utils.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -23,12 +23,14 @@ export declare class SubMenuComponent implements OnInit {
|
|
|
23
23
|
isProduction: boolean;
|
|
24
24
|
hostname: string;
|
|
25
25
|
activeItem?: string;
|
|
26
|
+
onTituloSelecionado: EventEmitter<string | null>;
|
|
27
|
+
onTelaSelecionada: EventEmitter<string | null>;
|
|
26
28
|
hostNameOutSystems: string;
|
|
27
29
|
listaSubMenus: SubMenuItem[];
|
|
28
30
|
constructor(_menuService: MenuServicesService, _projectUtil: ProjectUtilservice);
|
|
29
31
|
ngOnInit(): void;
|
|
30
|
-
listaFunction
|
|
31
|
-
|
|
32
|
+
private listaFunction;
|
|
33
|
+
private getHostName;
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubMenuComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubMenuComponent, "app-nav-sub-menu", never, { "navSubmenus": { "alias": "navSubmenus"; "required": false; }; "isProduction": { "alias": "isProduction"; "required": false; }; "hostname": { "alias": "hostname"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubMenuComponent, "app-nav-sub-menu", never, { "navSubmenus": { "alias": "navSubmenus"; "required": false; }; "isProduction": { "alias": "isProduction"; "required": false; }; "hostname": { "alias": "hostname"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "onTituloSelecionado": "onTituloSelecionado"; "onTelaSelecionada": "onTelaSelecionada"; }, never, never, true, never>;
|
|
34
36
|
}
|