vcomply-workflow-engine 2.6.184 → 2.6.185
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 +428 -229
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.js +12 -3
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.ngfactory.js +46 -45
- package/esm2015/lib/sharedComponents/group-users-list/group-users-list.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/owner-list/owner-list.component.js +16 -3
- package/esm2015/lib/sharedComponents/owner-list/owner-list.component.ngfactory.js +26 -25
- package/esm2015/lib/sharedComponents/owner-list/owner-list.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/users-radio-list/users-radio-list.component.js +13 -4
- package/esm2015/lib/sharedComponents/users-radio-list/users-radio-list.component.ngfactory.js +22 -21
- package/esm2015/lib/sharedComponents/users-radio-list/users-radio-list.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +297 -216
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +9 -9
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.js +6 -3
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe.js +63 -0
- package/esm2015/lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe.ngsummary.json +1 -0
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +15 -2
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +32 -31
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngsummary.json +1 -1
- package/esm2015/vcomply-workflow-engine.js +6 -5
- package/esm2015/vcomply-workflow-engine.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +415 -226
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/group-users-list/group-users-list.component.d.ts +5 -0
- package/lib/sharedComponents/owner-list/owner-list.component.d.ts +6 -0
- package/lib/sharedComponents/users-radio-list/users-radio-list.component.d.ts +5 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +10 -0
- package/lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe.d.ts +4 -0
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +6 -0
- package/package.json +2 -2
- package/vcomply-workflow-engine.d.ts +5 -4
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -13,6 +13,11 @@ export declare class GroupUsersListComponent implements OnInit, OnChanges {
|
|
|
13
13
|
closeUsersList: EventEmitter<any>;
|
|
14
14
|
selectedGroups: any[];
|
|
15
15
|
assigneeGroupsList: any[];
|
|
16
|
+
disabledId: any[];
|
|
17
|
+
fromResponsibility: any;
|
|
18
|
+
reviewerIds: any[];
|
|
19
|
+
overseerIds: any[];
|
|
20
|
+
assignorId: any[];
|
|
16
21
|
search: string;
|
|
17
22
|
selectedIds: any[];
|
|
18
23
|
animation: boolean;
|
|
@@ -15,10 +15,16 @@ export declare class OwnerListComponent implements OnInit, OnChanges {
|
|
|
15
15
|
noDataText: string;
|
|
16
16
|
workflowList: string[];
|
|
17
17
|
workflowText: string;
|
|
18
|
+
disabledIds: any;
|
|
18
19
|
nonRemovableUsersList: any;
|
|
19
20
|
saveSelectedList: EventEmitter<any>;
|
|
20
21
|
closeUsersList: EventEmitter<any>;
|
|
21
22
|
reviewerWorkflowTypeChange: EventEmitter<any>;
|
|
23
|
+
fromResponsibility: any;
|
|
24
|
+
assignorId: any[];
|
|
25
|
+
assigneeIds: any[];
|
|
26
|
+
reviewerIds: any[];
|
|
27
|
+
overseerIds: any[];
|
|
22
28
|
search: string;
|
|
23
29
|
selectedIds: any[];
|
|
24
30
|
animation: boolean;
|
|
@@ -7,6 +7,11 @@ export declare class UserRadioListComponent implements OnInit, OnChanges {
|
|
|
7
7
|
itemEmailKey: string;
|
|
8
8
|
saveSelectedList: EventEmitter<any>;
|
|
9
9
|
closeUsersList: EventEmitter<any>;
|
|
10
|
+
disabledId: any[];
|
|
11
|
+
fromResponsibility: any;
|
|
12
|
+
reviewerIds: any[];
|
|
13
|
+
overseerIds: any[];
|
|
14
|
+
assignorId: any[];
|
|
10
15
|
selectedUser: any;
|
|
11
16
|
search: string;
|
|
12
17
|
selectedIds: any[];
|
|
@@ -21,6 +21,11 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
21
21
|
isEntrust: boolean;
|
|
22
22
|
feature: any;
|
|
23
23
|
allGroupAssignee: boolean;
|
|
24
|
+
assignorId: any[];
|
|
25
|
+
assigneeIds: any[];
|
|
26
|
+
reviewerIds: any[];
|
|
27
|
+
overseerIds: any[];
|
|
28
|
+
disableRadioAssignee: any[];
|
|
24
29
|
set closeOnEsc(escapeCondition: boolean);
|
|
25
30
|
orgDetails: any;
|
|
26
31
|
pickerChanged: EventEmitter<any>;
|
|
@@ -67,6 +72,9 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
67
72
|
assignorsList: any[];
|
|
68
73
|
assigneesList: any[];
|
|
69
74
|
reviewersList: any[];
|
|
75
|
+
disableAssigneeIds: any[];
|
|
76
|
+
disableReviewerIds: any[];
|
|
77
|
+
disableOverseerIds: any[];
|
|
70
78
|
reviewerMemberIdsList: any[];
|
|
71
79
|
groupOverseerList: any[];
|
|
72
80
|
groupReviewerList: any[];
|
|
@@ -206,7 +214,9 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
206
214
|
*/
|
|
207
215
|
assignUserMemberId(list: any): any;
|
|
208
216
|
refreshAllLists(): void;
|
|
217
|
+
disableList(allUsers: any, assignorAndAssigneesIds: any, assigneeIds: any, reviewersIds: any, overseerIds: any): void;
|
|
209
218
|
refreshListsWhileProgramSelected(): void;
|
|
219
|
+
disableProgramList(assignorAndAssigneesIds: any, assigneeIds: any, reviewersIds: any, overseerIds: any): void;
|
|
210
220
|
/**
|
|
211
221
|
* If the form is valid, then if the mode is EDIT, then set the organizationId and memberId to the
|
|
212
222
|
* authService values, and then call the entrustResponsibility function with the responsibilityForm as
|
package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts
CHANGED
|
@@ -16,9 +16,15 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
16
16
|
isPagination: any;
|
|
17
17
|
usersList: any;
|
|
18
18
|
groupsList: any;
|
|
19
|
+
fromResponsibility: any;
|
|
20
|
+
assignorId: any[];
|
|
21
|
+
assigneeIds: any[];
|
|
22
|
+
reviewerIds: any[];
|
|
23
|
+
overseerIds: any[];
|
|
19
24
|
userListInfo: any;
|
|
20
25
|
groupListInfo: any;
|
|
21
26
|
fetchUserData: EventEmitter<any>;
|
|
27
|
+
disabledIds: any;
|
|
22
28
|
nonRemovableUserIds: any;
|
|
23
29
|
selectedUsers: any;
|
|
24
30
|
selectedUserIds: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.185",
|
|
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
|
+
}
|
|
@@ -216,8 +216,8 @@ export { PascalPipe as ɵgv } from './lib/ui-kit/formgroup/pipes/pascal.pipe';
|
|
|
216
216
|
export { SearchMultiSelectPipe as ɵgw } from './lib/ui-kit/formgroup/pipes/searchMultiSelect.pipe';
|
|
217
217
|
export { LineLoaderComponent as ɵix } from './lib/ui-kit/line-loader/line-loader.component';
|
|
218
218
|
export { LineLoaderModule as ɵiw } from './lib/ui-kit/line-loader/line-loader.module';
|
|
219
|
-
export { NoDataComponent as
|
|
220
|
-
export { NoDataModule as
|
|
219
|
+
export { NoDataComponent as ɵle } from './lib/ui-kit/no-data/no-data.component';
|
|
220
|
+
export { NoDataModule as ɵld } from './lib/ui-kit/no-data/no-data.module';
|
|
221
221
|
export { PaginationModule as ɵjn } from './lib/ui-kit/pagination/pagination.module';
|
|
222
222
|
export { PaginationComponent as ɵjo } from './lib/ui-kit/pagination/pagination/pagination.component';
|
|
223
223
|
export { PopoverHoverComponent as ɵjk } from './lib/ui-kit/popover-hover/popover-hover.component';
|
|
@@ -260,13 +260,14 @@ export { LoaderFrameworkComponent as ɵks } from './lib/workflow-program/create-
|
|
|
260
260
|
export { CategoryAllSelectPipe as ɵku } from './lib/workflow-program/create-program-ui/define-framework-listing/pipes/category-all-select.pipe';
|
|
261
261
|
export { SearchNewPipe as ɵkw } from './lib/workflow-program/create-program-ui/define-framework-listing/pipes/search.pipe';
|
|
262
262
|
export { SubCatIndeterPipe as ɵkv } from './lib/workflow-program/create-program-ui/define-framework-listing/pipes/sub-cat-indeter.pipe';
|
|
263
|
+
export { TooltipMessagePipe as ɵla } from './lib/workflow-program/create-program-ui/define-framework-listing/pipes/tooltip-message.pipe';
|
|
263
264
|
export { InputTrimDirective as ɵkb } from './lib/workflow-program/create-program-ui/directives/input-trim.directive';
|
|
264
265
|
export { FilePillComponent as ɵjy } from './lib/workflow-program/create-program-ui/file-pill/file-pill.component';
|
|
265
266
|
export { VuiFloatingBarComponent as ɵke } from './lib/workflow-program/create-program-ui/floating-bar/floating-bar.component';
|
|
266
267
|
export { FormFieldComponent as ɵjx } from './lib/workflow-program/create-program-ui/form-field/form-field.component';
|
|
267
268
|
export { InputWithPillComponent as ɵjz } from './lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component';
|
|
268
|
-
export { PaginationModule as
|
|
269
|
-
export { PaginationComponent as
|
|
269
|
+
export { PaginationModule as ɵlb } from './lib/workflow-program/create-program-ui/pagination/pagination.module';
|
|
270
|
+
export { PaginationComponent as ɵlc } from './lib/workflow-program/create-program-ui/pagination/pagination/pagination.component';
|
|
270
271
|
export { ArrayConcatPipe as ɵdt } from './lib/workflow-program/create-program-ui/pipes/array-concat.pipe';
|
|
271
272
|
export { AssessmentResolverPipe as ɵky } from './lib/workflow-program/create-program-ui/pipes/assessment-resolver.pipe';
|
|
272
273
|
export { FilterPipe as ɵkz } from './lib/workflow-program/create-program-ui/pipes/filter.pipe';
|