vcomply-workflow-engine 3.1.23 → 3.1.25

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,4 +1,4 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
2
  import { AddGrc, Button, GRCType, InputType, ListObject, OpenedPopup } from '../../shared/interfaces/add-grc';
3
3
  import { GrcService } from '../../shared/services/grc.service';
4
4
  import { ResponsibilityService } from '../../../workflow-services/responsibility.service';
@@ -6,7 +6,7 @@ import { AuthService } from '../../../workflow-services/auth.service';
6
6
  import { Subscription } from 'rxjs';
7
7
  import { UiKitService } from '../../../workflow-services/ui-kit.service';
8
8
  import * as i0 from "@angular/core";
9
- export declare class GrcObjectContainerComponent implements OnInit {
9
+ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
10
10
  private grcService;
11
11
  private apiService;
12
12
  private authService;
@@ -92,6 +92,7 @@ export declare class GrcObjectContainerComponent implements OnInit {
92
92
  resetForm: EventEmitter<any>;
93
93
  otherGRCSubscription: Subscription;
94
94
  constructor(grcService: GrcService, apiService: ResponsibilityService, authService: AuthService, uiKitService: UiKitService);
95
+ ngOnDestroy(): void;
95
96
  ngOnInit(): void;
96
97
  populateOptionalFields(): void;
97
98
  addMoreInfo(event: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "3.1.23",
3
+ "version": "3.1.25",
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"
@@ -35,4 +35,4 @@
35
35
  }
36
36
  },
37
37
  "sideEffects": false
38
- }
38
+ }