vcomply-workflow-engine 3.0.18 → 3.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/vcomply-workflow-engine.umd.js +1104 -407
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +1162 -432
- package/esm2015/lib/workflow-policy/workflow-policy.component.js +22 -9
- package/fesm2015/vcomply-workflow-engine.js +1181 -438
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +8 -8
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -199,11 +199,11 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
199
199
|
populateReviewerData(res: any): void;
|
|
200
200
|
populateAssigneeData(res: any): void;
|
|
201
201
|
/**
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
202
|
+
* this function is for getting the users data based on member_id of users of selected User Group
|
|
203
|
+
* @param userlist contains users data
|
|
204
|
+
* @param selectedgroups contains selected User Group data
|
|
205
|
+
* @returns user data of Selected user group.
|
|
206
|
+
*/
|
|
207
207
|
getGroupsUserEmployeesId(userList: any, selectedGroups: any): any;
|
|
208
208
|
setReviewerPayload(ids: any[], type: string, acceptedData?: Array<any>, reviewerType?: string): any;
|
|
209
209
|
checkWhetherAllListsLoaded(): void;
|
|
@@ -363,9 +363,9 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
363
363
|
onRemoveCheckpoints(type: string): void;
|
|
364
364
|
removeCheckpoint(): void;
|
|
365
365
|
/**
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
366
|
+
*
|
|
367
|
+
* @param event Assessment details
|
|
368
|
+
*/
|
|
369
369
|
postAssessment(event: any): void;
|
|
370
370
|
setIsUploaded(event: any): void;
|
|
371
371
|
checkDefaultProgramOnRemove(program: any): void;
|
package/package.json
CHANGED