vcomply-workflow-engine 3.1.17 → 3.1.19

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.
@@ -101,7 +101,7 @@ export declare class GrcObjectContainerComponent implements OnInit {
101
101
  setListPayload(): void;
102
102
  onClickOutside(): void;
103
103
  onEdit(event: any, subType: string): void;
104
- onRemoveData(event: any, type: 'RC' | 'OWNER' | 'OTHER_GRC_OBJECTS'): void;
104
+ onRemoveData(event: any, type: 'RC' | 'OWNER' | 'OTHER_GRC_OBJECTS' | 'RISK_CATEGORY'): void;
105
105
  changeAttributesType(event: any): void;
106
106
  private _initiateAPI;
107
107
  private _getOwnerList;
@@ -137,6 +137,10 @@ export declare class GrcObjectContainerComponent implements OnInit {
137
137
  resetGRCDataWithTypes(): void;
138
138
  get grcValidationCheck(): boolean;
139
139
  getRiskCategoryPayload(selectedData: any): any;
140
+ updateGRCObject(): void;
141
+ updateOtherGRCObjectsPayload(): void;
142
+ deleteSelectedRisk(categoryId: number, risk: any): void;
143
+ findCheckedCategoryIndex(categoryId: number): number;
140
144
  static ɵfac: i0.ɵɵFactoryDeclaration<GrcObjectContainerComponent, never>;
141
145
  static ɵcmp: i0.ɵɵComponentDeclaration<GrcObjectContainerComponent, "lib-grc-object-container", never, { "grcType": "grcType"; "MODE": "MODE"; "ID": "ID"; }, { "populateOption": "populateOption"; "pickerChanged": "pickerChanged"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; "resetForm": "resetForm"; }, never, never, false>;
142
146
  }
@@ -28,6 +28,7 @@ export declare class GrcResponsibilityListingComponent implements OnInit {
28
28
  updateOrCreateCategory(categoryId: number, category: any): void;
29
29
  getSelectedDataAndIds(selectedData: any): void;
30
30
  findCheckedCategoryIndex(categoryId: number): number;
31
+ deleteSelectedRisk(categoryId: number, risk: any): void;
31
32
  static ɵfac: i0.ɵɵFactoryDeclaration<GrcResponsibilityListingComponent, [{ optional: true; }]>;
32
33
  static ɵcmp: i0.ɵɵComponentDeclaration<GrcResponsibilityListingComponent, "app-grc-responsibility-listing", never, { "tableCard": "tableCard"; "activeCategory": "activeCategory"; "headerText": "headerText"; "currentPage": "currentPage"; "perPageLimit": "perPageLimit"; "totalListData": "totalListData"; "totalPages": "totalPages"; "selectedListData": "selectedListData"; "selectedListDataIds": "selectedListDataIds"; "selectedCatAndRisk": "selectedCatAndRisk"; "risksList": "dataList"; "getSelectedCatAndRisk": "selectedCatAndRisk"; }, { "getUpdatedDataList": "getUpdatedDataList"; "changeSelectedCatAndRisk": "changeSelectedCatAndRisk"; }, never, never, true>;
33
34
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Subscription } from 'rxjs';
3
+ import { GrcResponsibilityListingComponent } from '../grc-responsibility-listing/grc-responsibility-listing.component';
3
4
  import { GrcService } from '../../services/grc.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class RiskCategoryRiskListingComponent implements OnInit {
@@ -41,6 +42,7 @@ export declare class RiskCategoryRiskListingComponent implements OnInit {
41
42
  selectedRisks: any;
42
43
  set selectedCatAndRiskData(value: any);
43
44
  closeUsersList: EventEmitter<any>;
45
+ responsibilityListingComponent: GrcResponsibilityListingComponent;
44
46
  constructor(grcService: GrcService);
45
47
  ngOnInit(): void;
46
48
  setSelectedTab(event: any): void;
@@ -115,6 +115,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
115
115
  showConfirmationPopup(config: ConfirmationAlert): void;
116
116
  bulkUploadBrowse(event: any): void;
117
117
  onResetForm(): void;
118
+ onResetGRCForm(): void;
118
119
  shiftToEditMode(): void;
119
120
  scrollForm(): void;
120
121
  /**
@@ -46,6 +46,7 @@ export declare class ResponsibilityService {
46
46
  getObjectType(): Observable<any[]>;
47
47
  getGRCObjectDetails(id: string): Observable<any[]>;
48
48
  addGRCObject(payload: any): Observable<any[]>;
49
+ updateGRCObject(payload: any, _id: string): Observable<any[]>;
49
50
  static ɵfac: i0.ɵɵFactoryDeclaration<ResponsibilityService, [null, null, { optional: true; }]>;
50
51
  static ɵprov: i0.ɵɵInjectableDeclaration<ResponsibilityService>;
51
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "3.1.17",
3
+ "version": "3.1.19",
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"