[ADF-3745] Reviewed latest proc services cloud docs (#4122)

This commit is contained in:
Andy Stark
2019-01-08 16:04:45 +00:00
committed by Eugenio Romano
parent 7dde329d81
commit 78abcc93df
14 changed files with 137 additions and 129 deletions

View File

@@ -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;

View File

@@ -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>();

View File

@@ -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();