[ADF-1374] Move download and create folder dialogs to ADF (#2205)

* move create folder and download zip dialogs to core

* code cleanup
This commit is contained in:
Denys Vuika
2017-08-14 11:09:55 +01:00
committed by Eugenio Romano
parent 98b4f4cef4
commit 224e15c8e1
6 changed files with 37 additions and 26 deletions

View File

@@ -16,13 +16,23 @@
*/
import { NgModule } from '@angular/core';
import { MdButtonModule, MdSnackBarModule, MdToolbarModule } from '@angular/material';
import {
MdButtonModule,
MdDialogModule,
MdInputModule,
MdProgressBarModule,
MdSnackBarModule,
MdToolbarModule
} from '@angular/material';
export function modules() {
return [
MdButtonModule,
MdDialogModule,
MdInputModule,
MdProgressBarModule,
MdSnackBarModule,
MdToolbarModule,
MdButtonModule
MdToolbarModule
];
}