vcomply-workflow-engine 3.4.13 → 3.4.15
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/esm2020/lib/sharedComponents/link-program/link-program/link-program.component.mjs +4 -4
- package/esm2020/lib/workflow-engine-container/workflow-engine-container.component.mjs +6 -3
- package/esm2020/lib/workflow-policy/workflow-policy.component.mjs +23 -9
- package/fesm2015/vcomply-workflow-engine.mjs +30 -13
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +29 -12
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +2 -1
- package/lib/workflow-policy/workflow-policy.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -61,6 +61,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
|
|
|
61
61
|
description: string;
|
|
62
62
|
};
|
|
63
63
|
grcType: 0 | 1 | 2 | 3;
|
|
64
|
+
isSendForAttestation: boolean;
|
|
64
65
|
orgDetails: any;
|
|
65
66
|
programSimplifyFlag: boolean;
|
|
66
67
|
isResponsibilitySimplifyFlag: boolean;
|
|
@@ -135,5 +136,5 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
|
|
|
135
136
|
onReviewerChange(event: string): void;
|
|
136
137
|
isResponsibilitySimplify(): void;
|
|
137
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowEngineContainerComponent, never>;
|
|
138
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowEngineContainerComponent, "app-vcomply-workflow-engine-container", never, { "workflowType": "workflowType"; "mode": "mode"; "id": "id"; "openedFrom": "openedFrom"; "allowedWorkflows": "allowedWorkflows"; "frameworkDetails": "frameworkDetails"; "selectedRC": "selectedRC"; "secondaryOpenPortal": "secondaryOpenPortal"; "defaultRiskType": "defaultRiskType"; "moveToRegisterMode": "moveToRegisterMode"; "reponsibilityData": "reponsibilityData"; "pid": "pid"; "programType": "programType"; "issueData": "issueData"; "entrustButtonName": "entrustButtonName"; "config": "config"; "convertFileData": "convertFileData"; "selectedCategory": "selectedCategory"; "selectedProgram": "selectedProgram"; "canFrameworkChange": "canFrameworkChange"; "addToProgramDetails": "addToProgramDetails"; "grcType": "grcType"; "feature": "feature"; }, { "closeWorkflow": "closeWorkflow"; }, never, never, false>;
|
|
139
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowEngineContainerComponent, "app-vcomply-workflow-engine-container", never, { "workflowType": "workflowType"; "mode": "mode"; "id": "id"; "openedFrom": "openedFrom"; "allowedWorkflows": "allowedWorkflows"; "frameworkDetails": "frameworkDetails"; "selectedRC": "selectedRC"; "secondaryOpenPortal": "secondaryOpenPortal"; "defaultRiskType": "defaultRiskType"; "moveToRegisterMode": "moveToRegisterMode"; "reponsibilityData": "reponsibilityData"; "pid": "pid"; "programType": "programType"; "issueData": "issueData"; "entrustButtonName": "entrustButtonName"; "config": "config"; "convertFileData": "convertFileData"; "selectedCategory": "selectedCategory"; "selectedProgram": "selectedProgram"; "canFrameworkChange": "canFrameworkChange"; "addToProgramDetails": "addToProgramDetails"; "grcType": "grcType"; "isSendForAttestation": "isSendForAttestation"; "feature": "feature"; }, { "closeWorkflow": "closeWorkflow"; }, never, never, false>;
|
|
139
140
|
}
|
|
@@ -35,6 +35,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
35
35
|
shiftToEditMode: EventEmitter<any>;
|
|
36
36
|
convertFileData: any;
|
|
37
37
|
selectedCategory: string;
|
|
38
|
+
isSendForAttestation: boolean;
|
|
38
39
|
formatEvidence: FormatAndEvidenceComponent;
|
|
39
40
|
description: EditorConfig;
|
|
40
41
|
workflowType: string;
|
|
@@ -329,5 +330,5 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
329
330
|
populatePolicyAccessDetails(policyDetails: any): void;
|
|
330
331
|
resetPolicyAccessDetails(): void;
|
|
331
332
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPolicyComponent, never>;
|
|
332
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": "mode"; "policyId": "policyId"; "feature": "feature"; "convertFileData": "convertFileData"; "selectedCategory": "selectedCategory"; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false>;
|
|
333
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": "mode"; "policyId": "policyId"; "feature": "feature"; "convertFileData": "convertFileData"; "selectedCategory": "selectedCategory"; "isSendForAttestation": "isSendForAttestation"; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false>;
|
|
333
334
|
}
|
package/package.json
CHANGED