From 50d513d001b9988c4558cf1c9935a1889b2bc4ec Mon Sep 17 00:00:00 2001 From: Arman Ozak Date: Wed, 17 Jun 2020 18:57:50 +0300 Subject: [PATCH] feat: add BreadcrumbComponent to ApplicationLayoutComponent --- .../application-layout/application-layout.component.html | 1 + .../application-layout/application-layout.component.ts | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.html b/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.html index c4acbec880..7fd73ad3ed 100644 --- a/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.html +++ b/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.html @@ -50,5 +50,6 @@ [@slideFromBottom]="outlet?.isActivated && outlet.activatedRoute?.routeConfig?.path" class="container" > + diff --git a/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.ts b/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.ts index 9c90292d96..d3192057bb 100644 --- a/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.ts +++ b/npm/ng-packs/packages/theme-basic/src/lib/components/application-layout/application-layout.component.ts @@ -1,7 +1,6 @@ import { eLayoutType, takeUntilDestroy } from '@abp/ng.core'; import { collapseWithMargin, slideFromBottom } from '@abp/ng.theme.shared'; import { AfterViewInit, Component, OnDestroy } from '@angular/core'; -import { Store } from '@ngxs/store'; import { fromEvent } from 'rxjs'; import { debounceTime } from 'rxjs/operators'; import { eThemeBasicComponents } from '../../enums/components'; @@ -25,8 +24,6 @@ export class ApplicationLayoutComponent implements AfterViewInit, OnDestroy { navItemsComponentKey = eThemeBasicComponents.NavItems; - constructor(private store: Store) {} - private checkWindowWidth() { setTimeout(() => { if (window.innerWidth < 992) {