vcomply-workflow-engine 6.1.64 → 6.1.66
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/interfaces/responsibilty.interface.mjs +1 -1
- package/esm2022/lib/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +4 -2
- package/esm2022/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.mjs +4 -3
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +2 -2
- package/esm2022/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +15 -11
- package/esm2022/lib/workflow/shared/components/grc-responsibility-listing/grc-responsibility-listing.component.mjs +3 -3
- package/esm2022/lib/workflow/shared/components/program-responsibility-listing/program-responsibility-listing.component.mjs +2 -2
- package/esm2022/lib/workflow/shared/services/grc.service.mjs +2 -3
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +30 -8
- package/esm2022/lib/workflow-services/responsibility.service.mjs +2 -3
- package/fesm2022/vcomply-workflow-engine.mjs +55 -28
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/interfaces/responsibilty.interface.d.ts +1 -1
- package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -132,7 +132,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
|
|
|
132
132
|
* `data` property is an array of user objects.
|
|
133
133
|
*/
|
|
134
134
|
private mapUserList;
|
|
135
|
-
getAllResponsibilitiesList(): void;
|
|
135
|
+
getAllResponsibilitiesList(linkedResponsibilities?: any): void;
|
|
136
136
|
/**
|
|
137
137
|
* The function `defaultSelectedUser()` sets the default selected user based on the current user's role
|
|
138
138
|
* and assigns it to the `OWNER` list object.
|
|
@@ -515,6 +515,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
515
515
|
customItemTemplate: TemplateRef<any> | undefined;
|
|
516
516
|
onItemsSelectedChange(items: ListItem[]): void;
|
|
517
517
|
selectCategory(): void;
|
|
518
|
+
generateCustomTags(): void;
|
|
518
519
|
get currentUserInfo(): {
|
|
519
520
|
member_email: any;
|
|
520
521
|
member_id: any;
|
|
@@ -167,7 +167,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
167
167
|
setPopupButtons(): void;
|
|
168
168
|
getRiskDetails(riskId: any): void;
|
|
169
169
|
populateOptionalFields(): void;
|
|
170
|
-
setCategoryType(type: any): "
|
|
170
|
+
setCategoryType(type: any): "compliance" | "strategic" | "others" | "operational";
|
|
171
171
|
getRCList(): void;
|
|
172
172
|
getCategoryList(): void;
|
|
173
173
|
getOwnersList(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.66",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|