@indice/ng-components 0.2.119 → 0.2.121
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/_styles.css +9 -9
- package/bundles/indice-ng-components.umd.js +14 -6
- package/bundles/indice-ng-components.umd.js.map +1 -1
- package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +2 -2
- package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +5 -2
- package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +2 -2
- package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +2 -2
- package/esm2015/lib/types.js +4 -1
- package/fesm2015/indice-ng-components.js +10 -4
- package/fesm2015/indice-ng-components.js.map +1 -1
- package/lib/layouts/shell/shell-header/shell-header.component.d.ts +1 -0
- package/lib/types.d.ts +3 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
avatarName: string | null;
|
|
27
27
|
constructor(authService: AuthService, router: Router, config: any, links: any);
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
|
+
scroll(el: HTMLElement): void;
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
onClickOutside($event: any): void;
|
|
31
32
|
signin(event: any | null | undefined): void;
|
package/lib/types.d.ts
CHANGED
|
@@ -14,12 +14,15 @@ export declare class NavLink {
|
|
|
14
14
|
exact: boolean;
|
|
15
15
|
external: boolean;
|
|
16
16
|
icon: string | undefined;
|
|
17
|
+
type: string;
|
|
17
18
|
}
|
|
18
19
|
export declare class ExternalNavLink extends NavLink {
|
|
19
20
|
constructor(text: string, path: string, openInNewTab?: boolean, icon?: string);
|
|
21
|
+
type: string;
|
|
20
22
|
}
|
|
21
23
|
export declare class FragmentNavLink extends NavLink {
|
|
22
24
|
constructor(text: string, path: string, icon?: string);
|
|
25
|
+
type: string;
|
|
23
26
|
}
|
|
24
27
|
export declare class ViewAction {
|
|
25
28
|
type: string;
|