vcomply-workflow-engine 2.4.64 → 2.4.67
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 +124 -74
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/interceptor/business-cycle.interceptor.js +15 -0
- package/esm2015/lib/interceptor/business-cycle.interceptor.ngsummary.json +1 -0
- package/esm2015/lib/more-option/more-option.component.js +12 -12
- package/esm2015/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.js +6 -1
- package/esm2015/lib/sharedComponents/assessment-editor/components/welcome-thankyou/welcome-thankyou.component.js +2 -2
- package/esm2015/lib/sharedComponents/assessment-editor/components/welcome-thankyou/welcome-thankyou.component.ngfactory.js +1 -2
- package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngfactory.js +1 -1
- package/esm2015/lib/sharedComponents/assessment-editor/services/validator.service.js +10 -7
- package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.js +1 -1
- package/esm2015/lib/sharedComponents/program-listing/program-listing.component.js +2 -2
- package/esm2015/lib/sharedComponents/program-listing/program-listing.component.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.js +2 -2
- package/esm2015/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +19 -5
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +1 -1
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +9 -5
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +3 -3
- package/esm2015/lib/workflow-engine.module.js +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/assessment-picker/assessment.service.js +2 -2
- package/esm2015/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.js +4 -3
- package/esm2015/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.ngfactory.js +6 -4
- package/esm2015/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +13 -3
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +4 -4
- 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 +8 -4
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +119 -118
- package/esm2015/lib/workflow-risk/workflow-risk.component.js +9 -6
- package/esm2015/lib/workflow-services/programs.service.js +12 -12
- package/fesm2015/vcomply-workflow-engine.js +97 -53
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/interceptor/business-cycle.interceptor.d.ts +5 -0
- package/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.d.ts +1 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +2 -0
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
- package/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.d.ts +1 -0
- package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +2 -0
- package/lib/workflow-program/workflow-program.component.d.ts +1 -0
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
export declare class BusinessCycleInterceptor implements HttpInterceptor {
|
|
4
|
+
intercept(httpRequest: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
5
|
+
}
|
|
@@ -9,6 +9,7 @@ export declare class AddPageDetailsComponent implements OnInit {
|
|
|
9
9
|
fd: any;
|
|
10
10
|
constructor(config: DialogConfig, dialogRef: DialogRef);
|
|
11
11
|
pageDetails: any;
|
|
12
|
+
tempPageDetails: any;
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
savePageDetails(): void;
|
|
14
15
|
extractContent(s: any): string;
|
|
@@ -17,6 +17,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
17
17
|
responsibilityId: string;
|
|
18
18
|
frameworkDetails: Array<any>;
|
|
19
19
|
isEntrust: boolean;
|
|
20
|
+
set closeOnEsc(escapeCondition: boolean);
|
|
20
21
|
pickerChanged: EventEmitter<any>;
|
|
21
22
|
populateOption: EventEmitter<any>;
|
|
22
23
|
hideElementsFromMoreOptions: EventEmitter<any>;
|
|
@@ -140,6 +141,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
140
141
|
getOrganizationDetails(): void;
|
|
141
142
|
getCategoryList(): void;
|
|
142
143
|
filterListsAccordingToProgram(program_id?: string): void;
|
|
144
|
+
getListsAccordingToProgram(program_id: string): void;
|
|
143
145
|
getAssignorsList(program_id?: string): void;
|
|
144
146
|
getAssigneesList(program_id?: string): void;
|
|
145
147
|
getPeopleListAgainstPID(program_id: string): void;
|
|
@@ -71,6 +71,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
|
|
|
71
71
|
dropdownLeft: any;
|
|
72
72
|
dropdownTop: any;
|
|
73
73
|
dropdownWidth: any;
|
|
74
|
+
closeOnEsc: boolean;
|
|
74
75
|
onKeydownHandler(event: KeyboardEvent): void;
|
|
75
76
|
currentWorkflow: any;
|
|
76
77
|
workflowTypeList: any;
|
package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
7
7
|
singleSelect: boolean;
|
|
8
8
|
fieldType: string;
|
|
9
9
|
searchKey: string;
|
|
10
|
+
isPagination: any;
|
|
10
11
|
usersList: any;
|
|
11
12
|
groupsList: any;
|
|
12
13
|
userListInfo: any;
|
|
@@ -85,4 +86,5 @@ export declare class UserGroupListComponent implements OnInit {
|
|
|
85
86
|
* @returns
|
|
86
87
|
*/
|
|
87
88
|
uniqueByProp(array: any, key: string): unknown[];
|
|
89
|
+
paginationVisible(): void;
|
|
88
90
|
}
|
|
@@ -71,6 +71,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
71
71
|
panelTitleReviewer: string;
|
|
72
72
|
panelTitleAssignee: string;
|
|
73
73
|
panelTitleApprover: string;
|
|
74
|
+
isApproverDisabled: boolean;
|
|
74
75
|
constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService);
|
|
75
76
|
noWhitespaceValidator(control: FormControl): {
|
|
76
77
|
whitespace: boolean;
|