vcomply-workflow-engine 6.1.83 → 6.1.84

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.
@@ -46,6 +46,12 @@ export declare class CommonService {
46
46
  per_page: any;
47
47
  total_count: any;
48
48
  };
49
+ /**
50
+ * Post Message to parent window
51
+ * @param message
52
+ */
53
+ postMessageToParent(message: any): void;
54
+ private getOrigin;
49
55
  static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
50
56
  static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
51
57
  }
@@ -3,11 +3,13 @@ import { AuthService } from '../../workflow-services/auth.service';
3
3
  import { ResponsibilityService } from '../../workflow-services/responsibility.service';
4
4
  import { AssessmentCategoryList } from './service/assessment.interface';
5
5
  import { AssessmentService } from './service/assessment.service';
6
+ import { CommonService } from '../../services/common.service';
6
7
  import * as i0 from "@angular/core";
7
8
  export declare class AssessmentListComponent implements OnInit {
8
9
  private responsibilityService;
9
10
  private assessmentService;
10
11
  private auth;
12
+ private commonService;
11
13
  ASSETS: {
12
14
  responsibility_center: string;
13
15
  case_type: string;
@@ -43,6 +45,10 @@ export declare class AssessmentListComponent implements OnInit {
43
45
  placeholder: string;
44
46
  add_logic: string;
45
47
  image_choice: string;
48
+ /**
49
+ *
50
+ * @param search : search text
51
+ */
46
52
  logic_image_choice: string;
47
53
  thank_you_image: string;
48
54
  upload: string;
@@ -94,7 +100,7 @@ export declare class AssessmentListComponent implements OnInit {
94
100
  isFullScreen: boolean;
95
101
  onAssessmentSelect: EventEmitter<any>;
96
102
  cancelAssessment: EventEmitter<any>;
97
- constructor(responsibilityService: ResponsibilityService, assessmentService: AssessmentService, auth: AuthService);
103
+ constructor(responsibilityService: ResponsibilityService, assessmentService: AssessmentService, auth: AuthService, commonService: CommonService);
98
104
  ngOnInit(): void;
99
105
  onAssessmentSelected(event: any): void;
100
106
  preview(evt: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "6.1.83",
3
+ "version": "6.1.84",
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 "