[ACA-1608] lazy loading support for Viewer and About screens (#526)

* move viewer and directives to separate modules

* lazy loading for Viewer and About screens

* lazy loading support for extensions module
This commit is contained in:
Denys Vuika
2018-07-21 15:36:26 +01:00
committed by GitHub
parent af63af575c
commit 9c92fca44f
10 changed files with 306 additions and 76 deletions

View File

@@ -30,7 +30,8 @@ import {
MatButtonModule,
MatDialogModule,
MatInputModule,
MatSnackBarModule
MatSnackBarModule,
MatProgressBarModule
} from '@angular/material';
@NgModule({
@@ -40,7 +41,8 @@ import {
MatButtonModule,
MatDialogModule,
MatInputModule,
MatSnackBarModule
MatSnackBarModule,
MatProgressBarModule
],
exports: [
MatMenuModule,
@@ -48,7 +50,8 @@ import {
MatButtonModule,
MatDialogModule,
MatInputModule,
MatSnackBarModule
MatSnackBarModule,
MatProgressBarModule
]
})
export class MaterialModule {}