vcomply-workflow-engine 8.0.4 → 8.0.6
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/fesm2022/vcomply-workflow-engine.mjs +1352 -1358
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2997,7 +2997,7 @@ declare class WorkflowRiskComponent implements OnInit {
|
|
|
2997
2997
|
setPopupButtons(): void;
|
|
2998
2998
|
getRiskDetails(riskId: any): void;
|
|
2999
2999
|
populateOptionalFields(): void;
|
|
3000
|
-
setCategoryType(type: any): "
|
|
3000
|
+
setCategoryType(type: any): "strategic" | "compliance" | "operational" | "others";
|
|
3001
3001
|
getRCList(): void;
|
|
3002
3002
|
getCategoryList(): void;
|
|
3003
3003
|
getOwnersList(): void;
|
|
@@ -13576,6 +13576,8 @@ declare class CaseDropdownComponent implements OnInit {
|
|
|
13576
13576
|
onCaseTypeLoading: EventEmitter<boolean>;
|
|
13577
13577
|
constructor(reportACaseService: ReportACaseService);
|
|
13578
13578
|
ngOnInit(): void;
|
|
13579
|
+
trackByIndex(index: number): number;
|
|
13580
|
+
updateCaseTypeCustomField(value: any, index: number): void;
|
|
13579
13581
|
ngOnChanges(changes: SimpleChanges): void;
|
|
13580
13582
|
getAllTypes(): void;
|
|
13581
13583
|
populateInitialType(): void;
|
|
@@ -14118,6 +14120,7 @@ declare class CaseCategoryComponent implements OnInit, OnChanges {
|
|
|
14118
14120
|
constructor(caseService: ReportACaseService);
|
|
14119
14121
|
ngOnInit(): void;
|
|
14120
14122
|
trackByIndex(index: number): number;
|
|
14123
|
+
updateCategoryCustomField(value: any, index: number): void;
|
|
14121
14124
|
updateCustomField(value: any, index: number): void;
|
|
14122
14125
|
ngOnChanges(changes: SimpleChanges): void;
|
|
14123
14126
|
getAllCategories(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x || 20.x || 21.x || 22.x || 23.x || 24.x"
|