vcomply-workflow-engine 3.2.5 → 3.2.7
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.
- package/esm2020/lib/more-option/more-option.component.mjs +14 -23
- package/esm2020/lib/workflow/shared/components/grc-category-listing/grc-category-listing.component.mjs +4 -3
- package/esm2020/lib/workflow/shared/components/grc-sub-category-listing/grc-sub-category-listing.component.mjs +3 -3
- package/esm2020/lib/workflow/shared/components/text-field/text-field.component.mjs +29 -24
- package/esm2020/lib/workflow/shared/constants/pagination-limits.constant.mjs +6 -0
- package/esm2020/lib/workflow-compliance/workflow-compliance.component.mjs +181 -42
- package/fesm2015/vcomply-workflow-engine.mjs +233 -89
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +198 -60
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow/shared/constants/pagination-limits.constant.d.ts +5 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +26 -2
- package/package.json +1 -1
|
@@ -5,8 +5,9 @@ import { ResponsibilityService } from '../workflow-services/responsibility.servi
|
|
|
5
5
|
import { FrequencyService } from '../sharedComponents/frequency/frequency.service';
|
|
6
6
|
import { UiKitService } from '../workflow-services/ui-kit.service';
|
|
7
7
|
import { SnackBarService } from '../ui-kit/snack-bar/snack-bar.service';
|
|
8
|
-
import { Subject } from 'rxjs';
|
|
8
|
+
import { Subject, Subscription } from 'rxjs';
|
|
9
9
|
import { ProgramsService } from '../workflow-services/programs.service';
|
|
10
|
+
import { GrcService } from '../workflow/shared/services/grc.service';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class WorkflowComplianceComponent implements OnInit {
|
|
12
13
|
private authService;
|
|
@@ -16,6 +17,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
16
17
|
private snackBar;
|
|
17
18
|
private permission;
|
|
18
19
|
private programService;
|
|
20
|
+
private grcService;
|
|
19
21
|
mode: string;
|
|
20
22
|
responsibilityId: string;
|
|
21
23
|
frameworkDetails: Array<any>;
|
|
@@ -31,6 +33,14 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
31
33
|
queryParam: string;
|
|
32
34
|
recentResponsibilityUrl: any;
|
|
33
35
|
isResponsibilityRcLinkEnabled: boolean;
|
|
36
|
+
grcList: Array<any>;
|
|
37
|
+
grcLoader: boolean;
|
|
38
|
+
otherGRCCard: any;
|
|
39
|
+
selectedGRCTab: number;
|
|
40
|
+
grcTabLoader: boolean;
|
|
41
|
+
grcSearchString: string;
|
|
42
|
+
GRC_TYPE_ARRAY: string[];
|
|
43
|
+
grcDataWithTypes: any;
|
|
34
44
|
set closeOnEsc(escapeCondition: boolean);
|
|
35
45
|
orgDetails: any;
|
|
36
46
|
url: string;
|
|
@@ -168,9 +178,10 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
168
178
|
userListLoader: boolean;
|
|
169
179
|
assignorsListLoader: boolean;
|
|
170
180
|
rawResponsibility: any;
|
|
181
|
+
otherGRCSubscription: Subscription;
|
|
171
182
|
whatInput: ElementRef;
|
|
172
183
|
unSubscribeProgram: Subject<void>;
|
|
173
|
-
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService);
|
|
184
|
+
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService, grcService: GrcService);
|
|
174
185
|
ngOnInit(): void;
|
|
175
186
|
activateSelector(type: any, event: boolean): void;
|
|
176
187
|
whatChanged(event: any): void;
|
|
@@ -382,6 +393,19 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
382
393
|
* @param {any} event - any - the event that is triggered when the user selects a radio button
|
|
383
394
|
*/
|
|
384
395
|
onReviewerWorkflowChange(event: any): void;
|
|
396
|
+
getOtherGRCObjects(event?: any): void;
|
|
397
|
+
/**
|
|
398
|
+
* The function `getOtherGRCTabCount` retrieves the count of different types of items (assets,
|
|
399
|
+
* processes, vendors, inventory) and updates the corresponding tabs with the count.
|
|
400
|
+
* @param {any} [event] - The "event" parameter is an optional parameter that can be passed to the
|
|
401
|
+
* "getOtherGRCTabCount" function. It is of type "any", which means it can accept any data type.
|
|
402
|
+
*/
|
|
403
|
+
getOtherGRCTabCount(event?: any): void;
|
|
404
|
+
getAllRCIds(rcIds: any): string;
|
|
405
|
+
setOtherGRCTypesFormate(): void;
|
|
406
|
+
resetGRCDataWithTypes(): void;
|
|
407
|
+
removeOtherGRCObjects(event: any): void;
|
|
408
|
+
filterOtherGRCData(event: any, type: string): void;
|
|
385
409
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowComplianceComponent, never>;
|
|
386
410
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowComplianceComponent, "app-workflow-compliance", never, { "mode": "mode"; "responsibilityId": "responsibilityId"; "frameworkDetails": "frameworkDetails"; "isEntrust": "isEntrust"; "feature": "feature"; "closeOnEsc": "closeOnEsc"; "orgDetails": "orgDetails"; "openedFrom": "openedFrom"; "selectedRC": "selectedRC"; "setSelectedProgram": "selectedProgram"; }, { "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; "closeWorkflow": "closeWorkflow"; "resetForm": "resetForm"; "disconnectRefresh": "disconnectRefresh"; "checkpointCountUpdated": "checkpointCountUpdated"; "rcSelected": "rcSelected"; "onRemovingCheckpoint": "onRemovingCheckpoint"; "isAssessmentDisabled": "isAssessmentDisabled"; "assigneeTypeChange": "assigneeTypeChange"; "onReviewerTypeChange": "onReviewerTypeChange"; }, never, never, false>;
|
|
387
411
|
}
|
package/package.json
CHANGED