@thetradeengineorg1/snova-shell-module 1.0.2 → 1.0.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/bundles/thetradeengineorg1-snova-shell-module.umd.js +129 -201
- package/bundles/thetradeengineorg1-snova-shell-module.umd.js.map +1 -1
- package/esm2015/lib/shell-components/components/admin-layout/admin-layout.component.js +86 -106
- package/esm2015/lib/shell-components/components/header-side/header-side.component.js +2 -2
- package/esm2015/lib/shell-components/components/menu/menu.component.js +2 -2
- package/esm2015/lib/shell-components/components/sidenav/side-bar.component.js +44 -94
- package/esm2015/lib/shell-components/shell.routing.js +9 -8
- package/fesm2015/thetradeengineorg1-snova-shell-module.js +130 -197
- package/fesm2015/thetradeengineorg1-snova-shell-module.js.map +1 -1
- package/lib/shell-components/components/admin-layout/admin-layout.component.d.ts +12 -9
- package/lib/shell-components/components/sidenav/side-bar.component.d.ts +0 -1
- package/package.json +1 -1
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
import { OnInit, AfterViewInit, OnDestroy } from "@angular/core";
|
|
2
|
-
import { Router } from "@angular/router";
|
|
3
|
-
import { TranslateService } from "@ngx-translate/core";
|
|
2
|
+
import { Router, ActivatedRoute } from "@angular/router";
|
|
4
3
|
import { Observable, Subject } from "rxjs";
|
|
4
|
+
import { TranslateService } from "@ngx-translate/core";
|
|
5
5
|
import { Store } from "@ngrx/store";
|
|
6
6
|
import { CookieService } from "ngx-cookie-service";
|
|
7
7
|
import { Actions } from "@ngrx/effects";
|
|
8
8
|
import { Location } from "@angular/common";
|
|
9
9
|
import { SoftLabelConfigurationModel } from "../../models/softlabels-model";
|
|
10
|
-
import { LayoutService } from
|
|
11
|
-
import { UserStory } from
|
|
10
|
+
import { LayoutService } from "../../services/layout.service";
|
|
11
|
+
import { UserStory } from "../../models/userStory";
|
|
12
12
|
import * as SharedModuleState from "../../store/reducers/index";
|
|
13
|
-
import
|
|
14
|
-
import { CommonService } from
|
|
15
|
-
import { PubNubAngular } from
|
|
16
|
-
import { SPINNER } from
|
|
13
|
+
import "../../../globaldependencies/helpers/fontawesome-icons";
|
|
14
|
+
import { CommonService } from "../../services/common-used.service";
|
|
15
|
+
import { PubNubAngular } from "pubnub-angular2";
|
|
16
|
+
import { SPINNER } from "ngx-ui-loader";
|
|
17
17
|
import { SignalrService } from "../../services/signalr.service";
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
19
|
export declare class AdminLayoutComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
20
20
|
private router;
|
|
21
|
+
private activatedRoute;
|
|
21
22
|
translate: TranslateService;
|
|
22
23
|
private layout;
|
|
23
24
|
private store;
|
|
@@ -51,8 +52,10 @@ export declare class AdminLayoutComponent implements OnInit, AfterViewInit, OnDe
|
|
|
51
52
|
totalLoadingTime: number;
|
|
52
53
|
interval: any;
|
|
53
54
|
spinnerType: SPINNER;
|
|
54
|
-
|
|
55
|
+
isHomeScreen: boolean;
|
|
56
|
+
constructor(router: Router, activatedRoute: ActivatedRoute, translate: TranslateService, layout: LayoutService, store: Store<SharedModuleState.State>, cookieService: CookieService, actionUpdates$: Actions, location: Location, commonService: CommonService, pubnub: PubNubAngular, signalr: SignalrService);
|
|
55
57
|
ngOnInit(): void;
|
|
58
|
+
private updateHomeToggle;
|
|
56
59
|
onResize(event: any): void;
|
|
57
60
|
Opened(event: any): void;
|
|
58
61
|
getSoftLabelConfigurations(): void;
|
|
@@ -17,7 +17,6 @@ export declare class SideBarComponent {
|
|
|
17
17
|
routerActive(menuList: IMenuItem[]): void;
|
|
18
18
|
enter(i: number): void;
|
|
19
19
|
leave(i: number): void;
|
|
20
|
-
toggleDropdown(item: any): void;
|
|
21
20
|
selectMenu(index: number, link?: string): void;
|
|
22
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SideBarComponent, never>;
|
|
23
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<SideBarComponent, "app-sidebar", never, {}, {}, never, never>;
|