vcomply-workflow-engine 6.0.91 → 6.0.93

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 (105) hide show
  1. package/esm2022/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +7 -30
  2. package/esm2022/lib/constants/api.constants.mjs +6 -1
  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/bulk-responsibility-view/bulk-responsibility-view.component.mjs +3 -6
  12. package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +10 -21
  13. package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
  14. package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
  15. package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +5 -5
  16. package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
  17. package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
  18. package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +3 -2
  19. package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
  20. package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
  21. package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +9 -2
  22. package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
  23. package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +267 -5
  24. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +48 -16
  25. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.module.mjs +8 -4
  26. package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
  27. package/esm2022/lib/sharedComponents/program-list/constant.mjs +27 -0
  28. package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
  29. package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
  30. package/esm2022/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.mjs +23 -0
  31. package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +269 -0
  32. package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +51 -0
  33. package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
  34. package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
  35. package/esm2022/lib/ui-kit/loaders/loaders.module.mjs +24 -0
  36. package/esm2022/lib/ui-kit/loaders/table-loader/table-loader.component.mjs +19 -0
  37. package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +45 -17
  38. package/esm2022/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +13 -10
  39. package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +62 -35
  40. package/esm2022/lib/workflow/shared/services/grc.service.mjs +15 -2
  41. package/esm2022/lib/workflow/shared/workflow-pipes/get-user-details.pipe.mjs +26 -0
  42. package/esm2022/lib/workflow/shared/workflow-pipes/workflow-pipes.module.mjs +8 -3
  43. package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +294 -453
  44. package/esm2022/lib/workflow-engine-container/api-constants.mjs +3 -2
  45. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +32 -53
  46. package/esm2022/lib/workflow-engine.module.mjs +11 -7
  47. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +46 -29
  48. package/esm2022/lib/workflow-program/constants.mjs +3 -3
  49. package/esm2022/lib/workflow-program/workflow-program.component.mjs +125 -338
  50. package/esm2022/lib/workflow-services/policy.service.mjs +8 -9
  51. package/esm2022/lib/workflow-services/programs.service.mjs +26 -113
  52. package/esm2022/lib/workflow-services/responsibility.service.mjs +60 -55
  53. package/fesm2022/vcomply-workflow-engine.mjs +4796 -4532
  54. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  55. package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +0 -3
  56. package/lib/constants/api.constants.d.ts +5 -0
  57. package/lib/interfaces/frequency.interface.d.ts +37 -0
  58. package/lib/interfaces/iframe-type.d.ts +5 -0
  59. package/lib/interfaces/responsibilty.interface.d.ts +13 -13
  60. package/lib/services/common.service.d.ts +28 -0
  61. package/lib/services/iframe.service.d.ts +6 -0
  62. package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts +0 -6
  63. package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +1 -4
  64. package/lib/sharedComponents/frequency/frequency-random/frequency-random.component.d.ts +1 -0
  65. package/lib/sharedComponents/frequency/frequency.service.d.ts +92 -2
  66. package/lib/sharedComponents/link-responsibility/link-responsibility.component.d.ts +2 -1
  67. package/lib/sharedComponents/link-responsibility/link-responsibility.module.d.ts +2 -1
  68. package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
  69. package/lib/sharedComponents/program-list/constant.d.ts +20 -0
  70. package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
  71. package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
  72. package/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.d.ts +7 -0
  73. package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +125 -0
  74. package/lib/sharedComponents/program-list/program-list.module.d.ts +15 -0
  75. package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
  76. package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
  77. package/lib/ui-kit/loaders/loaders.module.d.ts +8 -0
  78. package/lib/ui-kit/loaders/table-loader/table-loader.component.d.ts +9 -0
  79. package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +5 -1
  80. package/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.d.ts +3 -1
  81. package/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.d.ts +6 -2
  82. package/lib/workflow/shared/services/grc.service.d.ts +1 -0
  83. package/lib/workflow/shared/workflow-pipes/get-user-details.pipe.d.ts +7 -0
  84. package/lib/workflow/shared/workflow-pipes/workflow-pipes.module.d.ts +3 -2
  85. package/lib/workflow-compliance/workflow-compliance.component.d.ts +32 -10
  86. package/lib/workflow-engine-container/api-constants.d.ts +1 -0
  87. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +5 -2
  88. package/lib/workflow-engine.module.d.ts +3 -2
  89. package/lib/workflow-policy/workflow-policy.component.d.ts +9 -0
  90. package/lib/workflow-program/workflow-program.component.d.ts +8 -4
  91. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
  92. package/lib/workflow-services/policy.service.d.ts +1 -1
  93. package/lib/workflow-services/programs.service.d.ts +13 -53
  94. package/lib/workflow-services/responsibility.service.d.ts +17 -4
  95. package/package.json +1 -1
  96. package/esm2022/lib/constants/policy.constant.mjs +0 -6
  97. package/esm2022/lib/constants/regix.constants.mjs +0 -4
  98. package/esm2022/lib/constants/responsibility.mjs +0 -8
  99. package/esm2022/lib/interfaces/policy.interface.mjs +0 -2
  100. package/esm2022/lib/sharedComponents/pipes/risk-class.pipe.mjs +0 -19
  101. package/lib/constants/policy.constant.d.ts +0 -2
  102. package/lib/constants/regix.constants.d.ts +0 -3
  103. package/lib/constants/responsibility.d.ts +0 -7
  104. package/lib/interfaces/policy.interface.d.ts +0 -5
  105. package/lib/sharedComponents/pipes/risk-class.pipe.d.ts +0 -7
@@ -1,19 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- import { RISK_CLASS_LIST } from '../../constants/responsibility';
3
- import * as i0 from "@angular/core";
4
- export class RiskClassPipe {
5
- transform(value) {
6
- if (!value)
7
- return true;
8
- return RISK_CLASS_LIST.includes(value?.toLowerCase());
9
- }
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RiskClassPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
11
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: RiskClassPipe, name: "riskClass" }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RiskClassPipe, decorators: [{
14
- type: Pipe,
15
- args: [{
16
- name: 'riskClass',
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmlzay1jbGFzcy5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdngtd29ya2Zsb3ctZW5naW5lL3NyYy9saWIvc2hhcmVkQ29tcG9uZW50cy9waXBlcy9yaXNrLWNsYXNzLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDOztBQUtqRSxNQUFNLE9BQU8sYUFBYTtJQUN4QixTQUFTLENBQUMsS0FBYTtRQUNyQixJQUFHLENBQUMsS0FBSztZQUFFLE9BQU8sSUFBSSxDQUFDO1FBQ3ZCLE9BQU8sZUFBZSxDQUFDLFFBQVEsQ0FBQyxLQUFLLEVBQUUsV0FBVyxFQUFFLENBQUMsQ0FBQztJQUN4RCxDQUFDOytHQUpVLGFBQWE7NkdBQWIsYUFBYTs7NEZBQWIsYUFBYTtrQkFIekIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsV0FBVztpQkFDbEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSSVNLX0NMQVNTX0xJU1QgfSBmcm9tICcuLi8uLi9jb25zdGFudHMvcmVzcG9uc2liaWxpdHknO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdyaXNrQ2xhc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBSaXNrQ2xhc3NQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nKTogYm9vbGVhbiB7XG4gICAgaWYoIXZhbHVlKSByZXR1cm4gdHJ1ZTtcbiAgICByZXR1cm4gUklTS19DTEFTU19MSVNULmluY2x1ZGVzKHZhbHVlPy50b0xvd2VyQ2FzZSgpKTtcbiAgfVxufVxuIl19
@@ -1,2 +0,0 @@
1
- import { FileSize } from "../interfaces/policy.interface";
2
- export declare const FILE_SIZE: FileSize;
@@ -1,3 +0,0 @@
1
- export declare const REGEX: {
2
- MONTH: RegExp;
3
- };
@@ -1,7 +0,0 @@
1
- export declare const RISK_CLASS_LIST: string[];
2
- export declare const VALIDATION_MESSAGES: {
3
- RISK_CLASS: string;
4
- DAY: string;
5
- DATE_FORMAT: string;
6
- DUE_DATE: string;
7
- };
@@ -1,5 +0,0 @@
1
- export interface FileSize {
2
- MAX_SIZE: number;
3
- ERROR: 'success' | 'warning' | 'info' | 'alert' | 'error';
4
- MESSAGE: string;
5
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class RiskClassPipe implements PipeTransform {
4
- transform(value: string): boolean;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<RiskClassPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<RiskClassPipe, "riskClass", false>;
7
- }