vcomply-workflow-engine 6.0.67 → 6.0.69
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/esm2022/lib/add-multiple-responsibility/add-multiple-responsibility.component.mjs +1 -10
- package/esm2022/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +1 -10
- package/esm2022/lib/add-multiple-risk/add-multiple-risk.component.mjs +1 -10
- package/esm2022/lib/constants/api.constants.mjs +8 -0
- package/esm2022/lib/constants/mock.mjs +152 -0
- package/esm2022/lib/interfaces/frequency.interface.mjs +2 -0
- package/esm2022/lib/interfaces/responsibilty.interface.mjs +1 -1
- package/esm2022/lib/more-option/more-option.component.mjs +17 -183
- package/esm2022/lib/report-a-case/services/report-a-case.service.mjs +3 -2
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +4 -4
- package/esm2022/lib/services/common.service.mjs +40 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +5 -5
- package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +3 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +9 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +243 -1
- package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
- package/esm2022/lib/sharedComponents/program-list/constant.mjs +16 -0
- package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
- package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
- package/esm2022/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.mjs +23 -0
- package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +182 -0
- package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +47 -0
- package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
- package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
- package/esm2022/lib/ui-kit/loaders/loaders.module.mjs +24 -0
- package/esm2022/lib/ui-kit/loaders/table-loader/table-loader.component.mjs +19 -0
- package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +45 -17
- package/esm2022/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +13 -10
- package/esm2022/lib/workflow/shared/services/grc.service.mjs +2 -2
- package/esm2022/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.mjs +1 -10
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +284 -412
- package/esm2022/lib/workflow-engine-container/api-constants.mjs +3 -2
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +5 -31
- package/esm2022/lib/workflow-engine.module.mjs +13 -6
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +55 -34
- package/esm2022/lib/workflow-program/constants.mjs +3 -3
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +118 -311
- package/esm2022/lib/workflow-services/policy.service.mjs +8 -4
- package/esm2022/lib/workflow-services/programs.service.mjs +26 -113
- package/esm2022/lib/workflow-services/responsibility.service.mjs +45 -52
- package/fesm2022/vcomply-workflow-engine.mjs +3055 -2942
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/add-multiple-responsibility/add-multiple-responsibility.component.d.ts +0 -2
- package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +0 -2
- package/lib/add-multiple-risk/add-multiple-risk.component.d.ts +0 -2
- package/lib/constants/api.constants.d.ts +7 -0
- package/lib/constants/mock.d.ts +15 -0
- package/lib/interfaces/frequency.interface.d.ts +37 -0
- package/lib/interfaces/responsibilty.interface.d.ts +12 -12
- package/lib/services/common.service.d.ts +28 -0
- package/lib/sharedComponents/frequency/frequency-random/frequency-random.component.d.ts +1 -0
- package/lib/sharedComponents/frequency/frequency.service.d.ts +87 -0
- package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
- package/lib/sharedComponents/program-list/constant.d.ts +9 -0
- package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
- package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
- package/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.d.ts +7 -0
- package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +45 -0
- package/lib/sharedComponents/program-list/program-list.module.d.ts +14 -0
- package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
- package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
- package/lib/ui-kit/loaders/loaders.module.d.ts +8 -0
- package/lib/ui-kit/loaders/table-loader/table-loader.component.d.ts +9 -0
- package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +5 -1
- package/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.d.ts +3 -1
- package/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.d.ts +0 -2
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +32 -6
- package/lib/workflow-engine-container/api-constants.d.ts +1 -0
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +2 -1
- package/lib/workflow-engine.module.d.ts +42 -40
- package/lib/workflow-policy/workflow-policy.component.d.ts +9 -0
- package/lib/workflow-program/workflow-program.component.d.ts +7 -4
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/lib/workflow-services/policy.service.d.ts +1 -0
- package/lib/workflow-services/programs.service.d.ts +13 -53
- package/lib/workflow-services/responsibility.service.d.ts +13 -2
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzcG9uc2liaWx0eS5pbnRlcmZhY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92eC13b3JrZmxvdy1lbmdpbmUvc3JjL2xpYi9pbnRlcmZhY2VzL3Jlc3BvbnNpYmlsdHkuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbnRlcmZhY2UgRnJlcXVlbmN5IHtcbiAgdHlwZTogc3RyaW5nO1xufVxuXG5pbnRlcmZhY2UgQXNzaWduZWUge1xuICB0eXBlOiAnYWxsJyB8ICdhbnknO1xuICB1c2VySWQ6IG51bWJlcltdO1xuICB1c2VyR3JvdXBJZDogbnVtYmVyW107XG59XG5cbmludGVyZmFjZSBSZXNwb25zaWJpbGl0eUNlbnRlciB7XG4gIHR5cGU6ICdhbnknIHwgJ2FsbCc7XG4gIGlkOiBudW1iZXJbXTtcbn1cblxuaW50ZXJmYWNlIFJldmlld2VyRnJlcXVlbmN5IHtcbiAgY29tcGxldGVCeTogbnVtYmVyO1xuICBlbmRBZnRlcjogbnVtYmVyO1xufVxuXG5pbnRlcmZhY2UgUmV2aWV3ZXIge1xuICB0eXBlOiAnc2VxdWVudGlhbCcgfCAnYW55X29uZSc7XG4gIGZyZXF1ZW5jeTogUmV2aWV3ZXJGcmVxdWVuY3k7XG4gIHVzZXJJZDogbnVtYmVyW107XG59XG5cbmludGVyZmFjZSBPdmVyc2Vlckdyb3VwIHtcbiAgdXNlcklkOiBudW1iZXJbXTtcbiAgdXNlckdyb3VwSWQ6IG51bWJlcltdO1xufVxuXG5pbnRlcmZhY2UgT3ZlcnNlZXIge1xuICBzdWNjZXNzOiBPdmVyc2Vlckdyb3VwO1xuICBmYWlsOiBPdmVyc2Vlckdyb3VwO1xufVxuXG5pbnRlcmZhY2UgQ29sbGFib3JhdG9yIHtcbiAgdXNlcklkOiBudW1iZXJbXTtcbiAgdXNlckdyb3VwSWQ6IG51bWJlcltdO1xufVxuXG5pbnRlcmZhY2UgRXZpZGVuY2VGb3JtYXQge1xuICB0eXBlOiAnbGluaycgfCAnZmlsZScgfCAnJztcbiAgZGF0YTogc3RyaW5nW107XG59XG5cbmludGVyZmFjZSBFdmlkZW5jZSB7XG4gIHJlcXVpcmVkOiAnMCB8IDEnO1xuICBmb3JtYXQ6IEV2aWRlbmNlRm9ybWF0O1xufVxuXG5pbnRlcmZhY2UgUHJvZ3JhbSB7XG4gIGlkOiBudW1iZXJbXTtcbiAgdGFnczogeyBba2V5OiBzdHJpbmddOiBzdHJpbmcgfTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBSZXNwb25zaWJpbGl0eSB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGtleTogbnVtYmVyO1xuICByaXNrQ2xhc3M6ICdsb3cnIHwgJ2xvd19tZWRpdW0nIHwgJ21lZGl1bV9oaWdoJyB8ICdoaWdoJztcbiAgbm90ZXM6IHN0cmluZztcbiAgb2JqZWN0aXZlOiBzdHJpbmc7XG4gIGZyZXF1ZW5jeTogRnJlcXVlbmN5O1xuICBhc3NpZ25vcjogbnVtYmVyO1xuICBhc3NpZ25lZTogQXNzaWduZWU7XG4gIHJlc3BvbnNpYmlsaXR5Q2VudGVyOiBSZXNwb25zaWJpbGl0eUNlbnRlciB8IHVuZGVmaW5lZDtcbiAgcmV2aWV3ZXI6IFJldmlld2VyIHwgdW5kZWZpbmVkO1xuICBvdmVyc2VlcjogT3ZlcnNlZXIgfCB1bmRlZmluZWQ7XG4gIGV2aWRlbmNlOiBFdmlkZW5jZTtcbiAgcHJvZ3JhbTogUHJvZ3JhbTtcbiAgZ3JjT2JqZWN0SWQ6IGFueVtdO1xuICBhc3Nlc3NtZW50SWQ6IHN0cmluZztcbn0iXX0=
|