vcomply-workflow-engine 6.0.86 → 6.0.88

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.
Files changed (97) hide show
  1. package/esm2022/lib/constants/api.constants.mjs +6 -1
  2. package/esm2022/lib/constants/mock.mjs +152 -0
  3. package/esm2022/lib/interfaces/frequency.interface.mjs +2 -0
  4. package/esm2022/lib/interfaces/iframe-type.mjs +7 -0
  5. package/esm2022/lib/interfaces/responsibilty.interface.mjs +1 -1
  6. package/esm2022/lib/more-option/more-option.component.mjs +17 -183
  7. package/esm2022/lib/report-a-case/services/report-a-case.service.mjs +3 -2
  8. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +4 -7
  9. package/esm2022/lib/services/common.service.mjs +40 -1
  10. package/esm2022/lib/services/iframe.service.mjs +14 -1
  11. package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +10 -21
  12. package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
  13. package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
  14. package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +5 -5
  15. package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
  16. package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
  17. package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +3 -2
  18. package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
  19. package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
  20. package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +9 -2
  21. package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
  22. package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +267 -5
  23. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +48 -16
  24. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.module.mjs +8 -4
  25. package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
  26. package/esm2022/lib/sharedComponents/program-list/constant.mjs +16 -0
  27. package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
  28. package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
  29. package/esm2022/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.mjs +23 -0
  30. package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +182 -0
  31. package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +47 -0
  32. package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
  33. package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
  34. package/esm2022/lib/ui-kit/loaders/loaders.module.mjs +24 -0
  35. package/esm2022/lib/ui-kit/loaders/table-loader/table-loader.component.mjs +19 -0
  36. package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +45 -17
  37. package/esm2022/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +13 -10
  38. package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +62 -35
  39. package/esm2022/lib/workflow/shared/services/grc.service.mjs +15 -2
  40. package/esm2022/lib/workflow/shared/workflow-pipes/get-user-details.pipe.mjs +26 -0
  41. package/esm2022/lib/workflow/shared/workflow-pipes/workflow-pipes.module.mjs +8 -3
  42. package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +294 -453
  43. package/esm2022/lib/workflow-engine-container/api-constants.mjs +3 -2
  44. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +32 -53
  45. package/esm2022/lib/workflow-engine.module.mjs +13 -6
  46. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +46 -29
  47. package/esm2022/lib/workflow-program/constants.mjs +3 -3
  48. package/esm2022/lib/workflow-program/workflow-program.component.mjs +123 -338
  49. package/esm2022/lib/workflow-services/policy.service.mjs +8 -9
  50. package/esm2022/lib/workflow-services/programs.service.mjs +26 -113
  51. package/esm2022/lib/workflow-services/responsibility.service.mjs +60 -55
  52. package/fesm2022/vcomply-workflow-engine.mjs +5112 -4894
  53. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  54. package/lib/constants/api.constants.d.ts +5 -0
  55. package/lib/constants/mock.d.ts +15 -0
  56. package/lib/interfaces/frequency.interface.d.ts +37 -0
  57. package/lib/interfaces/iframe-type.d.ts +5 -0
  58. package/lib/interfaces/responsibilty.interface.d.ts +13 -13
  59. package/lib/services/common.service.d.ts +28 -0
  60. package/lib/services/iframe.service.d.ts +6 -0
  61. package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +1 -4
  62. package/lib/sharedComponents/frequency/frequency-random/frequency-random.component.d.ts +1 -0
  63. package/lib/sharedComponents/frequency/frequency.service.d.ts +92 -2
  64. package/lib/sharedComponents/link-responsibility/link-responsibility.component.d.ts +2 -1
  65. package/lib/sharedComponents/link-responsibility/link-responsibility.module.d.ts +2 -1
  66. package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
  67. package/lib/sharedComponents/program-list/constant.d.ts +9 -0
  68. package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
  69. package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
  70. package/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.d.ts +7 -0
  71. package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +45 -0
  72. package/lib/sharedComponents/program-list/program-list.module.d.ts +14 -0
  73. package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
  74. package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
  75. package/lib/ui-kit/loaders/loaders.module.d.ts +8 -0
  76. package/lib/ui-kit/loaders/table-loader/table-loader.component.d.ts +9 -0
  77. package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +5 -1
  78. package/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.d.ts +3 -1
  79. package/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.d.ts +6 -2
  80. package/lib/workflow/shared/services/grc.service.d.ts +1 -0
  81. package/lib/workflow/shared/workflow-pipes/get-user-details.pipe.d.ts +7 -0
  82. package/lib/workflow/shared/workflow-pipes/workflow-pipes.module.d.ts +3 -2
  83. package/lib/workflow-compliance/workflow-compliance.component.d.ts +32 -10
  84. package/lib/workflow-engine-container/api-constants.d.ts +1 -0
  85. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +5 -2
  86. package/lib/workflow-engine.module.d.ts +42 -40
  87. package/lib/workflow-policy/workflow-policy.component.d.ts +9 -0
  88. package/lib/workflow-program/workflow-program.component.d.ts +8 -4
  89. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
  90. package/lib/workflow-services/policy.service.d.ts +1 -1
  91. package/lib/workflow-services/programs.service.d.ts +13 -53
  92. package/lib/workflow-services/responsibility.service.d.ts +17 -4
  93. package/package.json +1 -1
  94. package/esm2022/lib/constants/policy.constant.mjs +0 -6
  95. package/esm2022/lib/interfaces/policy.interface.mjs +0 -2
  96. package/lib/constants/policy.constant.d.ts +0 -2
  97. package/lib/interfaces/policy.interface.d.ts +0 -5
@@ -1,5 +1,6 @@
1
1
  export const API_URLS = {
2
2
  fetchPolicyList: 'policy/fetchPolicyList&policyLink=true',
3
- LINKED_POLICIES: 'policy/linkedPolicies&policyId='
3
+ LINKED_POLICIES: 'policy/linkedPolicies&policyId=',
4
+ LINKED_PROGRAMS: 'getLinkedPrograms&polid='
4
5
  };
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWNvbnN0YW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Z4LXdvcmtmbG93LWVuZ2luZS9zcmMvbGliL3dvcmtmbG93LWVuZ2luZS1jb250YWluZXIvYXBpLWNvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxRQUFRLEdBQUc7SUFDdEIsZUFBZSxFQUFFLHdDQUF3QztJQUN6RCxlQUFlLEVBQUMsaUNBQWlDO0NBQ2xELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgQVBJX1VSTFMgPSB7XG4gIGZldGNoUG9saWN5TGlzdDogJ3BvbGljeS9mZXRjaFBvbGljeUxpc3QmcG9saWN5TGluaz10cnVlJyxcbiAgTElOS0VEX1BPTElDSUVTOidwb2xpY3kvbGlua2VkUG9saWNpZXMmcG9saWN5SWQ9J1xufTtcbiJdfQ==
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWNvbnN0YW50cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Z4LXdvcmtmbG93LWVuZ2luZS9zcmMvbGliL3dvcmtmbG93LWVuZ2luZS1jb250YWluZXIvYXBpLWNvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxRQUFRLEdBQUc7SUFDdEIsZUFBZSxFQUFFLHdDQUF3QztJQUN6RCxlQUFlLEVBQUMsaUNBQWlDO0lBQ2pELGVBQWUsRUFBQywwQkFBMEI7Q0FDM0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBBUElfVVJMUyA9IHtcbiAgZmV0Y2hQb2xpY3lMaXN0OiAncG9saWN5L2ZldGNoUG9saWN5TGlzdCZwb2xpY3lMaW5rPXRydWUnLFxuICBMSU5LRURfUE9MSUNJRVM6J3BvbGljeS9saW5rZWRQb2xpY2llcyZwb2xpY3lJZD0nLFxuICBMSU5LRURfUFJPR1JBTVM6J2dldExpbmtlZFByb2dyYW1zJnBvbGlkPSdcbn07XG4iXX0=