vcomply-workflow-engine 6.1.49 → 6.1.50

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.
@@ -1 +1,2 @@
1
1
  export declare const NO_DATA_FOUND_IMAGE = "No results matched your search criteria.";
2
+ export declare const PAGINATION_LIMIT = 30;
@@ -37,6 +37,15 @@ export declare class CommonService {
37
37
  added: number[];
38
38
  removed: number[];
39
39
  };
40
+ setPagination(res: any): {
41
+ responsibilities_from: number;
42
+ responsibilities_to: number;
43
+ total_responsibilities: any;
44
+ total_pages: number;
45
+ current_page: any;
46
+ per_page: any;
47
+ total_count: any;
48
+ };
40
49
  static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
41
50
  static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
42
51
  }
@@ -1,8 +1,10 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FrequencyService } from '../frequency.service';
3
+ import { CommonService } from '../../../services/common.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class FrequencyResponsibilityListComponent implements OnInit {
5
6
  private frequencyService;
7
+ private commonService;
6
8
  onCompletionOfResponsibility: any;
7
9
  selectedResponsibilityDetails: any;
8
10
  backButton: EventEmitter<any>;
@@ -73,7 +75,7 @@ export declare class FrequencyResponsibilityListComponent implements OnInit {
73
75
  type: string;
74
76
  paginationType: string;
75
77
  a: string;
76
- searchText: string;
78
+ searchTerm: string;
77
79
  filterData: {
78
80
  appList: never[];
79
81
  riskIds: never[];
@@ -94,7 +96,7 @@ export declare class FrequencyResponsibilityListComponent implements OnInit {
94
96
  responsibilityList: any;
95
97
  close: any;
96
98
  openedResponsibility: any[];
97
- constructor(frequencyService: FrequencyService);
99
+ constructor(frequencyService: FrequencyService, commonService: CommonService);
98
100
  ngOnInit(): void;
99
101
  back(): void;
100
102
  getResponsibilityList(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "6.1.49",
3
+ "version": "6.1.50",
4
4
  "peerDependencies": {
5
5
  "@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
6
6
  "@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "