mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-24 06:37:07 +00:00
+ added boxed layout option + added a close overlay to theme options + moved the buy button to the footer + added fade-in-out animation + File Manager app min row height
24 lines
736 B
TypeScript
24 lines
736 B
TypeScript
import { Component, Input, ViewEncapsulation } from '@angular/core';
|
|
import { FuseNavigationService } from './navigation.service';
|
|
|
|
@Component({
|
|
selector : 'fuse-navigation',
|
|
templateUrl : './navigation.component.html',
|
|
styleUrls : ['./navigation.component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class FuseNavigationComponent
|
|
{
|
|
verticalNavigation: any[];
|
|
horizontalNavigation: any[];
|
|
|
|
@Input('layout') layout = 'vertical';
|
|
|
|
constructor(private navigationService: FuseNavigationService)
|
|
{
|
|
this.verticalNavigation = navigationService.getNavigation('verticalNavItems');
|
|
this.horizontalNavigation = navigationService.getNavigation('horizontalNavItems');
|
|
}
|
|
|
|
}
|