vcomply-workflow-engine 3.6.6 → 3.6.8
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/workflow-policy/workflow-policy.component.mjs +36 -34
- package/fesm2022/vcomply-workflow-engine.mjs +7 -6
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow-policy/workflow-policy.component.d.ts +3 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ import { FrequencyService } from '../sharedComponents/frequency/frequency.servic
|
|
|
13
13
|
import { FormatAndEvidenceComponent } from '../sharedComponents/format-and-evidence/format-and-evidence.component';
|
|
14
14
|
import { RestApiService } from '../sharedComponents/link-program/restapi.service';
|
|
15
15
|
import { CommonService } from '../services/common.service';
|
|
16
|
+
import { OrganizationUserService } from '../workflow-services/organization-user.service';
|
|
16
17
|
import * as i0 from "@angular/core";
|
|
17
18
|
export declare class WorkflowPolicyComponent implements OnInit {
|
|
18
19
|
private policyService;
|
|
@@ -26,6 +27,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
26
27
|
private changeRef;
|
|
27
28
|
private restApiService;
|
|
28
29
|
private commonService;
|
|
30
|
+
private organizationUserService;
|
|
29
31
|
pickerChanged: EventEmitter<any>;
|
|
30
32
|
mode: string;
|
|
31
33
|
policyId: string;
|
|
@@ -156,7 +158,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
156
158
|
createApprovalClick: boolean;
|
|
157
159
|
editWorkflowLevel: {};
|
|
158
160
|
noWorkflowSelected: boolean;
|
|
159
|
-
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService);
|
|
161
|
+
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService, organizationUserService: OrganizationUserService);
|
|
160
162
|
policyForm: PolicyForm;
|
|
161
163
|
ngOnInit(): void;
|
|
162
164
|
/**
|
|
@@ -104,7 +104,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
104
104
|
setPopupButtons(): void;
|
|
105
105
|
getRiskDetails(riskId: any): void;
|
|
106
106
|
populateOptionalFields(): void;
|
|
107
|
-
setCategoryType(type: any): "
|
|
107
|
+
setCategoryType(type: any): "compliance" | "strategic" | "operational" | "others";
|
|
108
108
|
getRCList(): void;
|
|
109
109
|
getCategoryList(): void;
|
|
110
110
|
getOwnersList(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.8",
|
|
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 "
|