vcomply-workflow-engine 2.9.57 → 2.9.58
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 +22 -6
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-interfaces/create-policy-form.js +1 -1
- package/esm2015/lib/workflow-policy/workflow-policy.component.js +23 -7
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +367 -333
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +22 -6
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-interfaces/create-policy-form.d.ts +7 -0
- package/lib/workflow-policy/workflow-policy.component.d.ts +2 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -181,7 +181,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
181
181
|
* Fetches Approvers and reviewers list based on selected policy categories
|
|
182
182
|
* @param categoryIds contains selected categories id's
|
|
183
183
|
*/
|
|
184
|
-
getApproversAndReviewersList(categoryIds: any, approverIds?: any, reviewerIds?: any): void;
|
|
184
|
+
getApproversAndReviewersList(categoryIds: any, approverIds?: any, reviewerIds?: any, policy?: any): void;
|
|
185
185
|
/*******
|
|
186
186
|
* It is to populate more options elements while editing the policy form
|
|
187
187
|
*/
|
|
@@ -294,4 +294,5 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
294
294
|
onVersion(event: any): void;
|
|
295
295
|
onAssessmentSelect(event: any): void;
|
|
296
296
|
getAssessmentDetails(assessmentDetails: any, type?: string): void;
|
|
297
|
+
setOwnersOnLoad(): void;
|
|
297
298
|
}
|
package/package.json
CHANGED