[ADF-325] added attach folder widget (#2831)

[ADF-325] added new attach folder widget
This commit is contained in:
Vito
2018-01-16 15:28:39 +01:00
committed by Eugenio Romano
parent 3671c12f35
commit 66262c4822
12 changed files with 393 additions and 12 deletions

View File

@@ -23,6 +23,7 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { DataColumnModule, DataTableModule, FormModule } from '@alfresco/adf-core';
import { AttachFileWidgetComponent } from './attach-file-widget.component';
import { AttachFolderWidgetComponent } from './attach-folder-widget.component';
@NgModule({
imports: [
@@ -36,13 +37,16 @@ import { AttachFileWidgetComponent } from './attach-file-widget.component';
FormModule
],
entryComponents: [
AttachFileWidgetComponent
AttachFileWidgetComponent,
AttachFolderWidgetComponent
],
declarations: [
AttachFileWidgetComponent
AttachFileWidgetComponent,
AttachFolderWidgetComponent
],
exports: [
AttachFileWidgetComponent
AttachFileWidgetComponent,
AttachFolderWidgetComponent
]
})
export class ContentWidgetModule {}