vcomply-workflow-engine 5.0.34 → 6.0.1
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/pipes/get-editor-config.pipe.mjs +3 -3
- package/esm2022/lib/report-a-case/components/case-category/case-category.component.mjs +42 -23
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +2 -1
- package/fesm2022/vcomply-workflow-engine.mjs +44 -24
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/pipes/get-editor-config.pipe.d.ts +1 -1
- package/lib/report-a-case/components/case-category/case-category.component.d.ts +3 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { PipeTransform } from '@angular/core';
|
|
|
2
2
|
import { EditorConfig } from '@vcomply/editor';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class GetEditorConfigPipe implements PipeTransform {
|
|
5
|
-
transform(index: number): EditorConfig;
|
|
5
|
+
transform(index: number, additionalValue: string): EditorConfig;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<GetEditorConfigPipe, never>;
|
|
7
7
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetEditorConfigPipe, "getEditorConfig", false>;
|
|
8
8
|
}
|
|
@@ -145,6 +145,9 @@ export declare class CaseCategoryComponent implements OnInit, OnChanges {
|
|
|
145
145
|
ngOnChanges(changes: SimpleChanges): void;
|
|
146
146
|
getAllCategories(): void;
|
|
147
147
|
populateInitialCategory(): void;
|
|
148
|
+
private isACTWWorkflow;
|
|
149
|
+
private isRACWorkflow;
|
|
150
|
+
private handleDefaultCase;
|
|
148
151
|
updateRACCategory(): void;
|
|
149
152
|
updateACTWCategory(): void;
|
|
150
153
|
saveSelectedCategoryList(event: any): 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": "
|
|
3
|
+
"version": "6.0.1",
|
|
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 "
|