vcomply-workflow-engine 5.0.20 → 5.0.22
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/report-a-case/components/case-category/case-category.component.mjs +1 -2
- package/esm2022/lib/report-a-case/components/case-owners/case-owners.component.mjs +14 -7
- package/esm2022/lib/report-a-case/components/chip-capsule/chip-capsule.component.mjs +1 -2
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +4 -4
- package/esm2022/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.mjs +1 -2
- package/fesm2022/vcomply-workflow-engine.mjs +15 -11
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/report-a-case/components/case-owners/case-owners.component.d.ts +4 -2
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
|
|
3
3
|
import { ReportACaseService } from '../../services/report-a-case.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaseOwnersComponent implements OnInit {
|
|
5
|
+
export declare class CaseOwnersComponent implements OnInit, OnDestroy {
|
|
6
6
|
private reportACaseService;
|
|
7
7
|
ASSETS: {
|
|
8
8
|
responsibility_center: string;
|
|
@@ -120,6 +120,7 @@ export declare class CaseOwnersComponent implements OnInit {
|
|
|
120
120
|
selectedOwnerList: any[];
|
|
121
121
|
workflowDetails: any;
|
|
122
122
|
fieldSelector: string[];
|
|
123
|
+
isInternalChange: boolean;
|
|
123
124
|
payload: any;
|
|
124
125
|
fieldSelected: string;
|
|
125
126
|
set initialSelection(value: any);
|
|
@@ -128,6 +129,7 @@ export declare class CaseOwnersComponent implements OnInit {
|
|
|
128
129
|
mode: string;
|
|
129
130
|
fieldClicked: EventEmitter<any>;
|
|
130
131
|
constructor(reportACaseService: ReportACaseService);
|
|
132
|
+
ngOnDestroy(): void;
|
|
131
133
|
ngOnInit(): void;
|
|
132
134
|
getWorkflowDetails(): void;
|
|
133
135
|
getCaseOwnersList(workflowId: string): void;
|
|
@@ -111,7 +111,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
111
111
|
setPopupButtons(): void;
|
|
112
112
|
getRiskDetails(riskId: any): void;
|
|
113
113
|
populateOptionalFields(): void;
|
|
114
|
-
setCategoryType(type: any): "
|
|
114
|
+
setCategoryType(type: any): "strategic" | "compliance" | "operational" | "others";
|
|
115
115
|
getRCList(): void;
|
|
116
116
|
getCategoryList(): void;
|
|
117
117
|
getOwnersList(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.22",
|
|
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 "
|