@softheon/armature 8.14.0 → 8.15.1
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/README.md +0 -1
- package/bundles/softheon-armature.umd.js +12 -14
- package/bundles/softheon-armature.umd.js.map +1 -1
- package/bundles/softheon-armature.umd.min.js +1 -1
- package/bundles/softheon-armature.umd.min.js.map +1 -1
- package/esm2015/lib/header/components/header/header.component.js +3 -8
- package/esm2015/lib/header/models/header-auth.settings.js +2 -6
- package/esm2015/lib/navigation/components/navigation/navigation.component.js +12 -3
- package/esm5/lib/header/components/header/header.component.js +3 -8
- package/esm5/lib/header/models/header-auth.settings.js +2 -7
- package/esm5/lib/navigation/components/navigation/navigation.component.js +12 -3
- package/fesm2015/softheon-armature.js +13 -14
- package/fesm2015/softheon-armature.js.map +1 -1
- package/fesm5/softheon-armature.js +13 -15
- package/fesm5/softheon-armature.js.map +1 -1
- package/lib/header/components/header/header.component.d.ts +0 -2
- package/lib/header/models/header-auth.settings.d.ts +1 -3
- package/lib/navigation/components/navigation/navigation.component.d.ts +5 -2
- package/package.json +1 -1
- package/softheon-armature.metadata.json +1 -1
|
@@ -54,8 +54,6 @@ export declare class ArmatureHeaderComponent implements OnInit {
|
|
|
54
54
|
/** The color of the super header */
|
|
55
55
|
superHeaderColor: string;
|
|
56
56
|
/** AUTH SETTINGS */
|
|
57
|
-
/** Authorization Button Aria Text. */
|
|
58
|
-
authBtnAriaText: string;
|
|
59
57
|
/** Flag if user is logged in. */
|
|
60
58
|
isLoggedIn: boolean;
|
|
61
59
|
/** Authorization Button Text. */
|
|
@@ -9,7 +9,6 @@ export declare class HeaderAuthSettings {
|
|
|
9
9
|
skipIssuerCheck: boolean;
|
|
10
10
|
logInText: string;
|
|
11
11
|
logOutText: string;
|
|
12
|
-
authBtnAriaText: string;
|
|
13
12
|
timeoutFactor: number;
|
|
14
13
|
returnRoute: string;
|
|
15
14
|
postLogOutUrl: string;
|
|
@@ -23,7 +22,6 @@ export declare class HeaderAuthSettings {
|
|
|
23
22
|
* @param skipIssuerCheck Skip issuer check flag.
|
|
24
23
|
* @param logInText Log In Text.
|
|
25
24
|
* @param logOutText Log Out Text.
|
|
26
|
-
* @param authBtnAriaText Auth Button Aria Text.
|
|
27
25
|
*/
|
|
28
|
-
constructor(clientId?: string, redirectUri?: string, issuer?: string, scope?: string, skipIssuerCheck?: boolean, logInText?: string, logOutText?: string,
|
|
26
|
+
constructor(clientId?: string, redirectUri?: string, issuer?: string, scope?: string, skipIssuerCheck?: boolean, logInText?: string, logOutText?: string, timeoutFactor?: number, returnRoute?: string, postLogOutUrl?: string, loginUrl?: string);
|
|
29
27
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
2
1
|
import { MediaMatcher } from '@angular/cdk/layout';
|
|
2
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
-
import {
|
|
4
|
+
import { MatSidenav } from '@angular/material';
|
|
5
|
+
import { NavigationAdvancedSettings, NavigationSettings, NavigationThemeSettings, NavNode } from '../../models/nav-models-api';
|
|
5
6
|
/**
|
|
6
7
|
* The Navigation Component
|
|
7
8
|
*/
|
|
@@ -9,6 +10,8 @@ export declare class ArmatureNavigationComponent implements OnInit, OnDestroy {
|
|
|
9
10
|
private changeDetectorRef;
|
|
10
11
|
private media;
|
|
11
12
|
private translate;
|
|
13
|
+
/** The side mobile nav */
|
|
14
|
+
sidenav: MatSidenav;
|
|
12
15
|
/** Component Input - the navigation data */
|
|
13
16
|
navigationData: NavNode[];
|
|
14
17
|
/** Component Input - the navigation settings */
|