vcomply-workflow-engine 3.0.9 → 3.0.10
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 +149 -367
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/policy-access/policy-access.component.js +59 -355
- package/esm2015/lib/sharedComponents/policy-access/policy-access.component.ngfactory.js +40 -12
- package/esm2015/lib/sharedComponents/policy-access/policy-access.component.ngsummary.json +1 -1
- 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 +77 -11
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +429 -384
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +16 -4
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +113 -92
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +149 -367
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/policy-access/policy-access.component.d.ts +20 -3
- package/lib/workflow-interfaces/create-policy-form.d.ts +3 -0
- package/lib/workflow-policy/workflow-policy.component.d.ts +6 -0
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +5 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -1,7 +1,24 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
export declare class PolicyAccessComponent implements OnInit {
|
|
3
|
+
policyAccessType: number;
|
|
4
|
+
SelectedCategory: any;
|
|
5
|
+
orgUsersList: any;
|
|
6
|
+
groupList: any;
|
|
7
|
+
selectedUsers: any;
|
|
8
|
+
selectedGroups: any;
|
|
9
|
+
disabledIds: any;
|
|
10
|
+
usersAccessList: any;
|
|
11
|
+
groupsAccessList: any;
|
|
12
|
+
futureUsersWillSelect: boolean;
|
|
13
|
+
close: EventEmitter<any>;
|
|
14
|
+
saveCheckPoint: EventEmitter<any>;
|
|
15
|
+
setPolicyAccessType: EventEmitter<any>;
|
|
16
|
+
isConfirmationAlertVisible: boolean;
|
|
17
|
+
selectedUsersDetailsOnNext: any;
|
|
3
18
|
constructor();
|
|
4
19
|
ngOnInit(): void;
|
|
5
|
-
|
|
6
|
-
|
|
20
|
+
setAccessField(event: number): void;
|
|
21
|
+
disableSelector(): void;
|
|
22
|
+
saveSelectedUsers(event: any): void;
|
|
23
|
+
saveChanges(event: boolean): void;
|
|
7
24
|
}
|
|
@@ -57,6 +57,9 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
57
57
|
submitted: boolean;
|
|
58
58
|
ccEmailObjIds: any[];
|
|
59
59
|
ccFailGroupObjIds: any[];
|
|
60
|
+
usersAccessList: any[];
|
|
61
|
+
usersAccessListIds: any[];
|
|
62
|
+
groupsAccessList: any[];
|
|
60
63
|
loader: boolean;
|
|
61
64
|
categoriesListLoaded: boolean;
|
|
62
65
|
groupsListLoaded: boolean;
|
|
@@ -319,4 +322,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
319
322
|
createApprovalWorkflow(): void;
|
|
320
323
|
closeClickedCreateForm(): void;
|
|
321
324
|
editLevelClicked(editLevel: any, index: any): void;
|
|
325
|
+
setAccessField(event: number): void;
|
|
326
|
+
getUsersAccessListByCategory(categoryDetails: any): void;
|
|
327
|
+
populatePolicyAccessDetails(policyDetails: any): void;
|
|
322
328
|
}
|
package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts
CHANGED
|
@@ -27,14 +27,17 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
27
27
|
groupListInfo: any;
|
|
28
28
|
fromApprovalWorkflow: boolean;
|
|
29
29
|
set approvalType(value: 'ANYONE' | 'ROUNDROBIN' | 'SEQUENTIAL');
|
|
30
|
+
showFutureUsersSwitch: boolean;
|
|
31
|
+
futureUsersWillSelect: boolean;
|
|
32
|
+
isAllDisabled: boolean;
|
|
30
33
|
fetchUserData: EventEmitter<any>;
|
|
31
34
|
disabledIds: any;
|
|
32
35
|
nonRemovableUserIds: any;
|
|
36
|
+
allUserSelectedDisabled: boolean;
|
|
33
37
|
selectedUsers: any;
|
|
34
38
|
selectedUserIds: any;
|
|
35
39
|
allUsersIds: any;
|
|
36
40
|
allUserSelected: boolean;
|
|
37
|
-
allUserSelectedDisabled: boolean;
|
|
38
41
|
nonRemovableGroupIds: any;
|
|
39
42
|
selectedGroups: any;
|
|
40
43
|
selectedGroupIds: any;
|
|
@@ -113,4 +116,5 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
113
116
|
paginationVisible(): void;
|
|
114
117
|
workflowTypeChanged(event: string): void;
|
|
115
118
|
disableUsers(): any[];
|
|
119
|
+
setAllUsersSelected(event: any): void;
|
|
116
120
|
}
|
package/package.json
CHANGED