vcomply-workflow-engine 3.9.95 → 3.9.96
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/add-multiple-risk/add-multiple-risk.component.mjs +62 -8
- package/esm2022/lib/more-option/more-option.component.mjs +2 -2
- package/esm2022/lib/services/common.service.mjs +8 -6
- package/esm2022/lib/sharedComponents/bulk-view/bulk-view.component.mjs +7 -3
- package/esm2022/lib/sharedComponents/document-section/document-section.component.mjs +16 -5
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +3 -3
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +11 -4
- package/fesm2022/vcomply-workflow-engine.mjs +100 -22
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/add-multiple-risk/add-multiple-risk.component.d.ts +4 -1
- package/lib/sharedComponents/bulk-view/bulk-view.component.d.ts +2 -1
- package/lib/sharedComponents/document-section/document-section.component.d.ts +5 -3
- package/lib/workflow-policy/workflow-policy.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export declare class AddMultipleRiskComponent implements OnInit, OnChanges {
|
|
|
10
10
|
private authService;
|
|
11
11
|
private snackBar;
|
|
12
12
|
private frequencyService;
|
|
13
|
+
feature: any;
|
|
13
14
|
pickerChanged: EventEmitter<any>;
|
|
14
15
|
populateOption: EventEmitter<any>;
|
|
15
16
|
closeWorkflow: EventEmitter<any>;
|
|
@@ -37,6 +38,7 @@ export declare class AddMultipleRiskComponent implements OnInit, OnChanges {
|
|
|
37
38
|
errorMessage: string;
|
|
38
39
|
downloadStatus: string;
|
|
39
40
|
downloadPercent: number;
|
|
41
|
+
ffLinkedGrcObjects: boolean;
|
|
40
42
|
smileyMessage: string;
|
|
41
43
|
actionButtons: {
|
|
42
44
|
buttonText: string;
|
|
@@ -106,6 +108,7 @@ export declare class AddMultipleRiskComponent implements OnInit, OnChanges {
|
|
|
106
108
|
* @returns The date is being returned in the timezone of the user.
|
|
107
109
|
*/
|
|
108
110
|
changeTimeZone(date: any): string;
|
|
111
|
+
setFeatureFlag(): void;
|
|
109
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddMultipleRiskComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddMultipleRiskComponent, "app-add-multiple-risk", never, {}, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; }, never, never, false, never>;
|
|
113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddMultipleRiskComponent, "app-add-multiple-risk", never, { "feature": { "alias": "feature"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; }, never, never, false, never>;
|
|
111
114
|
}
|
|
@@ -7,6 +7,7 @@ export declare class BulkViewComponent implements OnChanges {
|
|
|
7
7
|
assessmentDaysEnable: any;
|
|
8
8
|
defaultOwner: any;
|
|
9
9
|
loader: boolean;
|
|
10
|
+
ffLinkedGrcObjects: boolean;
|
|
10
11
|
submitRiskBulkUpload: EventEmitter<any>;
|
|
11
12
|
cancel: EventEmitter<any>;
|
|
12
13
|
finalRisks: number;
|
|
@@ -15,5 +16,5 @@ export declare class BulkViewComponent implements OnChanges {
|
|
|
15
16
|
submit(completeAssessment: any): void;
|
|
16
17
|
close(): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<BulkViewComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BulkViewComponent, "app-bulk-view", never, { "riskBulkUpload": { "alias": "riskBulkUpload"; "required": false; }; "templateInfo": { "alias": "templateInfo"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; "assessmentDaysEnable": { "alias": "assessmentDaysEnable"; "required": false; }; "defaultOwner": { "alias": "defaultOwner"; "required": false; }; "loader": { "alias": "loader"; "required": false; }; }, { "submitRiskBulkUpload": "submitRiskBulkUpload"; "cancel": "cancel"; }, never, never, false, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BulkViewComponent, "app-bulk-view", never, { "riskBulkUpload": { "alias": "riskBulkUpload"; "required": false; }; "templateInfo": { "alias": "templateInfo"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; "assessmentDaysEnable": { "alias": "assessmentDaysEnable"; "required": false; }; "defaultOwner": { "alias": "defaultOwner"; "required": false; }; "loader": { "alias": "loader"; "required": false; }; "ffLinkedGrcObjects": { "alias": "ffLinkedGrcObjects"; "required": false; }; }, { "submitRiskBulkUpload": "submitRiskBulkUpload"; "cancel": "cancel"; }, never, never, false, never>;
|
|
19
20
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { PlatformLocation } from '@angular/common';
|
|
2
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { SnackBarService } from '../../ui-kit/snack-bar/snack-bar.service';
|
|
5
5
|
import { PolicyService } from '../../workflow-services/policy.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class DocumentSectionComponent implements OnInit {
|
|
7
|
+
export declare class DocumentSectionComponent implements OnInit, OnChanges {
|
|
8
8
|
private snackBar;
|
|
9
9
|
private policyService;
|
|
10
10
|
private router;
|
|
@@ -18,6 +18,7 @@ export declare class DocumentSectionComponent implements OnInit {
|
|
|
18
18
|
isUploading: boolean;
|
|
19
19
|
isLoader: boolean;
|
|
20
20
|
selectedDocumentType: string;
|
|
21
|
+
templateView: boolean;
|
|
21
22
|
policyId: any;
|
|
22
23
|
policyName: any;
|
|
23
24
|
organization_id: any;
|
|
@@ -34,6 +35,7 @@ export declare class DocumentSectionComponent implements OnInit {
|
|
|
34
35
|
message: string;
|
|
35
36
|
};
|
|
36
37
|
constructor(snackBar: SnackBarService, policyService: PolicyService, router: Router, route: ActivatedRoute, platformLocation: PlatformLocation);
|
|
38
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
37
39
|
ngOnInit(): void;
|
|
38
40
|
handleFileInput(files: FileList): void;
|
|
39
41
|
showPdfBlock: boolean;
|
|
@@ -46,5 +48,5 @@ export declare class DocumentSectionComponent implements OnInit {
|
|
|
46
48
|
editPolicyEmit(): void;
|
|
47
49
|
openTemplateList(): void;
|
|
48
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentSectionComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSectionComponent, "lib-document-section", never, { "policyId": { "alias": "policyId"; "required": false; }; "policyName": { "alias": "policyName"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "member_obj_id": { "alias": "member_obj_id"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "templateUrl": { "alias": "templateUrl"; "required": false; }; "isTemplateOpened": { "alias": "isTemplateOpened"; "required": false; }; }, { "disconnectRefresh": "disconnectRefresh"; "editPolicy": "editPolicy"; "openTemplate": "openTemplate"; }, never, never, false, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSectionComponent, "lib-document-section", never, { "selectedDocumentType": { "alias": "selectedDocumentType"; "required": false; }; "templateView": { "alias": "templateView"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; "policyName": { "alias": "policyName"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "member_obj_id": { "alias": "member_obj_id"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "templateUrl": { "alias": "templateUrl"; "required": false; }; "isTemplateOpened": { "alias": "isTemplateOpened"; "required": false; }; }, { "disconnectRefresh": "disconnectRefresh"; "editPolicy": "editPolicy"; "openTemplate": "openTemplate"; }, never, never, false, never>;
|
|
50
52
|
}
|
|
@@ -168,6 +168,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
168
168
|
noWorkflowSelected: boolean;
|
|
169
169
|
templateView: boolean;
|
|
170
170
|
templateUrl: string;
|
|
171
|
+
isTemplateClosed: boolean;
|
|
171
172
|
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService, organizationUserService: OrganizationUserService, organizationCommonService: OrganizationCommonService, complianceCommonService: ComplianceCommonService);
|
|
172
173
|
policyForm: PolicyForm;
|
|
173
174
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.96",
|
|
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 "
|