vcomply-workflow-engine 2.4.48 → 2.4.49
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 +51 -157
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/program-listing/program-listing.component.js +4 -4
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +47 -153
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-services/responsibility.service.js +3 -3
- package/fesm2015/vcomply-workflow-engine.js +51 -157
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -3
- package/lib/workflow-services/responsibility.service.d.ts +1 -1
- package/package.json +2 -2
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -30,7 +30,6 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
30
30
|
selectedProgram: any;
|
|
31
31
|
scrollToBottom: boolean;
|
|
32
32
|
description: EditorConfig;
|
|
33
|
-
programPeopleList: any;
|
|
34
33
|
loader: boolean;
|
|
35
34
|
submitted: boolean;
|
|
36
35
|
editDetails: any;
|
|
@@ -140,7 +139,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
140
139
|
getOrganizationDetails(): void;
|
|
141
140
|
getCategoryList(): void;
|
|
142
141
|
filterListsAccordingToProgram(program_id?: string): void;
|
|
143
|
-
getAssignorsList(
|
|
142
|
+
getAssignorsList(): void;
|
|
144
143
|
getAssigneesList(program_id?: string): void;
|
|
145
144
|
getPeopleListAgainstPID(program_id: string): void;
|
|
146
145
|
getGroupsList(program_id?: string): void;
|
|
@@ -153,7 +152,6 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
153
152
|
remove(type: any, event?: any): void;
|
|
154
153
|
entrustFramework(event: any): void;
|
|
155
154
|
refreshAllLists(): void;
|
|
156
|
-
refreshListsWhileProgramSelected(): void;
|
|
157
155
|
submitResponsibility(): false | undefined;
|
|
158
156
|
validateResponsibility(): boolean | undefined;
|
|
159
157
|
responsibilityData: any;
|
|
@@ -12,7 +12,7 @@ export declare class ResponsibilityService {
|
|
|
12
12
|
getOrganizationGroups(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
13
13
|
getOrganizationUsers(): import("rxjs").Observable<any[]>;
|
|
14
14
|
getOrganizationPeople(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
15
|
-
getAssignorsList(
|
|
15
|
+
getAssignorsList(): import("rxjs").Observable<any[]>;
|
|
16
16
|
getCategoriesList(): import("rxjs").Observable<any[]>;
|
|
17
17
|
getProgramsList(params: HttpParams): import("rxjs").Observable<any[]>;
|
|
18
18
|
getCategoriesUnderProgram(params: HttpParams): import("rxjs").Observable<any[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.49",
|
|
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
|
+
}
|