mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-497] Improvement to task comment (activiti-comments) component -1829 Github (#2054)
* [ADF-497] Improvement to task comment (activiti-comments) component - 1829 Github * Added new design * Removed dialog * Migrated from mdl to md * Created a new component to list comments by using data-table * [ADF-497] Improvement to task comment (activiti-comments) component - 1829 Github * Added documentation * [ADF-497] Improvement to task comment (activiti-comments) component -1829 Github * Improved css class naming * Changed component name AdfCommentList to AdfCommentListComponent * Code refactoring * [ADF-497] Improvement to task comment (activiti-comments) component -1829 Github * Removed extra space at the end * [ADF-497] Improvement to task comment (activiti-comments) component -1829 Github * Import reordering
This commit is contained in:
committed by
Eugenio Romano
parent
58eb56a966
commit
403d5cea85
@@ -15,8 +15,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { DatePipe } from '@angular/common';
|
||||
import { ModuleWithProviders, NgModule } from '@angular/core';
|
||||
import { MdButtonModule, MdIconModule } from '@angular/material';
|
||||
import { MdButtonModule, MdIconModule, MdInputModule } from '@angular/material';
|
||||
import { ActivitiFormModule } from 'ng2-activiti-form';
|
||||
import { CoreModule } from 'ng2-alfresco-core';
|
||||
import { DataTableModule } from 'ng2-alfresco-datatable';
|
||||
@@ -35,6 +36,7 @@ import {
|
||||
ActivitiTaskDetails,
|
||||
ActivitiTaskHeader,
|
||||
ActivitiTaskList,
|
||||
AdfCommentListComponent,
|
||||
NoTaskDetailsTemplateComponent,
|
||||
PeopleList,
|
||||
TaskAttachmentListComponent
|
||||
@@ -59,7 +61,8 @@ export const ACTIVITI_TASKLIST_DIRECTIVES: any[] = [
|
||||
ActivitiPeopleSearch,
|
||||
TaskAttachmentListComponent,
|
||||
ActivitiCreateTaskAttachmentComponent,
|
||||
PeopleList
|
||||
PeopleList,
|
||||
AdfCommentListComponent
|
||||
];
|
||||
|
||||
export const ACTIVITI_TASKLIST_PROVIDERS: any[] = [
|
||||
@@ -73,13 +76,15 @@ export const ACTIVITI_TASKLIST_PROVIDERS: any[] = [
|
||||
DataTableModule,
|
||||
ActivitiFormModule,
|
||||
MdIconModule,
|
||||
MdButtonModule
|
||||
MdButtonModule,
|
||||
MdInputModule
|
||||
],
|
||||
declarations: [
|
||||
...ACTIVITI_TASKLIST_DIRECTIVES
|
||||
],
|
||||
providers: [
|
||||
...ACTIVITI_TASKLIST_PROVIDERS
|
||||
...ACTIVITI_TASKLIST_PROVIDERS,
|
||||
DatePipe
|
||||
],
|
||||
exports: [
|
||||
...ACTIVITI_TASKLIST_DIRECTIVES,
|
||||
|
Reference in New Issue
Block a user