vcomply-workflow-engine 6.0.0 → 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 +37 -21
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +2 -1
- package/fesm2022/vcomply-workflow-engine.mjs +39 -22
- 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/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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.0.
|
|
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 "
|