vcomply-workflow-engine 0.0.7 → 0.0.8
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/bundles/vcomply-workflow-engine.umd.js +131 -46
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/add-multiple-responsibility/add-multiple-responsibility.component.js +25 -18
- package/esm2015/lib/add-multiple-responsibility/add-multiple-responsibility.component.ngfactory.js +2 -2
- package/esm2015/lib/add-multiple-risk/add-multiple-risk.component.js +1 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.js +2 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngfactory.js +1 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngsummary.json +1 -1
- package/esm2015/lib/more-option/more-option.component.js +30 -4
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.js +3 -3
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.ngfactory.js +6 -6
- package/esm2015/lib/sharedComponents/audit-category-list/audit-category-list.component.js +1 -1
- package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.js +2 -2
- package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.ngfactory.js +363 -29
- package/esm2015/lib/sharedComponents/owner-list/owner-list.component.js +1 -1
- package/esm2015/lib/sharedComponents/radio-list-with-pagination/radio-list.component.js +1 -1
- package/esm2015/lib/ui-kit/pagination/pagination/pagination.component.js +3 -5
- package/esm2015/lib/ui-kit/pagination/pagination/pagination.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +1565 -11
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +75 -32
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +5 -3
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +10 -16
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-risk/workflow-risk.component.js +20 -4
- package/esm2015/lib/workflow-risk/workflow-risk.component.ngfactory.js +60 -58
- package/esm2015/lib/workflow-risk/workflow-risk.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-services/responsibility.service.js +7 -1
- package/esm2015/lib/workflow-services/responsibility.service.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +131 -46
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/log-an-issue/log-an-issue.component.d.ts +1 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +2 -0
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
- package/lib/workflow-risk/workflow-risk.component.d.ts +1 -0
- package/lib/workflow-services/responsibility.service.d.ts +1 -0
- package/package.json +2 -2
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -26,6 +26,7 @@ export declare class LogAnIssueComponent implements OnInit, OnChanges, AfterView
|
|
|
26
26
|
};
|
|
27
27
|
mode: string;
|
|
28
28
|
config: IssueConfiguration;
|
|
29
|
+
responsibilitiesData: any;
|
|
29
30
|
pickerChanged: EventEmitter<any>;
|
|
30
31
|
populateOption: EventEmitter<any>;
|
|
31
32
|
closeWorkflow: EventEmitter<any>;
|
|
@@ -52,6 +52,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
52
52
|
behalfOfUsersList: any[];
|
|
53
53
|
allCategories: any[];
|
|
54
54
|
assuranceCategoriesList: any[];
|
|
55
|
+
assuranceRequiresAuditList: any[];
|
|
55
56
|
groupsList: any[];
|
|
56
57
|
adminsList: any[];
|
|
57
58
|
responsibilityCentersList: any[];
|
|
@@ -124,6 +125,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
124
125
|
getRCList(): void;
|
|
125
126
|
getUserDetails(): void;
|
|
126
127
|
getAssurance(): void;
|
|
128
|
+
getAssuranceForRequiresAudit(): void;
|
|
127
129
|
getOrganizationDetails(): void;
|
|
128
130
|
getCategoryList(): void;
|
|
129
131
|
getAssignorsList(): void;
|
|
@@ -27,6 +27,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
|
|
|
27
27
|
allowedWorkflows: any;
|
|
28
28
|
frameworkDetails: Array<any>;
|
|
29
29
|
selectedRC: string;
|
|
30
|
+
secondaryOpenPortal: string;
|
|
30
31
|
defaultRiskType: string;
|
|
31
32
|
moveToRegisterMode: string;
|
|
32
33
|
reponsibilityData: {
|
|
@@ -30,6 +30,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
30
30
|
riskId: string;
|
|
31
31
|
defaultRiskType: string;
|
|
32
32
|
moveToRegisterMode: string;
|
|
33
|
+
secondaryOpenPortal: string;
|
|
33
34
|
showConfirmationAlert: EventEmitter<any>;
|
|
34
35
|
pickerChanged: EventEmitter<any>;
|
|
35
36
|
populateOption: EventEmitter<any>;
|
|
@@ -15,6 +15,7 @@ export declare class ResponsibilityService {
|
|
|
15
15
|
getAssignorsList(): import("rxjs").Observable<any[]>;
|
|
16
16
|
getCategoriesList(): import("rxjs").Observable<any[]>;
|
|
17
17
|
getAssurance(): import("rxjs").Observable<any[]>;
|
|
18
|
+
getAssuranceForRequiresAudit(): import("rxjs").Observable<any[]>;
|
|
18
19
|
getRCDetailsOfFramework(rc_id: any, category_id: any): import("rxjs").Observable<Object>;
|
|
19
20
|
submitEntrust(entrust_body: any): import("rxjs").Observable<Object>;
|
|
20
21
|
updateEntrust(entrust_body: any, object_id: any, isDelegate: any): import("rxjs").Observable<Object>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.0.1",
|
|
6
6
|
"@angular/core": "^12.0.1"
|
|
@@ -22,4 +22,4 @@
|
|
|
22
22
|
"typings": "vcomply-workflow-engine.d.ts",
|
|
23
23
|
"metadata": "vcomply-workflow-engine.metadata.json",
|
|
24
24
|
"sideEffects": false
|
|
25
|
-
}
|
|
25
|
+
}
|