UNPKG

angular2-mdl

Version:

Angular 2 components, directives and styles based on material design lite https://getmdl.io.

58 lines 2.52 kB
import { NgModule } from '@angular/core'; import { MdlLayoutComponent, MdlScreenSizeService } from './mdl-layout.component'; import { MdlLayoutHeaderComponent } from './mdl-layout-header.component'; import { MdlLayoutDrawerComponent } from './mdl-layout-drawer.component'; import { MdlLayoutContentComponent } from './mdl-layout-content.component'; import { MdlLayoutHeaderTransparentDirective } from './mdl-layout-header-transparent.directive'; import { MdlLayoutHeaderRowComponent } from './mdl-layout-header-row.component'; import { MdlLayoutTitleComponent } from './mdl-layout-title.component'; import { MdlLayoutSpacerComponent } from './mdl-layout-spacer.component'; import { MdlLayoutTabPanelComponent } from './mdl-layout-tab-panel.component'; import { MdlIconModule } from '../icon/mdl-icon.component'; import { MdlRippleModule } from '../common/mdl-ripple.directive'; import { MdlCommonsModule } from '../common/index'; import { CommonModule } from '@angular/common'; import { MdlTabsModule } from '../tabs/index'; var MDL_LAYOUT_DIRECTIVES = [ MdlLayoutComponent, MdlLayoutHeaderComponent, MdlLayoutDrawerComponent, MdlLayoutContentComponent, MdlLayoutHeaderTransparentDirective, MdlLayoutHeaderRowComponent, MdlLayoutTitleComponent, MdlLayoutSpacerComponent, MdlLayoutTabPanelComponent ]; export * from './mdl-layout.component'; export * from './mdl-layout-header.component'; export * from './mdl-layout-drawer.component'; export * from './mdl-layout-content.component'; export * from './mdl-layout-header-transparent.directive'; export * from './mdl-layout-header-row.component'; export * from './mdl-layout-title.component'; export * from './mdl-layout-spacer.component'; export * from './mdl-layout-tab-panel.component'; export var MdlLayoutModule = (function () { function MdlLayoutModule() { } MdlLayoutModule.forRoot = function () { return { ngModule: MdlLayoutModule, providers: [ MdlScreenSizeService ] }; }; MdlLayoutModule.decorators = [ { type: NgModule, args: [{ imports: [MdlIconModule, MdlRippleModule, MdlCommonsModule, MdlTabsModule, CommonModule], exports: MDL_LAYOUT_DIRECTIVES, declarations: MDL_LAYOUT_DIRECTIVES, },] }, ]; /** @nocollapse */ MdlLayoutModule.ctorParameters = function () { return []; }; return MdlLayoutModule; }()); //# sourceMappingURL=index.js.map