vcomply-workflow-engine 2.4.50 → 2.4.53

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.
Files changed (21) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +33 -4
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/interceptor/business-cycle.interceptor.js +15 -0
  4. package/esm2015/lib/interceptor/business-cycle.interceptor.ngsummary.json +1 -0
  5. package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +7 -1
  6. package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +1 -1
  7. package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
  8. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +9 -3
  9. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +3 -3
  10. package/esm2015/lib/workflow-engine.module.js +4 -1
  11. package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +13 -3
  12. package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +3 -3
  13. package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngsummary.json +1 -1
  14. package/fesm2015/vcomply-workflow-engine.js +29 -4
  15. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  16. package/lib/interceptor/business-cycle.interceptor.d.ts +5 -0
  17. package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -0
  18. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  19. package/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.d.ts +2 -0
  20. package/package.json +1 -1
  21. 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
+ }
@@ -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>;
@@ -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;
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.4.50",
3
+ "version": "2.4.53",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.0.1",
6
6
  "@angular/core": "^12.0.1"