vcomply-workflow-engine 3.0.6 → 3.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 +381 -125
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/policy-access/policy-access.component.js +355 -43
- package/esm2015/lib/sharedComponents/policy-access/policy-access.component.ngfactory.js +12 -33
- 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 +27 -82
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +384 -423
- 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 +2 -3
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +1 -1
- 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 +381 -125
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/policy-access/policy-access.component.d.ts +3 -16
- package/lib/workflow-interfaces/create-policy-form.d.ts +0 -3
- package/lib/workflow-policy/workflow-policy.component.d.ts +0 -6
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +1 -1
- package/package.json +2 -2
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -1,20 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { 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
|
-
close: EventEmitter<any>;
|
|
13
|
-
saveCheckPoint: EventEmitter<any>;
|
|
14
|
-
setPolicyAccessType: EventEmitter<any>;
|
|
15
3
|
constructor();
|
|
16
4
|
ngOnInit(): void;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
saveSelectedUsers(event: any): void;
|
|
5
|
+
reviewerMemberIdsList: any;
|
|
6
|
+
groupReviewerList: any;
|
|
20
7
|
}
|
|
@@ -57,9 +57,6 @@ 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[];
|
|
63
60
|
loader: boolean;
|
|
64
61
|
categoriesListLoaded: boolean;
|
|
65
62
|
groupsListLoaded: boolean;
|
|
@@ -322,7 +319,4 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
322
319
|
createApprovalWorkflow(): void;
|
|
323
320
|
closeClickedCreateForm(): void;
|
|
324
321
|
editLevelClicked(editLevel: any, index: any): void;
|
|
325
|
-
setAccessField(event: number): void;
|
|
326
|
-
getUsersAccessListByCategory(categoryDetails: any): void;
|
|
327
|
-
populatePolicyAccessDetails(policyDetails: any): void;
|
|
328
322
|
}
|
package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts
CHANGED
|
@@ -30,11 +30,11 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
30
30
|
fetchUserData: EventEmitter<any>;
|
|
31
31
|
disabledIds: any;
|
|
32
32
|
nonRemovableUserIds: any;
|
|
33
|
-
allUserSelectedDisabled: boolean;
|
|
34
33
|
selectedUsers: any;
|
|
35
34
|
selectedUserIds: any;
|
|
36
35
|
allUsersIds: any;
|
|
37
36
|
allUserSelected: boolean;
|
|
37
|
+
allUserSelectedDisabled: boolean;
|
|
38
38
|
nonRemovableGroupIds: any;
|
|
39
39
|
selectedGroups: any;
|
|
40
40
|
selectedGroupIds: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
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
|
+
}
|