vcomply-workflow-engine 7.1.3 → 7.1.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/more-option/more-option.component.mjs +10 -1
- package/esm2022/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.mjs +77 -13
- package/esm2022/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.mjs +13 -35
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +36 -23
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +1 -4
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +8 -7
- package/fesm2022/vcomply-workflow-engine.mjs +211 -150
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.d.ts +1 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -5
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class FrequencyOnCompletionOfComponent implements OnInit {
|
|
|
17
17
|
placeholder: string;
|
|
18
18
|
frequencyInfo: any;
|
|
19
19
|
selectedResponsibilityDetails: any;
|
|
20
|
+
selectedResponsibilityListPrefill: any;
|
|
20
21
|
startDate: number;
|
|
21
22
|
frequencyData: any;
|
|
22
23
|
lifecycleDetails: any;
|
|
@@ -221,11 +221,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
221
221
|
time: string;
|
|
222
222
|
failedTime: string;
|
|
223
223
|
continuous_failed_days: number;
|
|
224
|
-
onCompletionReportDetails:
|
|
225
|
-
onCompletionResponsibility?: {
|
|
226
|
-
id?: number;
|
|
227
|
-
title?: string;
|
|
228
|
-
} | null;
|
|
224
|
+
onCompletionReportDetails: {};
|
|
229
225
|
};
|
|
230
226
|
frequencyObject: FrequencyObject | null;
|
|
231
227
|
frequencyPlaceholder: string;
|
|
@@ -169,7 +169,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
169
169
|
setPopupButtons(): void;
|
|
170
170
|
getRiskDetails(riskId: any): void;
|
|
171
171
|
populateOptionalFields(): void;
|
|
172
|
-
setCategoryType(type: any): "
|
|
172
|
+
setCategoryType(type: any): "compliance" | "strategic" | "others" | "operational";
|
|
173
173
|
getRCList(): void;
|
|
174
174
|
getCategoryList(): void;
|
|
175
175
|
getOwnersList(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.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 "
|