2017-07-15 15:03:40 +00:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {MaterialModule} from './material.module';
|
|
|
|
import {FlexLayoutModule} from '@angular/flex-layout';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {
|
|
|
|
FuseMdSidenavHelperDirective,
|
|
|
|
FuseMdSidenavTogglerDirective
|
|
|
|
} from '../directives/md-sidenav-helper/md-sidenav-helper.directive';
|
|
|
|
import {PerfectScrollbarModule} from 'ngx-perfect-scrollbar';
|
2017-07-16 13:12:40 +00:00
|
|
|
import {KeysPipe} from '../pipes/keys';
|
2017-07-08 16:12:52 +00:00
|
|
|
|
|
|
|
@NgModule({
|
2017-07-13 14:43:22 +00:00
|
|
|
declarations: [
|
|
|
|
FuseMdSidenavHelperDirective,
|
2017-07-16 13:12:40 +00:00
|
|
|
FuseMdSidenavTogglerDirective,
|
|
|
|
KeysPipe
|
2017-07-13 14:43:22 +00:00
|
|
|
],
|
|
|
|
imports : [
|
2017-07-08 16:12:52 +00:00
|
|
|
FlexLayoutModule,
|
|
|
|
MaterialModule,
|
|
|
|
CommonModule,
|
2017-07-15 15:03:40 +00:00
|
|
|
FormsModule,
|
|
|
|
PerfectScrollbarModule
|
2017-07-08 16:12:52 +00:00
|
|
|
],
|
2017-07-13 14:43:22 +00:00
|
|
|
exports : [
|
2017-07-08 16:12:52 +00:00
|
|
|
FlexLayoutModule,
|
|
|
|
MaterialModule,
|
|
|
|
CommonModule,
|
2017-07-13 14:43:22 +00:00
|
|
|
FormsModule,
|
|
|
|
FuseMdSidenavHelperDirective,
|
2017-07-15 15:03:40 +00:00
|
|
|
FuseMdSidenavTogglerDirective,
|
2017-07-16 13:12:40 +00:00
|
|
|
PerfectScrollbarModule,
|
|
|
|
KeysPipe
|
2017-07-13 14:43:22 +00:00
|
|
|
]
|
2017-07-08 16:12:52 +00:00
|
|
|
})
|
2017-07-13 14:43:22 +00:00
|
|
|
|
2017-07-08 16:12:52 +00:00
|
|
|
export class SharedModule
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|