vcomply-workflow-engine 2.6.130 → 2.6.131
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 +216 -78
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngfactory.js +6 -6
- package/esm2015/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/components/add-segment-popup/add-segment-popup.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/assessment-editor/components/setting-response-segment/setting-response-segment.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.js +19 -4
- package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.ngfactory.js +43 -20
- package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.js +77 -6
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.ngfactory.js +72 -15
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-assessment/workflow-assessment.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +110 -56
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +227 -183
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +2 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +3 -3
- package/esm2015/lib/workflow-engine.module.ngsummary.json +1 -1
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.js +3 -3
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +5 -5
- package/esm2015/lib/workflow-risk/workflow-risk.component.ngfactory.js +5 -5
- package/esm2015/lib/workflow-survey-form/workflow-survey-form.component.ngfactory.js +4 -4
- package/fesm2015/vcomply-workflow-engine.js +206 -65
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/floating-bar/floating-bar.component.d.ts +4 -0
- package/lib/sharedComponents/group-users-list/group-users-list.component.d.ts +13 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +6 -3
- package/package.json +2 -2
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnInit, EventEmitter, OnChanges } from '@angular/core';
|
|
2
2
|
export declare class FloatingBarComponent implements OnInit, OnChanges {
|
|
3
3
|
selectedData: any;
|
|
4
|
+
selectedGroups: any;
|
|
4
5
|
displayElementKey: string;
|
|
5
6
|
elementId: any;
|
|
6
7
|
singularText: string;
|
|
@@ -17,17 +18,20 @@ export declare class FloatingBarComponent implements OnInit, OnChanges {
|
|
|
17
18
|
mode: string;
|
|
18
19
|
defaultSelected: any;
|
|
19
20
|
set defaultSelectedValue(value: any);
|
|
21
|
+
groupsEnabled: any;
|
|
20
22
|
nonRemovableUsersList: any;
|
|
21
23
|
removePosition: any;
|
|
22
24
|
closeEvent: EventEmitter<any>;
|
|
23
25
|
deleteEvent: EventEmitter<number>;
|
|
24
26
|
closeList: EventEmitter<any>;
|
|
27
|
+
deleteGroupEvent: EventEmitter<number>;
|
|
25
28
|
workflowTypeChanged: EventEmitter<any>;
|
|
26
29
|
constructor();
|
|
27
30
|
ngOnChanges(): void;
|
|
28
31
|
ngOnInit(): void;
|
|
29
32
|
next(): void;
|
|
30
33
|
deleteSelected(index: number): void;
|
|
34
|
+
deleteSelectedGroup(index: number): void;
|
|
31
35
|
close(): void;
|
|
32
36
|
selectedWorkflowType(event: any): void;
|
|
33
37
|
selectedWorkflowChange(event: any): void;
|
|
@@ -2,28 +2,41 @@ import { OnInit, EventEmitter, OnChanges } from '@angular/core';
|
|
|
2
2
|
import { SnackBarService } from '../../ui-kit/snack-bar/snack-bar.service';
|
|
3
3
|
export declare class GroupUsersListComponent implements OnInit, OnChanges {
|
|
4
4
|
private snackbar;
|
|
5
|
+
groupsEnabled: any;
|
|
5
6
|
usersList: never[];
|
|
6
7
|
groupsList: any[];
|
|
7
8
|
selectedUsers: never[];
|
|
8
9
|
userIdKey: string;
|
|
10
|
+
groupIdKey: string;
|
|
9
11
|
openedFrom: string;
|
|
10
12
|
saveSelectedList: EventEmitter<any>;
|
|
11
13
|
closeUsersList: EventEmitter<any>;
|
|
14
|
+
selectedGroups: any[];
|
|
15
|
+
assigneeGroupsList: any[];
|
|
12
16
|
search: string;
|
|
13
17
|
selectedIds: any[];
|
|
14
18
|
animation: boolean;
|
|
19
|
+
selectedGroupIds: any[];
|
|
20
|
+
selectedgroupList: any[];
|
|
15
21
|
constructor(snackbar: SnackBarService);
|
|
16
22
|
ngOnChanges(): void;
|
|
17
23
|
ngOnInit(): void;
|
|
18
24
|
selectUser(user: any, mode: any): void;
|
|
19
25
|
deleteEvent(event: any): void;
|
|
26
|
+
deleteGroupEvent(event: any): void;
|
|
20
27
|
selectAll(mode: any): void;
|
|
28
|
+
selectAllGroups(mode: any): void;
|
|
21
29
|
validationCheck(isChecked: boolean): void;
|
|
22
30
|
setList(): void;
|
|
31
|
+
setgroupList(): void;
|
|
23
32
|
checkSelectAll(): boolean;
|
|
33
|
+
checkselectAllgroups(): boolean;
|
|
24
34
|
save(selectedIds: any): void;
|
|
25
35
|
close(): void;
|
|
26
36
|
selectGroup(groupIds: any, mode: any): void;
|
|
37
|
+
selectGroupElement(data: any, mode: any): void;
|
|
27
38
|
checkGroupList(groupIds: any): any;
|
|
28
39
|
hideGroup(groupIds: any): boolean;
|
|
40
|
+
currentTab: string;
|
|
41
|
+
switchTab(tab: string): void;
|
|
29
42
|
}
|
|
@@ -20,6 +20,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
20
20
|
frameworkDetails: Array<any>;
|
|
21
21
|
isEntrust: boolean;
|
|
22
22
|
feature: any;
|
|
23
|
+
allGroupAssignee: boolean;
|
|
23
24
|
set closeOnEsc(escapeCondition: boolean);
|
|
24
25
|
orgDetails: any;
|
|
25
26
|
pickerChanged: EventEmitter<any>;
|
|
@@ -69,9 +70,11 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
69
70
|
reviewerMemberIdsList: any[];
|
|
70
71
|
groupOverseerList: any[];
|
|
71
72
|
groupReviewerList: any[];
|
|
73
|
+
groupAssigneeList: any[];
|
|
72
74
|
overseersList: any[];
|
|
73
75
|
allUsersList: any[];
|
|
74
76
|
behalfOfUsersList: any[];
|
|
77
|
+
assigneeUserList: any[];
|
|
75
78
|
reviewerUserList: any[];
|
|
76
79
|
overseerUserList: any[];
|
|
77
80
|
overseerUserNotifyList: any[];
|
|
@@ -171,10 +174,8 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
171
174
|
setList(list: any[], ids: any[], key: string): any;
|
|
172
175
|
returnIds(list: any[], key: string): any[];
|
|
173
176
|
populateOverseerData(res: any): void;
|
|
174
|
-
/**
|
|
175
|
-
* @returns res
|
|
176
|
-
*/
|
|
177
177
|
populateReviewerData(res: any): void;
|
|
178
|
+
populateAssigneeData(res: any): void;
|
|
178
179
|
/**
|
|
179
180
|
* this function is for getting the users data based on member_id of users of selected User Group
|
|
180
181
|
* @param userlist contains users data
|
|
@@ -186,6 +187,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
186
187
|
checkWhetherAllListsLoaded(): void;
|
|
187
188
|
saveSelectedList(type: string, selectedItems: any): void;
|
|
188
189
|
remove(type: any, event?: any): void;
|
|
190
|
+
saveGroupAssigneeData(selectedItems: any): void;
|
|
189
191
|
saveGroupReviewerData(selectedItems: any): void;
|
|
190
192
|
saveOverseerData(selectedItems: any, type: any): void;
|
|
191
193
|
entrustFramework(event: any): void;
|
|
@@ -214,6 +216,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
214
216
|
*/
|
|
215
217
|
validateResponsibility(): boolean | undefined;
|
|
216
218
|
entrustResponsibility(entrustForm: any): void;
|
|
219
|
+
uniqueIdUserGroups(totalUserList: any, selectedGroup: any, selectedUsers: any): any[];
|
|
217
220
|
combineUserAndUserGroupMembers(): void;
|
|
218
221
|
/**
|
|
219
222
|
* It resets the form.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.131",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x",
|
|
6
6
|
"@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x"
|
|
@@ -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
|
+
}
|