[ADF-1300] Download as Zip feature and dialog (#2174)

* Download API demo

- download single selected file
- download multiple selected files as ZIP
- download one or multiple selected folders as ZIP
- download all mixed content as ZIP (file + folder)

* download dialog (first cut)

* code cleanup
This commit is contained in:
Denys Vuika
2017-08-04 14:55:15 +01:00
committed by Mario Romano
parent abe5ed5a67
commit 0f239a1fa3
5 changed files with 249 additions and 13 deletions

View File

@@ -16,13 +16,20 @@
*/
import { NgModule } from '@angular/core';
import { MdDialogModule, MdInputModule, MdSelectModule, MdSlideToggleModule } from '@angular/material';
import {
MdDialogModule,
MdInputModule,
MdProgressBarModule,
MdSelectModule,
MdSlideToggleModule
} from '@angular/material';
const MATERIAL_MODULES = [
MdSlideToggleModule,
MdInputModule,
MdSelectModule,
MdDialogModule
MdDialogModule,
MdProgressBarModule
];
@NgModule({