angular2-mdl
Version:
Angular 2 components, directives and styles based on material design lite https://getmdl.io.
38 lines • 1.41 kB
JavaScript
import { NgModule } from '@angular/core';
import { MdlDialogOutletComponent, MdlDialogInnerOutletComponent } from './mdl-dialog-outlet.component';
import { MdlDialogOutletService } from './mdl-dialog-outlet.service';
import { MdlBackdropOverlayComponent } from './mdl-backdrop-overlay.component';
export * from './mdl-dialog-outlet.component';
export * from './mdl-dialog-outlet.service';
var PUBLIC_COMPONENTS = [
MdlDialogInnerOutletComponent
];
var PRIVATE_COMPONENTS = [
MdlDialogOutletComponent,
MdlBackdropOverlayComponent
];
export var MdlDialogOutletModule = (function () {
function MdlDialogOutletModule() {
}
MdlDialogOutletModule.forRoot = function () {
return {
ngModule: MdlDialogOutletModule,
providers: [MdlDialogOutletService]
};
};
MdlDialogOutletModule.decorators = [
{ type: NgModule, args: [{
imports: [],
exports: PUBLIC_COMPONENTS,
declarations: PUBLIC_COMPONENTS.concat(PRIVATE_COMPONENTS),
entryComponents: [
MdlDialogOutletComponent,
MdlBackdropOverlayComponent
]
},] },
];
/** @nocollapse */
MdlDialogOutletModule.ctorParameters = function () { return []; };
return MdlDialogOutletModule;
}());
//# sourceMappingURL=index.js.map