vcomply-workflow-engine 6.0.3 → 6.0.4
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-resolution-deadline/case-resolution-deadline.component.mjs +1 -1
- package/esm2022/lib/report-a-case/components/due-date/due-date.component.mjs +10 -10
- package/esm2022/lib/report-a-case/constants/report-case.constants.mjs +5 -5
- package/fesm2022/vcomply-workflow-engine.mjs +14 -14
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/report-a-case/components/due-date/due-date.component.d.ts +5 -3
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -91,7 +91,9 @@ export declare class DueDateComponent implements OnInit {
|
|
|
91
91
|
errorMessage: {
|
|
92
92
|
rc: string;
|
|
93
93
|
name: string;
|
|
94
|
-
description: string;
|
|
94
|
+
description: string; /**
|
|
95
|
+
* closes the date picker from policy form
|
|
96
|
+
*/
|
|
95
97
|
caseType: string;
|
|
96
98
|
reportDate: string;
|
|
97
99
|
priority: string;
|
|
@@ -124,8 +126,8 @@ export declare class DueDateComponent implements OnInit {
|
|
|
124
126
|
workflowDetails: any;
|
|
125
127
|
userList: any[];
|
|
126
128
|
groupList: any[];
|
|
127
|
-
set initialSelection(value: any);
|
|
128
129
|
mode: string;
|
|
130
|
+
set initialSelection(value: any);
|
|
129
131
|
closeDueDateResolution: EventEmitter<any>;
|
|
130
132
|
closeDueDateEvent: EventEmitter<any>;
|
|
131
133
|
constructor(commonDateService: CommonService, frequencyService: FrequencyService);
|
|
@@ -162,5 +164,5 @@ export declare class DueDateComponent implements OnInit {
|
|
|
162
164
|
documentClick(event: any): void;
|
|
163
165
|
onInputChange(): void;
|
|
164
166
|
static ɵfac: i0.ɵɵFactoryDeclaration<DueDateComponent, never>;
|
|
165
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DueDateComponent, "app-due-date", never, { "payload": { "alias": "payload"; "required": false; }; "dueDate": { "alias": "dueDate"; "required": false; }; "workflowDetails": { "alias": "workflowDetails"; "required": false; }; "userList": { "alias": "userList"; "required": false; }; "groupList": { "alias": "groupList"; "required": false; }; "
|
|
167
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DueDateComponent, "app-due-date", never, { "payload": { "alias": "payload"; "required": false; }; "dueDate": { "alias": "dueDate"; "required": false; }; "workflowDetails": { "alias": "workflowDetails"; "required": false; }; "userList": { "alias": "userList"; "required": false; }; "groupList": { "alias": "groupList"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "initialSelection": { "alias": "initialSelection"; "required": false; }; }, { "closeDueDateResolution": "closeDueDateResolution"; "closeDueDateEvent": "closeDueDateEvent"; }, never, never, false, never>;
|
|
166
168
|
}
|
|
@@ -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": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
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 "
|