vcomply-workflow-engine 6.1.30 → 6.1.32
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/log-an-issue/log-an-issue.component.mjs +9 -1
- package/esm2022/lib/report-a-case/components/due-date/due-date.component.mjs +5 -9
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +15 -6
- package/fesm2022/vcomply-workflow-engine.mjs +26 -13
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/log-an-issue/log-an-issue.component.d.ts +1 -0
- package/lib/report-a-case/components/due-date/due-date.component.d.ts +0 -1
- package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +1 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -252,6 +252,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
252
252
|
selectFile(type: string, files: any): void;
|
|
253
253
|
uploadFile(file: any, type: string): void;
|
|
254
254
|
deleteFile(file: any, type: string): void;
|
|
255
|
+
handleIssueIdFromResponse(res: any): void;
|
|
255
256
|
addIssue(): void;
|
|
256
257
|
closeSmiley(evt?: any): void;
|
|
257
258
|
/**
|
|
@@ -190,7 +190,6 @@ export declare class DueDateComponent implements OnInit {
|
|
|
190
190
|
constructor(commonDateService: CommonService, frequencyService: FrequencyService);
|
|
191
191
|
ngOnInit(): void;
|
|
192
192
|
private initializeEditMode;
|
|
193
|
-
private parseDateString;
|
|
194
193
|
private initializeDeadlineValues;
|
|
195
194
|
private initializeStageAssignees;
|
|
196
195
|
private setMinDate;
|
|
@@ -298,6 +298,7 @@ export declare class WorkflowCaseComponent implements OnInit, OnDestroy {
|
|
|
298
298
|
onPriorityChange(event: any): void;
|
|
299
299
|
onRcChange(event: any): void;
|
|
300
300
|
onCaseTypeDropdownChange(event: any): void;
|
|
301
|
+
handleCaseIdFromResponse(res: any): void;
|
|
301
302
|
reportCase(): void;
|
|
302
303
|
updateCase(): void;
|
|
303
304
|
checkValidation(payload: any): boolean;
|
|
@@ -168,7 +168,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
168
168
|
setPopupButtons(): void;
|
|
169
169
|
getRiskDetails(riskId: any): void;
|
|
170
170
|
populateOptionalFields(): void;
|
|
171
|
-
setCategoryType(type: any): "
|
|
171
|
+
setCategoryType(type: any): "others" | "strategic" | "operational" | "compliance";
|
|
172
172
|
getRCList(): void;
|
|
173
173
|
getCategoryList(): void;
|
|
174
174
|
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.32",
|
|
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 "
|