mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-3764] Added doc comments for task filters cloud (#4023)
This commit is contained in:
committed by
Eugenio Romano
parent
1a21f234b6
commit
a193c2383c
@@ -26,22 +26,30 @@ import { TranslationService } from '@alfresco/adf-core';
|
||||
styleUrls: ['task-filters-cloud.component.scss']
|
||||
})
|
||||
export class TaskFiltersCloudComponent implements OnChanges {
|
||||
|
||||
/** Display filters available to the current user for the application with the specified name. */
|
||||
@Input()
|
||||
appName: string;
|
||||
|
||||
/**
|
||||
* Parameters to use for the task filter cloud. If there is no match then the default filter
|
||||
* (the first one in the list) is selected.
|
||||
*/
|
||||
@Input()
|
||||
filterParam: FilterParamsModel;
|
||||
|
||||
/** Toggles display of the filter's icons. */
|
||||
@Input()
|
||||
showIcons: boolean = false;
|
||||
|
||||
/** Emitted when a filter in the list is clicked. */
|
||||
@Output()
|
||||
filterClick: EventEmitter<TaskFilterCloudRepresentationModel> = new EventEmitter<TaskFilterCloudRepresentationModel>();
|
||||
|
||||
/** Emitted when the list is loaded. */
|
||||
@Output()
|
||||
success: EventEmitter<any> = new EventEmitter<any>();
|
||||
|
||||
/** Emitted when an error occurs during loading. */
|
||||
@Output()
|
||||
error: EventEmitter<any> = new EventEmitter<any>();
|
||||
|
||||
|
Reference in New Issue
Block a user