vcomply-workflow-engine 6.1.2 → 6.1.3

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 (173) hide show
  1. package/esm2022/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.mjs +7 -34
  2. package/esm2022/lib/constants/api.constants.mjs +6 -1
  3. package/esm2022/lib/constants/assets.constants.mjs +1 -2
  4. package/esm2022/lib/interfaces/frequency.interface.mjs +2 -0
  5. package/esm2022/lib/interfaces/iframe-type.mjs +7 -0
  6. package/esm2022/lib/interfaces/responsibilty.interface.mjs +1 -1
  7. package/esm2022/lib/more-option/more-option.component.mjs +26 -191
  8. package/esm2022/lib/report-a-case/services/report-a-case.service.mjs +3 -2
  9. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +4 -7
  10. package/esm2022/lib/services/common.service.mjs +40 -1
  11. package/esm2022/lib/services/iframe.service.mjs +14 -1
  12. package/esm2022/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.mjs +3 -6
  13. package/esm2022/lib/sharedComponents/category-list-selection/category-list-selection/category-list-selection.component.mjs +7 -7
  14. package/esm2022/lib/sharedComponents/category-list-selection/category-list-selection.module.mjs +27 -4
  15. package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +10 -21
  16. package/esm2022/lib/sharedComponents/frequency/frequency-annual/frequency-annual.component.mjs +5 -1
  17. package/esm2022/lib/sharedComponents/frequency/frequency-biannual/frequency-biannual.component.mjs +5 -1
  18. package/esm2022/lib/sharedComponents/frequency/frequency-container/frequency-container.component.mjs +5 -5
  19. package/esm2022/lib/sharedComponents/frequency/frequency-daily/frequency-daily.component.mjs +2 -1
  20. package/esm2022/lib/sharedComponents/frequency/frequency-monthly/frequency-monthly.component.mjs +6 -2
  21. package/esm2022/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.mjs +3 -2
  22. package/esm2022/lib/sharedComponents/frequency/frequency-ongoing/frequency-ongoing.component.mjs +3 -1
  23. package/esm2022/lib/sharedComponents/frequency/frequency-quarterly/frequency-quarterly.component.mjs +5 -1
  24. package/esm2022/lib/sharedComponents/frequency/frequency-random/frequency-random.component.mjs +9 -2
  25. package/esm2022/lib/sharedComponents/frequency/frequency-weekly/frequency-weekly.component.mjs +4 -2
  26. package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +267 -5
  27. package/esm2022/lib/sharedComponents/group-users-list/group-users-list.component.mjs +5 -2
  28. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +48 -16
  29. package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.module.mjs +8 -4
  30. package/esm2022/lib/sharedComponents/list-container/list-container.component.mjs +52 -0
  31. package/esm2022/lib/sharedComponents/program-list/constant.mjs +27 -0
  32. package/esm2022/lib/sharedComponents/program-list/interfaces/data-source.interface.mjs +2 -0
  33. package/esm2022/lib/sharedComponents/program-list/interfaces/list-item.interface.mjs +2 -0
  34. package/esm2022/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.mjs +23 -0
  35. package/esm2022/lib/sharedComponents/program-list/program-list/program-list.component.mjs +273 -0
  36. package/esm2022/lib/sharedComponents/program-list/program-list.module.mjs +51 -0
  37. package/esm2022/lib/sharedComponents/program-list/services/list-utils.service.mjs +27 -0
  38. package/esm2022/lib/sharedComponents/program-list/services/program-list-api.service.mjs +32 -0
  39. package/esm2022/lib/ui-kit/loaders/loaders.module.mjs +24 -0
  40. package/esm2022/lib/ui-kit/loaders/table-loader/table-loader.component.mjs +19 -0
  41. package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +45 -17
  42. package/esm2022/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +13 -10
  43. package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +62 -35
  44. package/esm2022/lib/workflow/shared/services/grc.service.mjs +15 -2
  45. package/esm2022/lib/workflow/shared/workflow-pipes/get-user-details.pipe.mjs +26 -0
  46. package/esm2022/lib/workflow/shared/workflow-pipes/workflow-pipes.module.mjs +8 -3
  47. package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +294 -453
  48. package/esm2022/lib/workflow-engine-container/api-constants.mjs +3 -2
  49. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +32 -53
  50. package/esm2022/lib/workflow-engine.module.mjs +11 -16
  51. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +46 -29
  52. package/esm2022/lib/workflow-program/constants.mjs +3 -11
  53. package/esm2022/lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe.mjs +1 -7
  54. package/esm2022/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.mjs +13 -11
  55. package/esm2022/lib/workflow-program/workflow-program.component.mjs +340 -311
  56. package/esm2022/lib/workflow-services/policy.service.mjs +8 -9
  57. package/esm2022/lib/workflow-services/programs.service.mjs +26 -114
  58. package/esm2022/lib/workflow-services/responsibility.service.mjs +60 -56
  59. package/fesm2022/vcomply-workflow-engine.mjs +5848 -5338
  60. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  61. package/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.d.ts +0 -1
  62. package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +0 -3
  63. package/lib/add-multiple-risk/add-multiple-risk.component.d.ts +0 -1
  64. package/lib/constants/api.constants.d.ts +5 -0
  65. package/lib/constants/assets.constants.d.ts +0 -1
  66. package/lib/interfaces/frequency.interface.d.ts +37 -0
  67. package/lib/interfaces/iframe-type.d.ts +5 -0
  68. package/lib/interfaces/responsibilty.interface.d.ts +13 -13
  69. package/lib/log-an-issue/log-an-issue.component.d.ts +0 -1
  70. package/lib/more-option/more-option.component.d.ts +0 -1
  71. package/lib/report-a-case/components/assignee/assignee.component.d.ts +0 -1
  72. package/lib/report-a-case/components/case-assignees/case-assignees.component.d.ts +0 -1
  73. package/lib/report-a-case/components/case-category/case-category.component.d.ts +0 -1
  74. package/lib/report-a-case/components/case-details/case-details.component.d.ts +0 -1
  75. package/lib/report-a-case/components/case-owners/case-owners.component.d.ts +0 -1
  76. package/lib/report-a-case/components/case-priority/case-priority.component.d.ts +0 -1
  77. package/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.d.ts +0 -1
  78. package/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.d.ts +0 -1
  79. package/lib/report-a-case/components/due-date/due-date.component.d.ts +0 -1
  80. package/lib/report-a-case/components/field-holder/field-holder.component.d.ts +0 -1
  81. package/lib/report-a-case/components/linked assessment/linked-assessment.component.d.ts +0 -1
  82. package/lib/report-a-case/components/linked-responsibilities/linked-responsibilities.component.d.ts +0 -1
  83. package/lib/report-a-case/components/rc-details/rc-details.component.d.ts +0 -1
  84. package/lib/report-a-case/components/report-date/report-date.component.d.ts +0 -1
  85. package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +0 -1
  86. package/lib/services/common.service.d.ts +28 -0
  87. package/lib/services/iframe.service.d.ts +6 -0
  88. package/lib/sharedComponents/approval-workflow/approval-create-form/approval-create-form.component.d.ts +0 -1
  89. package/lib/sharedComponents/assessment-editor/components/build/image-choice/image-choice.component.d.ts +0 -1
  90. package/lib/sharedComponents/assessment-editor/components/build/thank-you/thank-you.component.d.ts +0 -1
  91. package/lib/sharedComponents/assessment-editor/components/build/welcome/welcome.component.d.ts +0 -1
  92. package/lib/sharedComponents/assessment-editor/components/logic/logic.component.d.ts +0 -1
  93. package/lib/sharedComponents/assessment-editor/components/logic-questions/logic-image-choice/logic-image-choice.component.d.ts +0 -1
  94. package/lib/sharedComponents/assessment-editor/components/preview/thank-you/thank-you.component.d.ts +0 -1
  95. package/lib/sharedComponents/assessment-editor/components/preview/welcome/welcome.component.d.ts +0 -1
  96. package/lib/sharedComponents/assessment-editor/components/welcome-thankyou/welcome-thankyou.component.d.ts +0 -1
  97. package/lib/sharedComponents/assessment-list/assessment-list.component.d.ts +0 -1
  98. package/lib/sharedComponents/audit-category-list/audit-category-list.component.d.ts +0 -1
  99. package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts +0 -6
  100. package/lib/sharedComponents/category-list/category-list.component.d.ts +0 -1
  101. package/lib/sharedComponents/category-list-selection/category-list-selection/category-list-selection.component.d.ts +0 -1
  102. package/lib/sharedComponents/category-list-selection/category-list-selection.module.d.ts +5 -5
  103. package/lib/sharedComponents/category-multiselect/category-multi-select.component.d.ts +0 -1
  104. package/lib/sharedComponents/checkbox-list/checkbox-list.component.d.ts +0 -1
  105. package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +1 -5
  106. package/lib/sharedComponents/framework-list/framework-list.component.d.ts +0 -1
  107. package/lib/sharedComponents/frequency/frequency-random/frequency-random.component.d.ts +1 -0
  108. package/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.d.ts +0 -1
  109. package/lib/sharedComponents/frequency/frequency.service.d.ts +92 -2
  110. package/lib/sharedComponents/group-users-list/group-users-list.component.d.ts +0 -1
  111. package/lib/sharedComponents/link-program/link-program/link-program.component.d.ts +0 -1
  112. package/lib/sharedComponents/link-responsibility/link-responsibility.component.d.ts +2 -1
  113. package/lib/sharedComponents/link-responsibility/link-responsibility.module.d.ts +2 -1
  114. package/lib/sharedComponents/list-container/list-container.component.d.ts +9 -0
  115. package/lib/sharedComponents/owner-list/owner-list.component.d.ts +0 -1
  116. package/lib/sharedComponents/policy-access/policy-access.component.d.ts +0 -1
  117. package/lib/sharedComponents/program-list/constant.d.ts +20 -0
  118. package/lib/sharedComponents/program-list/interfaces/data-source.interface.d.ts +4 -0
  119. package/lib/sharedComponents/program-list/interfaces/list-item.interface.d.ts +5 -0
  120. package/lib/sharedComponents/program-list/pipes/check-selected-items.pipes.d.ts +7 -0
  121. package/lib/sharedComponents/program-list/program-list/program-list.component.d.ts +126 -0
  122. package/lib/sharedComponents/program-list/program-list.module.d.ts +15 -0
  123. package/lib/sharedComponents/program-list/services/list-utils.service.d.ts +7 -0
  124. package/lib/sharedComponents/program-list/services/program-list-api.service.d.ts +14 -0
  125. package/lib/sharedComponents/program-listing/program-listing.component.d.ts +0 -1
  126. package/lib/sharedComponents/radio-list/radio-list.component.d.ts +0 -1
  127. package/lib/sharedComponents/radio-list-with-pagination/radio-list.component.d.ts +0 -1
  128. package/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.d.ts +0 -1
  129. package/lib/sharedComponents/responsibility-risk-selector/responsibility-risk-selector.component.d.ts +0 -1
  130. package/lib/sharedComponents/review-frequency/review-frequency.component.d.ts +0 -1
  131. package/lib/sharedComponents/roles-list/roles-list.component.d.ts +0 -1
  132. package/lib/sharedComponents/select-approvers/select-approvers.component.d.ts +0 -1
  133. package/lib/sharedComponents/users-radio-list/users-radio-list.component.d.ts +0 -1
  134. package/lib/ui-kit/loaders/loaders.module.d.ts +8 -0
  135. package/lib/ui-kit/loaders/table-loader/table-loader.component.d.ts +9 -0
  136. package/lib/ui-kit/pagination/pagination/pagination.component.d.ts +0 -1
  137. package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +5 -1
  138. package/lib/workflow/shared/components/attributes/attributes-checkbox/attributes-checkbox.component.d.ts +0 -1
  139. package/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.d.ts +3 -1
  140. package/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.d.ts +6 -2
  141. package/lib/workflow/shared/services/grc.service.d.ts +1 -0
  142. package/lib/workflow/shared/workflow-pipes/get-user-details.pipe.d.ts +7 -0
  143. package/lib/workflow/shared/workflow-pipes/workflow-pipes.module.d.ts +3 -2
  144. package/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.d.ts +0 -1
  145. package/lib/workflow-assessment/workflow-assessment.component.d.ts +0 -1
  146. package/lib/workflow-compliance/workflow-compliance.component.d.ts +32 -11
  147. package/lib/workflow-engine-container/api-constants.d.ts +1 -0
  148. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +5 -2
  149. package/lib/workflow-engine.module.d.ts +3 -2
  150. package/lib/workflow-policy/workflow-policy.component.d.ts +9 -1
  151. package/lib/workflow-program/constants.d.ts +0 -3
  152. package/lib/workflow-program/create-program-ui/assessment-picker/assessment-picker.component.d.ts +0 -1
  153. package/lib/workflow-program/create-program-ui/define-framework-listing/define-framework-listing.component.d.ts +0 -1
  154. package/lib/workflow-program/create-program-ui/pagination/pagination/pagination.component.d.ts +0 -1
  155. package/lib/workflow-program/create-program-ui/role-list/role-list.component.d.ts +0 -1
  156. package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +0 -1
  157. package/lib/workflow-program/workflow-program.component.d.ts +9 -11
  158. package/lib/workflow-risk/workflow-risk.component.d.ts +1 -2
  159. package/lib/workflow-services/policy.service.d.ts +1 -1
  160. package/lib/workflow-services/programs.service.d.ts +13 -54
  161. package/lib/workflow-services/responsibility.service.d.ts +17 -4
  162. package/lib/workflow-survey-form/workflow-survey-form.component.d.ts +0 -1
  163. package/package.json +1 -1
  164. package/esm2022/lib/constants/policy.constant.mjs +0 -6
  165. package/esm2022/lib/constants/regix.constants.mjs +0 -4
  166. package/esm2022/lib/constants/responsibility.mjs +0 -8
  167. package/esm2022/lib/interfaces/policy.interface.mjs +0 -2
  168. package/esm2022/lib/sharedComponents/pipes/risk-class.pipe.mjs +0 -19
  169. package/lib/constants/policy.constant.d.ts +0 -2
  170. package/lib/constants/regix.constants.d.ts +0 -3
  171. package/lib/constants/responsibility.d.ts +0 -7
  172. package/lib/interfaces/policy.interface.d.ts +0 -5
  173. package/lib/sharedComponents/pipes/risk-class.pipe.d.ts +0 -7
@@ -1,10 +1,13 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Configurations } from '../../configurations';
3
3
  import { AuthService } from '../../workflow-services/auth.service';
4
+ import { FrequencyObject } from '../../interfaces/frequency.interface';
5
+ import { GrcService } from '../../workflow/shared/services/grc.service';
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class FrequencyService {
6
8
  private http;
7
9
  private authService;
10
+ private grcService;
8
11
  monthArray: Array<string>;
9
12
  dayName: Array<string>;
10
13
  quarterlyMonth: Array<string>;
@@ -30,7 +33,7 @@ export declare class FrequencyService {
30
33
  };
31
34
  frequencyDetails: object;
32
35
  private env;
33
- constructor(http: HttpClient, authService: AuthService, config?: Configurations);
36
+ constructor(http: HttpClient, authService: AuthService, grcService: GrcService, config?: Configurations);
34
37
  timeFrom12hTo24h(value: string): string;
35
38
  timeIn12(value: any): string;
36
39
  frameworkStartDate(row: any): number;
@@ -46,7 +49,94 @@ export declare class FrequencyService {
46
49
  changeTimeZone(date: any): Date;
47
50
  getResponsibilityList(payload: any): import("rxjs").Observable<any>;
48
51
  getResponsibilitiesCount(payload: any): import("rxjs").Observable<any>;
52
+ getAllResponsibilities(pageNo: number): import("rxjs").Observable<any[]>;
49
53
  formatDate(): string;
50
- static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null, { optional: true; }]>;
54
+ /**
55
+ * Converts a frequency configuration object into a standardized FrequencyObject format.
56
+ *
57
+ * @param frequency - The input frequency configuration object with the following properties:
58
+ * - case: The type of frequency ('one_time' | 'daily' | 'weekly' | 'monthly' | 'quarterly' | 'semester' | 'yearly' | 'random' | 'ongoing' | 'on_completion_of' | 'biannually')
59
+ * - window: Number of days before the task can be started
60
+ * - failedAfter: Number of days after which the task is considered failed
61
+ * - continuous_failed_days: Number of days after which the task is auto-deactivated
62
+ * - day: The day of occurrence
63
+ * - timeIn24Hr: Time in 24-hour format
64
+ * - every: Frequency interval
65
+ * - selectedDay: Array of selected days for weekly frequency (1-7 representing Monday-Sunday)
66
+ * - selectedMonth: Array of selected months (0-11 representing January-December)
67
+ * - startFrom: Unix timestamp for the start date
68
+ * - lifecycleDetails: String in format "YYYY-MM-DD~~N" where N is the number of occurrences
69
+ * - randomTypeSelected: Index for random frequency type (0: weekly, 1: monthly, 2: quarterly, 3: yearly)
70
+ * - randomInstances: Number of random occurrences
71
+ * - selectedType: Number of reminders for ongoing frequency
72
+ * - selectedOngoingType: Index for ongoing frequency type (1: week, 2: month, 3: quarter, 4: semester, 5: year)
73
+ *
74
+ * @returns A FrequencyObject with the following structure:
75
+ * - type: Frequency type
76
+ * - startBefore: Days before task can start
77
+ * - endAfter: Days after which task fails
78
+ * - autoDeactivate: Days after which task is deactivated
79
+ * - day: Day of occurrence
80
+ * - time: Time in 24-hour format
81
+ * - repeatOptions: {
82
+ * every: number,
83
+ * repeatOn: string (binary representation of selected days/months),
84
+ * lifecycle: {
85
+ * startFrom: string (YYYY-MM-DD),
86
+ * endBy?: string (YYYY-MM-DD),
87
+ * endAfter?: number
88
+ * }
89
+ * }
90
+ * - random?: { type: string, occurrence: number }
91
+ * - onComplete: {}
92
+ * - onGoing: { reminders: number, startOf: 'week' | 'month' | 'quarter' | 'semester' | 'year' }
93
+ *
94
+ * @example
95
+ * ```typescript
96
+ * const frequency = {
97
+ * case: 'weekly',
98
+ * window: 2,
99
+ * failedAfter: 1,
100
+ * continuous_failed_days: 3,
101
+ * day: 1,
102
+ * timeIn24Hr: '09:00:00',
103
+ * every: 1,
104
+ * selectedDay: [1, 3, 5], // Monday, Wednesday, Friday
105
+ * startFrom: 1678900000,
106
+ * lifecycleDetails: '2024-12-31~~10'
107
+ * };
108
+ * const result = setFrequencyObject(frequency);
109
+ * ```
110
+ */
111
+ setFrequencyObject(frequency: any): FrequencyObject | null;
112
+ repeatOptions(frequency: any): string;
113
+ getOngoing(frequency: any): {
114
+ reminders: any;
115
+ startOf: string;
116
+ };
117
+ getRandomFrequency(frequency: any): {
118
+ type: string;
119
+ occurrence: any;
120
+ };
121
+ createFrequencyPattern(frequency: any): string;
122
+ getDay(repeatOptions: string): string;
123
+ getMonth(repeatOptions: string): string;
124
+ getLifecyclePattern(frequency: any): {
125
+ startFrom: number;
126
+ pattern: string;
127
+ };
128
+ /**
129
+ * Converts a date string in "YYYY-MM-DD" format to "DD-Month-YYYY~~0".
130
+ *
131
+ * @param {string} dateString - The input date string in "YYYY-MM-DD" format.
132
+ * @returns {string} - The formatted date string in "DD-Month-YYYY~~0" format.
133
+ *
134
+ * @example
135
+ * ```typescript
136
+ * formatDateString("2025-03-27"); // Returns "27-March-2025~~0"
137
+ * ```
138
+ */
139
+ formatDateString(dateString: string): string;
140
+ static ɵfac: i0.ɵɵFactoryDeclaration<FrequencyService, [null, null, null, { optional: true; }]>;
51
141
  static ɵprov: i0.ɵɵInjectableDeclaration<FrequencyService>;
52
142
  }
@@ -74,7 +74,6 @@ export declare class GroupUsersListComponent implements OnInit, OnChanges {
74
74
  sequential: string;
75
75
  round_robin: string;
76
76
  anyone: string;
77
- collaborator: string;
78
77
  };
79
78
  search: string;
80
79
  selectedIds: any[];
@@ -62,7 +62,6 @@ export declare class LinkProgramComponent implements OnInit {
62
62
  sequential: string;
63
63
  round_robin: string;
64
64
  anyone: string;
65
- collaborator: string;
66
65
  };
67
66
  subCategoriesList: {
68
67
  from: number;
@@ -57,7 +57,8 @@ export declare class LinkResponsibilityListComponent implements OnInit {
57
57
  ngOnInit(): void;
58
58
  back(): void;
59
59
  getResponsibilityValues(): void;
60
- getResponsibilityList(): void;
60
+ getResponsibilityList(pageNo?: number): void;
61
+ private mapResponsibilitiesData;
61
62
  responsibilityPageChange(pageNumber: number): void;
62
63
  deleteItem(item: any): void;
63
64
  save(event: any): void;
@@ -8,8 +8,9 @@ import * as i6 from "../../formgroup/formgroup.module";
8
8
  import * as i7 from "../no-data/no-data.module";
9
9
  import * as i8 from "../v-loader/v-loader.module";
10
10
  import * as i9 from "../../ui-kit/popover/popover.module";
11
+ import * as i10 from "../../ui-kit/pagination/pagination.module";
11
12
  export declare class LinkResponsibilityModule {
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkResponsibilityModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<LinkResponsibilityModule, [typeof i1.LinkResponsibilityListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PipesModule, typeof i5.FloatingBarModule, typeof i6.FormgroupModule, typeof i7.NoDataModule, typeof i8.VLoaderModule, typeof i9.PopoverModule], [typeof i1.LinkResponsibilityListComponent]>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LinkResponsibilityModule, [typeof i1.LinkResponsibilityListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PipesModule, typeof i5.FloatingBarModule, typeof i6.FormgroupModule, typeof i7.NoDataModule, typeof i8.VLoaderModule, typeof i9.PopoverModule, typeof i10.PaginationModule], [typeof i1.LinkResponsibilityListComponent]>;
14
15
  static ɵinj: i0.ɵɵInjectorDeclaration<LinkResponsibilityModule>;
15
16
  }
@@ -0,0 +1,9 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ListContainerComponent {
4
+ heading: string;
5
+ close: EventEmitter<void>;
6
+ onClose(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListContainerComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListContainerComponent, "app-list-container", never, { "heading": { "alias": "heading"; "required": false; }; }, { "close": "close"; }, never, ["[body]", "[footer]"], false, never>;
9
+ }
@@ -79,7 +79,6 @@ export declare class OwnerListComponent implements OnInit, OnChanges {
79
79
  sequential: string;
80
80
  round_robin: string;
81
81
  anyone: string;
82
- collaborator: string;
83
82
  };
84
83
  search: string;
85
84
  selectedIds: any[];
@@ -54,7 +54,6 @@ export declare class PolicyAccessComponent implements OnInit {
54
54
  sequential: string;
55
55
  round_robin: string;
56
56
  anyone: string;
57
- collaborator: string;
58
57
  };
59
58
  policyAccessType: number;
60
59
  SelectedCategory: any;
@@ -0,0 +1,20 @@
1
+ export declare const PROGRAM_TABLE_HEADERS: string[];
2
+ export declare const PAGINATION_OPTIONS: {
3
+ PAGE_SIZE: number;
4
+ DEFAULT_CURRENT_PAGE: number;
5
+ };
6
+ export declare const PROGRAM_TYPE_LIST: {
7
+ name: string;
8
+ id: string;
9
+ }[];
10
+ export declare const PROGRAM_OBJECT: {
11
+ regulations: number;
12
+ standards: number;
13
+ internal_controls: number;
14
+ others: number;
15
+ };
16
+ export declare const PROGRAM_NO_DATA: {
17
+ programList: string;
18
+ categoryList: string;
19
+ search: string;
20
+ };
@@ -0,0 +1,4 @@
1
+ import { Observable } from 'rxjs';
2
+ export interface DataSource<T> {
3
+ load(searchTerm?: string): Observable<T[]>;
4
+ }
@@ -0,0 +1,5 @@
1
+ export interface ListItem {
2
+ id: string;
3
+ name: string;
4
+ type: "regulations" | "standards" | "internal_controls" | "others";
5
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class CheckSelectedItemsPipe implements PipeTransform {
4
+ transform(id: string, selectedItems: any): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckSelectedItemsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CheckSelectedItemsPipe, "checkSelectedItems", false>;
7
+ }
@@ -0,0 +1,126 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
2
+ import { ListItem } from '../interfaces/list-item.interface';
3
+ import { ListUtilsService } from '../services/list-utils.service';
4
+ import { ProgramListApiService } from '../services/program-list-api.service';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * A reusable component for displaying and managing a list of programs with filtering, pagination, and category viewing capabilities.
8
+ *
9
+ * Features:
10
+ * - Program listing with pagination
11
+ * - Search functionality with debounce
12
+ * - Program type filtering
13
+ * - Category viewing for selected programs
14
+ * - Multi-select capability
15
+ *
16
+ * @template T Extends ListItem interface for type safety of list items
17
+ */
18
+ export declare class ProgramListComponent<T extends ListItem> implements OnInit, OnChanges, OnDestroy {
19
+ private listUtils;
20
+ private programListApiService;
21
+ /** Array of items to be displayed in the list */
22
+ items: T[];
23
+ /** Object containing selected items, keyed by program ID */
24
+ selectedItems: any | null;
25
+ /** URL configuration object for API endpoints */
26
+ url: any;
27
+ /** Event emitted when an item is selected */
28
+ itemSelected: EventEmitter<T>;
29
+ /** Event emitted when an item is deselected */
30
+ itemDeselected: EventEmitter<T>;
31
+ /** Event emitted when the selection changes */
32
+ itemsSelectedChange: EventEmitter<T[]>;
33
+ tableHeaders: string[];
34
+ currentPage: number;
35
+ pageSize: number;
36
+ totalPages: number;
37
+ searchTerm: string;
38
+ paginatedItems: T[];
39
+ activeProgram: any | null;
40
+ categoryList: any[];
41
+ programTypeList: any[];
42
+ selectedProgramType: any[];
43
+ loaderState: any;
44
+ appliedProgramType: any[];
45
+ PROGRAM_NO_DATA: any;
46
+ ASSETS: any;
47
+ /** Subject for handling debounced search */
48
+ private searchSubject;
49
+ /** Subject for cleanup subscriptions */
50
+ private destroy$;
51
+ constructor(listUtils: ListUtilsService, programListApiService: ProgramListApiService);
52
+ /** Initialize component by fetching program list */
53
+ ngOnInit(): void;
54
+ /** Handle changes to inputs */
55
+ ngOnChanges(changes: SimpleChanges): void;
56
+ /** Fetch program list from API */
57
+ getProgramList(): void;
58
+ /**
59
+ * Load data and initialize pagination
60
+ * @param data Array of items to load
61
+ */
62
+ loadData(data: any): void;
63
+ /**
64
+ * Handle item selection/deselection
65
+ * @param event Selection event
66
+ * @param item Item being selected/deselected
67
+ */
68
+ selectItem(event: any, item: any): void;
69
+ /**
70
+ * Deselect a specific item
71
+ * @param item Item to deselect
72
+ */
73
+ deselectItem(item: T): void;
74
+ /**
75
+ * Check if an item is selected
76
+ * @param item Item to check
77
+ * @returns Boolean indicating if item is selected
78
+ */
79
+ isSelected(item: T): boolean;
80
+ /**
81
+ * Navigate to specific page
82
+ * @param page Page number to navigate to
83
+ * @param data Data to paginate
84
+ */
85
+ goToPage(page: number, data: any): void;
86
+ /**
87
+ * Get array of page numbers for pagination
88
+ * @returns Array of page numbers
89
+ */
90
+ getPageNumbers(): number[];
91
+ /**
92
+ * Paginate items and update view
93
+ * @param data Data to paginate
94
+ */
95
+ paginateItems(data: any): void;
96
+ /**
97
+ * View categories for a selected program
98
+ * @param item Program to view categories for
99
+ */
100
+ viewCategory(item?: any): void;
101
+ /**
102
+ * Add parent tree information to categories
103
+ * @param categories Array of categories
104
+ * @returns Categories with parent tree information
105
+ */
106
+ addParentTreeToCategories(categories: any[]): any[];
107
+ /**
108
+ * Handle program type filter selection
109
+ * @param event Selection event
110
+ * @param item Program type being selected/deselected
111
+ */
112
+ selectFilter(event: any, item: any): void;
113
+ /** Reset all applied filters */
114
+ resetFilter(): void;
115
+ /** Apply selected filters to the program list */
116
+ onFilterChange(): void;
117
+ checkCategoryAvailbility(): void;
118
+ /** Trigger debounced search */
119
+ search(): void;
120
+ /** Perform search on items */
121
+ private performSearch;
122
+ /** Cleanup subscriptions on component destruction */
123
+ ngOnDestroy(): void;
124
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgramListComponent<any>, never>;
125
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgramListComponent<any>, "app-program-list", never, { "items": { "alias": "items"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, { "itemSelected": "itemSelected"; "itemDeselected": "itemDeselected"; "itemsSelectedChange": "itemsSelectedChange"; }, never, never, false, never>;
126
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./program-list/program-list.component";
3
+ import * as i2 from "./pipes/check-selected-items.pipes";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../../formgroup/formgroup.module";
7
+ import * as i6 from "../../ui-kit/no-data/no-data.module";
8
+ import * as i7 from "../../ui-kit/popover/popover.module";
9
+ import * as i8 from "../../ui-kit/loaders/loaders.module";
10
+ import * as i9 from "../../pipes/pipes.module";
11
+ export declare class ProgramListModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgramListModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProgramListModule, [typeof i1.ProgramListComponent, typeof i2.CheckSelectedItemsPipe], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.FormgroupModule, typeof i6.NoDataModule, typeof i7.PopoverModule, typeof i8.LoadersModule, typeof i9.PipesModule], [typeof i1.ProgramListComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProgramListModule>;
15
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ListUtilsService {
3
+ paginate<T>(items: T[], currentPage: number, pageSize: number): T[];
4
+ getPageNumbers(totalItems: number, pageSize: number): number[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListUtilsService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<ListUtilsService>;
7
+ }
@@ -0,0 +1,14 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { Configurations } from '../../../configurations';
4
+ import { AuthService } from '../../../workflow-services/auth.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ProgramListApiService {
7
+ private http;
8
+ private authService;
9
+ env: any;
10
+ constructor(http: HttpClient, authService: AuthService, config?: Configurations);
11
+ getProgramList(apiUrl: string): Observable<any>;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgramListApiService, [null, null, { optional: true; }]>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProgramListApiService>;
14
+ }
@@ -57,7 +57,6 @@ export declare class ProgramListingComponent implements OnInit {
57
57
  sequential: string;
58
58
  round_robin: string;
59
59
  anyone: string;
60
- collaborator: string;
61
60
  };
62
61
  animation: boolean;
63
62
  subList: boolean;
@@ -68,7 +68,6 @@ export declare class RadioListComponent implements OnInit, AfterViewInit {
68
68
  sequential: string;
69
69
  round_robin: string;
70
70
  anyone: string;
71
- collaborator: string;
72
71
  };
73
72
  constructor();
74
73
  ngOnInit(): void;
@@ -76,7 +76,6 @@ export declare class RadioListWithPaginationComponent implements OnInit {
76
76
  sequential: string;
77
77
  round_robin: string;
78
78
  anyone: string;
79
- collaborator: string;
80
79
  };
81
80
  set setList(value: any);
82
81
  config: panelConfig;
@@ -68,7 +68,6 @@ export declare class ResponsibilityCentersListComponent implements OnInit, OnCha
68
68
  sequential: string;
69
69
  round_robin: string;
70
70
  anyone: string;
71
- collaborator: string;
72
71
  };
73
72
  constructor();
74
73
  ngOnChanges(): void;
@@ -59,7 +59,6 @@ export declare class ResponsibilityRiskSelectorComponent implements OnInit {
59
59
  sequential: string;
60
60
  round_robin: string;
61
61
  anyone: string;
62
- collaborator: string;
63
62
  };
64
63
  set activeEntity(value: any);
65
64
  listItems: never[];
@@ -56,7 +56,6 @@ export declare class ReviewFrequencyComponent implements OnInit {
56
56
  sequential: string;
57
57
  round_robin: string;
58
58
  anyone: string;
59
- collaborator: string;
60
59
  };
61
60
  reviewCompleteDays: any;
62
61
  reviewNOtCompletedDays: any;
@@ -56,7 +56,6 @@ export declare class RolesListComponent implements OnInit {
56
56
  sequential: string;
57
57
  round_robin: string;
58
58
  anyone: string;
59
- collaborator: string;
60
59
  };
61
60
  constructor();
62
61
  ngOnInit(): void;
@@ -62,7 +62,6 @@ export declare class SelectApproversComponent implements OnInit {
62
62
  sequential: string;
63
63
  round_robin: string;
64
64
  anyone: string;
65
- collaborator: string;
66
65
  };
67
66
  constructor();
68
67
  ngOnInit(): void;
@@ -69,7 +69,6 @@ export declare class UserRadioListComponent implements OnInit, OnChanges {
69
69
  sequential: string;
70
70
  round_robin: string;
71
71
  anyone: string;
72
- collaborator: string;
73
72
  };
74
73
  search: string;
75
74
  selectedIds: any[];
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./table-loader/table-loader.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class LoadersModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadersModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LoadersModule, [typeof i1.TableLoaderComponent], [typeof i2.CommonModule], [typeof i1.TableLoaderComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<LoadersModule>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TableLoaderComponent implements OnInit {
4
+ listSize: number[];
5
+ constructor();
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableLoaderComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableLoaderComponent, "app-table-loader", never, { "listSize": { "alias": "listSize"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -54,7 +54,6 @@ export declare class PaginationComponentUI implements OnInit {
54
54
  sequential: string;
55
55
  round_robin: string;
56
56
  anyone: string;
57
- collaborator: string;
58
57
  };
59
58
  alphabetsArray: any;
60
59
  activeAlphabet: string;
@@ -8,6 +8,7 @@ import { UiKitService } from '../../../workflow-services/ui-kit.service';
8
8
  import { ComplianceCommonService } from '../../../workflow-services/common-workflow-services/compliance-common.service';
9
9
  import { OrganizationCommonService } from '../../../workflow-services/common-workflow-services/organization-common.service';
10
10
  import { IframeService } from '../../../services/iframe.service';
11
+ import { CommonService } from '../../../services/common.service';
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
13
14
  private grcService;
@@ -17,6 +18,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
17
18
  private complianceCommonService;
18
19
  private organizationCommonService;
19
20
  private iframeService;
21
+ private CommonService;
20
22
  MODE: 'CREATE' | 'EDIT';
21
23
  ID: string;
22
24
  ALL_TEXT: {
@@ -96,6 +98,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
96
98
  selectedProgram: any[];
97
99
  selectedResponsibility: any[];
98
100
  submitLoader: boolean;
101
+ linkedResponsibilities: any;
99
102
  populateOption: EventEmitter<any>;
100
103
  pickerChanged: EventEmitter<any>;
101
104
  closeWorkflow: EventEmitter<any>;
@@ -104,7 +107,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
104
107
  hideElementsFromMoreOptions: EventEmitter<any>;
105
108
  otherGRCSubscription: Subscription;
106
109
  hideMoreOption: any;
107
- constructor(grcService: GrcService, apiService: ResponsibilityService, authService: AuthService, uiKitService: UiKitService, complianceCommonService: ComplianceCommonService, organizationCommonService: OrganizationCommonService, iframeService: IframeService);
110
+ constructor(grcService: GrcService, apiService: ResponsibilityService, authService: AuthService, uiKitService: UiKitService, complianceCommonService: ComplianceCommonService, organizationCommonService: OrganizationCommonService, iframeService: IframeService, CommonService: CommonService);
108
111
  ngOnDestroy(): void;
109
112
  ngOnInit(): void;
110
113
  getSubscriptionDetails(): void;
@@ -170,6 +173,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
170
173
  resetOtherGRCCard(): void;
171
174
  resetDataOnRCChange(): void;
172
175
  resetMoreOptionsOnRCChange(): void;
176
+ getAllResponsibilities(): void;
173
177
  static ɵfac: i0.ɵɵFactoryDeclaration<GrcObjectContainerComponent, never>;
174
178
  static ɵcmp: i0.ɵɵComponentDeclaration<GrcObjectContainerComponent, "lib-grc-object-container", never, { "grcType": { "alias": "grcType"; "required": false; }; "MODE": { "alias": "MODE"; "required": false; }; "ID": { "alias": "ID"; "required": false; }; }, { "populateOption": "populateOption"; "pickerChanged": "pickerChanged"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; "resetForm": "resetForm"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; }, never, never, false, never>;
175
179
  }
@@ -56,7 +56,6 @@ export declare class AttributesCheckboxComponent implements OnInit {
56
56
  sequential: string;
57
57
  round_robin: string;
58
58
  anyone: string;
59
- collaborator: string;
60
59
  };
61
60
  onSelectedAttributes: EventEmitter<any>;
62
61
  constructor();
@@ -1,6 +1,8 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ResponsibilityService } from '../../../../workflow-services/responsibility.service';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class GrcCategoryListingComponent implements OnInit {
5
+ private responsibilityService;
4
6
  categories: any;
5
7
  tableCard: Array<any>;
6
8
  selectedCategory: any;
@@ -21,7 +23,7 @@ export declare class GrcCategoryListingComponent implements OnInit {
21
23
  set getProgramData(value: any);
22
24
  activeSelectedCategory: EventEmitter<any>;
23
25
  onCategoryPageChange: EventEmitter<any>;
24
- constructor();
26
+ constructor(responsibilityService: ResponsibilityService);
25
27
  ngOnInit(): void;
26
28
  getSelectedCategory(category: any, event: any): void;
27
29
  deleteEvent(category: any): void;
@@ -2,9 +2,13 @@ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { GrcResponsibilityListingComponent } from '../grc-responsibility-listing/grc-responsibility-listing.component';
3
3
  import { Subscription } from 'rxjs';
4
4
  import { GrcService } from '../../services/grc.service';
5
+ import { ResponsibilityService } from '../../../../workflow-services/responsibility.service';
6
+ import { GetUserDetailsPipe } from '../../workflow-pipes/get-user-details.pipe';
5
7
  import * as i0 from "@angular/core";
6
8
  export declare class ProgramResponsibilityListingComponent implements OnInit {
7
9
  private grcService;
10
+ private responsibilityService;
11
+ private getUserDetails;
8
12
  programTypes: {
9
13
  title: string;
10
14
  count: number;
@@ -54,7 +58,7 @@ export declare class ProgramResponsibilityListingComponent implements OnInit {
54
58
  MODE: 'CREATE' | 'EDIT';
55
59
  closeList: EventEmitter<any>;
56
60
  responsibilityListingComponent: GrcResponsibilityListingComponent;
57
- constructor(grcService: GrcService);
61
+ constructor(grcService: GrcService, responsibilityService: ResponsibilityService, getUserDetails: GetUserDetailsPipe);
58
62
  ngOnInit(): void;
59
63
  close(): void;
60
64
  save(): void;
@@ -70,7 +74,7 @@ export declare class ProgramResponsibilityListingComponent implements OnInit {
70
74
  activeSelectedSubCategory(event: any): void;
71
75
  getResponsibilitiesList(event?: any): void;
72
76
  getUpdatedDataList(event: any): void;
73
- setDataListStructure(res: any): any;
77
+ setDataListStructure(responsibilities: any[], users: any[], responsibilityCenters: any[]): any[];
74
78
  onSelectedProgramChange(): void;
75
79
  changeSelectedProgramAndResp(event: any): void;
76
80
  getSelectedProgramIds(selectedData: any): void;
@@ -17,6 +17,7 @@ export declare class GrcService {
17
17
  readonly GRC_PAYLOAD: AddGrc;
18
18
  readonly LIST_OBJECT: ListObject;
19
19
  constructor(http: HttpClient, authService: AuthService, config?: Configurations);
20
+ getAllResponsibilities(pageNo: number): import("rxjs").Observable<any[]>;
20
21
  getGRCList(event?: any): import("rxjs").Observable<any[]>;
21
22
  getGRCTabsCount(event?: any): import("rxjs").Observable<any[]>;
22
23
  checkValidation(grcPayload: AddGrc, isAttributesSelected: boolean): boolean | 0;
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class GetUserDetailsPipe implements PipeTransform {
4
+ transform(ids: number[], list: any[]): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetUserDetailsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetUserDetailsPipe, "getUserDetails", false>;
7
+ }
@@ -2,9 +2,10 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./get-selected-value.pipe";
3
3
  import * as i2 from "./is-attributes-valid.pipe";
4
4
  import * as i3 from "./unique-responsibilities.pipe";
5
- import * as i4 from "@angular/common";
5
+ import * as i4 from "./get-user-details.pipe";
6
+ import * as i5 from "@angular/common";
6
7
  export declare class WorkflowPipesModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPipesModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowPipesModule, [typeof i1.GetSelectedValuePipe, typeof i2.IsAttributesValidPipe, typeof i3.UniqueResponsibilitiesPipe], [typeof i4.CommonModule], [typeof i1.GetSelectedValuePipe, typeof i2.IsAttributesValidPipe, typeof i3.UniqueResponsibilitiesPipe]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowPipesModule, [typeof i1.GetSelectedValuePipe, typeof i2.IsAttributesValidPipe, typeof i3.UniqueResponsibilitiesPipe, typeof i4.GetUserDetailsPipe], [typeof i5.CommonModule], [typeof i1.GetSelectedValuePipe, typeof i2.IsAttributesValidPipe, typeof i3.UniqueResponsibilitiesPipe, typeof i4.GetUserDetailsPipe]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<WorkflowPipesModule>;
10
11
  }