vcomply-workflow-engine 2.6.127 → 2.6.128
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 +455 -63
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/add-multiple-responsibility/add-multiple-responsibility.component.js +1 -1
- package/esm2015/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.js +1 -1
- package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.js +1 -1
- package/esm2015/lib/add-multiple-risk/add-multiple-risk.component.js +1 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.js +1 -1
- package/esm2015/lib/sharedComponents/format-and-evidence/format-and-evidence.component.js +1 -1
- package/esm2015/lib/sharedComponents/risk-classification/risk-classification.component.js +1 -1
- package/esm2015/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.js +1 -1
- package/esm2015/lib/workflow-assessment/workflow-assessment.component.js +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +309 -17
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +260 -103
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +3 -3
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-interfaces/create-policy-form.js +1 -1
- package/esm2015/lib/workflow-policy/workflow-policy.component.js +97 -27
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +195 -95
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.js +4 -2
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.ngfactory.js +3 -2
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/file-pill/file-pill.component.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.js +7 -3
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.ngfactory.js +22 -8
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/form-field/form-field.component.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +14 -2
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +9 -6
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/workflow-program.component.js +1 -1
- package/esm2015/lib/workflow-risk/workflow-risk.component.js +1 -1
- package/esm2015/lib/workflow-services/responsibility.service.js +13 -1
- package/esm2015/lib/workflow-services/responsibility.service.ngsummary.json +1 -1
- package/esm2015/lib/workflow-survey-form/workflow-survey-form.component.js +1 -1
- package/fesm2015/vcomply-workflow-engine.js +454 -63
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +31 -0
- package/lib/workflow-interfaces/create-policy-form.d.ts +2 -0
- package/lib/workflow-policy/workflow-policy.component.d.ts +6 -0
- package/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.d.ts +1 -0
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +5 -0
- package/lib/workflow-services/responsibility.service.d.ts +2 -0
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -19,6 +19,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
19
19
|
responsibilityId: string;
|
|
20
20
|
frameworkDetails: Array<any>;
|
|
21
21
|
isEntrust: boolean;
|
|
22
|
+
feature: any;
|
|
22
23
|
set closeOnEsc(escapeCondition: boolean);
|
|
23
24
|
orgDetails: any;
|
|
24
25
|
pickerChanged: EventEmitter<any>;
|
|
@@ -31,7 +32,9 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
31
32
|
rcSelected: EventEmitter<any>;
|
|
32
33
|
openedFrom: any;
|
|
33
34
|
selectedRC: number;
|
|
35
|
+
featureFlag_groups: boolean;
|
|
34
36
|
selectedProgram: any;
|
|
37
|
+
selectedReviewer: boolean;
|
|
35
38
|
set setSelectedProgram(program: any);
|
|
36
39
|
onRemovingCheckpoint: EventEmitter<any>;
|
|
37
40
|
isAssessmentDisabled: EventEmitter<any>;
|
|
@@ -63,13 +66,20 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
63
66
|
assignorsList: any[];
|
|
64
67
|
assigneesList: any[];
|
|
65
68
|
reviewersList: any[];
|
|
69
|
+
reviewerMemberIdsList: any[];
|
|
70
|
+
groupOverseerList: any[];
|
|
71
|
+
groupReviewerList: any[];
|
|
66
72
|
overseersList: any[];
|
|
67
73
|
allUsersList: any[];
|
|
68
74
|
behalfOfUsersList: any[];
|
|
75
|
+
reviewerUserList: any[];
|
|
76
|
+
overseerUserList: any[];
|
|
77
|
+
overseerUserNotifyList: any[];
|
|
69
78
|
allCategories: any[];
|
|
70
79
|
assuranceCategoriesList: any[];
|
|
71
80
|
assuranceRequiresAuditList: any[];
|
|
72
81
|
groupsList: any[];
|
|
82
|
+
OrgGroup: any[];
|
|
73
83
|
adminsList: any[];
|
|
74
84
|
responsibilityCentersList: any[];
|
|
75
85
|
categoryList: any[];
|
|
@@ -160,12 +170,32 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
160
170
|
getEditResponsibilityDetails(id: any): void;
|
|
161
171
|
setList(list: any[], ids: any[], key: string): any;
|
|
162
172
|
returnIds(list: any[], key: string): any[];
|
|
173
|
+
populateOverseerData(res: any): void;
|
|
174
|
+
/**
|
|
175
|
+
* @returns res
|
|
176
|
+
*/
|
|
177
|
+
populateReviewerData(res: any): void;
|
|
178
|
+
/**
|
|
179
|
+
* this function is for getting the users data based on member_id of users of selected User Group
|
|
180
|
+
* @param userlist contains users data
|
|
181
|
+
* @param selectedgroups contains selected User Group data
|
|
182
|
+
* @returns user data of Selected user group.
|
|
183
|
+
*/
|
|
184
|
+
getGroupsUserEmployeesId(userList: any, selectedGroups: any): any;
|
|
163
185
|
setReviewerPayload(ids: any[], type: string, acceptedData?: Array<any>, reviewerType?: string): any;
|
|
164
186
|
checkWhetherAllListsLoaded(): void;
|
|
165
187
|
saveSelectedList(type: string, selectedItems: any): void;
|
|
166
188
|
remove(type: any, event?: any): void;
|
|
189
|
+
saveGroupReviewerData(selectedItems: any): void;
|
|
190
|
+
saveOverseerData(selectedItems: any, type: any): void;
|
|
167
191
|
entrustFramework(event: any): void;
|
|
168
192
|
assignFromFramework(freqObj: any): void;
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @param list userlist for listing users
|
|
196
|
+
* @returns assign user's my_member_id to member_id data
|
|
197
|
+
*/
|
|
198
|
+
assignUserMemberId(list: any): any;
|
|
169
199
|
refreshAllLists(): void;
|
|
170
200
|
refreshListsWhileProgramSelected(): void;
|
|
171
201
|
/**
|
|
@@ -184,6 +214,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
184
214
|
*/
|
|
185
215
|
validateResponsibility(): boolean | undefined;
|
|
186
216
|
entrustResponsibility(entrustForm: any): void;
|
|
217
|
+
combineUserAndUserGroupMembers(): void;
|
|
187
218
|
/**
|
|
188
219
|
* It resets the form.
|
|
189
220
|
*/
|
|
@@ -11,7 +11,9 @@ export interface PolicyForm {
|
|
|
11
11
|
selectedReviewers: [];
|
|
12
12
|
selectedRCs: [];
|
|
13
13
|
CCFailEmail: [];
|
|
14
|
+
CCFailEmailGroup: [];
|
|
14
15
|
CCEmail: [];
|
|
16
|
+
CCGroupEmail: [];
|
|
15
17
|
availableOnPortal: boolean;
|
|
16
18
|
acceptSuggestions: boolean;
|
|
17
19
|
requiresSignatureForAttestation: boolean;
|
|
@@ -53,6 +53,8 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
53
53
|
workFlowList: any[];
|
|
54
54
|
approverWorkFlowList: any[];
|
|
55
55
|
submitted: boolean;
|
|
56
|
+
ccEmailObjIds: any[];
|
|
57
|
+
ccFailGroupObjIds: any[];
|
|
56
58
|
loader: boolean;
|
|
57
59
|
categoriesListLoaded: boolean;
|
|
58
60
|
groupsListLoaded: boolean;
|
|
@@ -131,6 +133,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
131
133
|
policyApprovalFlag: number;
|
|
132
134
|
baseURL: string;
|
|
133
135
|
groupEnabled: any;
|
|
136
|
+
overseerGroupsList: any[];
|
|
134
137
|
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef);
|
|
135
138
|
policyForm: PolicyForm;
|
|
136
139
|
ngOnInit(): void;
|
|
@@ -153,6 +156,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
153
156
|
* Fetches organization users list
|
|
154
157
|
*/
|
|
155
158
|
getUsersList(): void;
|
|
159
|
+
updateMemberIdKey(list: any): any;
|
|
156
160
|
/**
|
|
157
161
|
* Fetches Policy Categories list
|
|
158
162
|
*/
|
|
@@ -161,6 +165,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
161
165
|
* Fetches organization users groups list
|
|
162
166
|
*/
|
|
163
167
|
getGroupsList(): void;
|
|
168
|
+
overseerGroupList(): void;
|
|
164
169
|
/**
|
|
165
170
|
* Sets the approvers workflow from the selected workflow on Approvers workflow list
|
|
166
171
|
* @param event contains selected predefined workflow
|
|
@@ -205,6 +210,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
205
210
|
* @param selectedItems contains the list of selected items from the list
|
|
206
211
|
*/
|
|
207
212
|
saveSelectedList(type: string, selectedItems: any): void;
|
|
213
|
+
getGroupObjectId(overseerGroup?: any): any;
|
|
208
214
|
/**
|
|
209
215
|
* Removes the particular element from selected list
|
|
210
216
|
* @param type defines the particular case
|
package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts
CHANGED
|
@@ -5,6 +5,10 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
5
5
|
groupEnabled: false;
|
|
6
6
|
panelTitle: string;
|
|
7
7
|
singleSelect: boolean;
|
|
8
|
+
selectedReviewer: boolean;
|
|
9
|
+
reviewerWorkflowType: string;
|
|
10
|
+
reviewerWorkflowTypeChange: EventEmitter<any>;
|
|
11
|
+
mode: string;
|
|
8
12
|
fieldType: string;
|
|
9
13
|
searchKey: string;
|
|
10
14
|
isPagination: any;
|
|
@@ -93,4 +97,5 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
93
97
|
*/
|
|
94
98
|
uniqueByProp(array: any, key: string): unknown[];
|
|
95
99
|
paginationVisible(): void;
|
|
100
|
+
workflowTypeChanged(event: string): void;
|
|
96
101
|
}
|
|
@@ -10,6 +10,8 @@ export declare class ResponsibilityService {
|
|
|
10
10
|
constructor(http: HttpClient, authService: AuthService, config?: Configurations);
|
|
11
11
|
getResponsibilityCenterList(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
12
12
|
getOrganizationGroups(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
13
|
+
getOrganizationPolicyGroups(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
14
|
+
getOrganizationOverseersGroups(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
13
15
|
getOrganizationUsers(): import("rxjs").Observable<any[]>;
|
|
14
16
|
getOrganizationPeople(params?: HttpParams): import("rxjs").Observable<any[]>;
|
|
15
17
|
getAssignorsList(params?: HttpParams): import("rxjs").Observable<any[]>;
|
package/package.json
CHANGED