mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-3745] Reviewed latest proc services cloud docs (#4122)
This commit is contained in:
committed by
Eugenio Romano
parent
7dde329d81
commit
78abcc93df
@@ -36,7 +36,7 @@ export class ProcessFiltersCloudComponent implements OnChanges {
|
||||
@Input()
|
||||
filterParam: FilterParamsModel;
|
||||
|
||||
/** (optional) The flag hides/shows icon against each filter */
|
||||
/** (optional) Toggles showing an icon by the side of each filter */
|
||||
@Input()
|
||||
showIcons: boolean = false;
|
||||
|
||||
|
@@ -51,15 +51,15 @@ export class StartProcessCloudComponent implements OnChanges, OnInit {
|
||||
@Input()
|
||||
processDefinitionName: string;
|
||||
|
||||
/** Variables to attach to the payload */
|
||||
/** Variables to attach to the payload. */
|
||||
@Input()
|
||||
variables: Map<string, object>[];
|
||||
|
||||
/** This flag displays/hides the process dropdown list */
|
||||
/** Show/hide the process dropdown list. */
|
||||
@Input()
|
||||
showSelectProcessDropdown: boolean = true;
|
||||
|
||||
/** Emitted when the starting process is successfully created. */
|
||||
/** Emitted when the process is successfully started. */
|
||||
@Output()
|
||||
success: EventEmitter<ProcessInstanceCloud> = new EventEmitter<ProcessInstanceCloud>();
|
||||
|
||||
|
@@ -35,20 +35,22 @@ export class EditTaskFilterCloudComponent implements OnChanges {
|
||||
public static ACTION_SAVE_AS = 'SAVE_AS';
|
||||
public static ACTION_DELETE = 'DELETE';
|
||||
|
||||
/** Name of the app. */
|
||||
@Input()
|
||||
appName: string;
|
||||
|
||||
/** ID of the task filter. */
|
||||
@Input()
|
||||
id: string;
|
||||
|
||||
taskFilter: TaskFilterCloudModel;
|
||||
changedTaskFilter: TaskFilterCloudModel;
|
||||
|
||||
/** Emitted when an task filter property changes. */
|
||||
/** Emitted when a task filter property changes. */
|
||||
@Output()
|
||||
filterChange: EventEmitter<TaskFilterCloudModel> = new EventEmitter();
|
||||
|
||||
/** Emitted when an filter action occurs i.e Save, SaveAs, Delete. */
|
||||
/** Emitted when a filter action occurs (i.e Save, Save As, Delete). */
|
||||
@Output()
|
||||
action: EventEmitter<FilterActionType> = new EventEmitter();
|
||||
|
||||
|
Reference in New Issue
Block a user