vcomply-workflow-engine 3.1.31 → 3.1.33
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/sharedComponents/table-card-loader/table-card-loader.component.mjs +3 -3
- package/esm2020/lib/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +36 -14
- package/esm2020/lib/workflow/shared/components/attributes/attributes-text-box/attributes-text-box.component.mjs +1 -1
- package/esm2020/lib/workflow/shared/components/attributes/attributes.component.mjs +8 -3
- package/esm2020/lib/workflow/shared/components/edit-mode/edit-mode.component.mjs +13 -4
- package/esm2020/lib/workflow/shared/components/grc-object-list/grc-object-list.component.mjs +7 -3
- package/esm2020/lib/workflow/shared/components/list-popup/list-popup.component.mjs +19 -6
- package/esm2020/lib/workflow/shared/constants/grcObject.constant.mjs +2 -1
- package/esm2020/lib/workflow/shared/interfaces/add-grc.mjs +1 -1
- package/esm2020/lib/workflow-risk/workflow-risk.component.mjs +37 -8
- package/fesm2015/vcomply-workflow-engine.mjs +119 -34
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +117 -34
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/workflow/grc-object/grc-object-container/grc-object-container.component.d.ts +2 -0
- package/lib/workflow/shared/components/attributes/attributes.component.d.ts +2 -1
- package/lib/workflow/shared/components/edit-mode/edit-mode.component.d.ts +2 -1
- package/lib/workflow/shared/components/grc-object-list/grc-object-list.component.d.ts +3 -1
- package/lib/workflow/shared/components/list-popup/list-popup.component.d.ts +3 -1
- package/lib/workflow/shared/constants/grcObject.constant.d.ts +1 -0
- package/lib/workflow/shared/interfaces/add-grc.d.ts +1 -1
- package/lib/workflow-risk/workflow-risk.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
|
|
|
44
44
|
grc_exists: string;
|
|
45
45
|
attributes: string;
|
|
46
46
|
};
|
|
47
|
+
GRC_TYPE_ARRAY: string[];
|
|
47
48
|
EDITOR_CONFIG: {
|
|
48
49
|
mode: string;
|
|
49
50
|
colorPalette: boolean;
|
|
@@ -95,6 +96,7 @@ export declare class GrcObjectContainerComponent implements OnInit, OnDestroy {
|
|
|
95
96
|
onTextChange(event: any): void;
|
|
96
97
|
onPopupOpen(type: OpenedPopup['type']): void;
|
|
97
98
|
onSaveSelectedList(event: any): void;
|
|
99
|
+
getAttributeSelection(event: any): void;
|
|
98
100
|
setListPayload(): void;
|
|
99
101
|
onClickOutside(): void;
|
|
100
102
|
onEdit(event: any, subType: string): void;
|
|
@@ -22,6 +22,7 @@ export declare class AttributesComponent implements OnInit {
|
|
|
22
22
|
isFormSubmitted: boolean;
|
|
23
23
|
disabled: boolean;
|
|
24
24
|
onAttributesSelection: EventEmitter<any>;
|
|
25
|
+
onClick: EventEmitter<any>;
|
|
25
26
|
constructor(grcService: GrcService);
|
|
26
27
|
ngOnInit(): void;
|
|
27
28
|
onDataSelection: (data: any, index: number) => void;
|
|
@@ -35,5 +36,5 @@ export declare class AttributesComponent implements OnInit {
|
|
|
35
36
|
close(event: any): void;
|
|
36
37
|
onRemoveData(removedInfo: any, index: number): void;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<AttributesComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttributesComponent, "lib-attributes", never, { "attributesInfo": "attributesInfo"; "isFormSubmitted": "isFormSubmitted"; "disabled": "disabled"; }, { "onAttributesSelection": "onAttributesSelection"; }, never, never, true>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttributesComponent, "lib-attributes", never, { "attributesInfo": "attributesInfo"; "isFormSubmitted": "isFormSubmitted"; "disabled": "disabled"; }, { "onAttributesSelection": "onAttributesSelection"; "onClick": "onClick"; }, never, never, true>;
|
|
39
40
|
}
|
|
@@ -5,11 +5,12 @@ export declare class EditModeComponent implements OnInit {
|
|
|
5
5
|
type: string;
|
|
6
6
|
nonRemovableIds: Array<number>;
|
|
7
7
|
isMultiple: boolean;
|
|
8
|
+
countColor: string;
|
|
8
9
|
isOnEdit: EventEmitter<any>;
|
|
9
10
|
onRemoveData: EventEmitter<any>;
|
|
10
11
|
constructor();
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
removeItem(index: number): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditModeComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditModeComponent, "lib-edit-mode", never, { "selectedData": "selectedData"; "type": "type"; "nonRemovableIds": "nonRemovableIds"; "isMultiple": "isMultiple"; }, { "isOnEdit": "isOnEdit"; "onRemoveData": "onRemoveData"; }, never, ["*"], true>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditModeComponent, "lib-edit-mode", never, { "selectedData": "selectedData"; "type": "type"; "nonRemovableIds": "nonRemovableIds"; "isMultiple": "isMultiple"; "countColor": "countColor"; }, { "isOnEdit": "isOnEdit"; "onRemoveData": "onRemoveData"; }, never, ["*"], true>;
|
|
15
16
|
}
|
|
@@ -29,6 +29,8 @@ export declare class GrcObjectListComponent implements OnInit {
|
|
|
29
29
|
preSelectedGRC: any;
|
|
30
30
|
selectAllButton: 'Select All' | 'Deselect All';
|
|
31
31
|
selectedTab: 0 | 1 | 2 | 3;
|
|
32
|
+
mode: 'CREATE' | 'EDIT';
|
|
33
|
+
onEditGRCId: string;
|
|
32
34
|
set setSelectedGRC(selectedGRC: any);
|
|
33
35
|
saveOtherGRC: EventEmitter<any>;
|
|
34
36
|
closeOtherGRC: EventEmitter<any>;
|
|
@@ -49,5 +51,5 @@ export declare class GrcObjectListComponent implements OnInit {
|
|
|
49
51
|
resetSelectedTabCount(): void;
|
|
50
52
|
setSelectedTabCount(data: any): void;
|
|
51
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<GrcObjectListComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GrcObjectListComponent, "app-grc-object-list", never, { "grcObject": "grcObject"; "currentPage": "currentPage"; "loader": "loader"; "tableCard": "tableCard"; "selectedTab": "selectedTab"; "cardLoader": "cardLoader"; "setSelectedGRC": "selectedGRC"; }, { "saveOtherGRC": "saveOtherGRC"; "closeOtherGRC": "closeOtherGRC"; "getOtherGRCObjects": "getOtherGRCObjects"; }, never, never, true>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GrcObjectListComponent, "app-grc-object-list", never, { "grcObject": "grcObject"; "currentPage": "currentPage"; "loader": "loader"; "tableCard": "tableCard"; "selectedTab": "selectedTab"; "cardLoader": "cardLoader"; "onEditGRCId": "onEditGRCId"; "mode": "mode"; "setSelectedGRC": "selectedGRC"; }, { "saveOtherGRC": "saveOtherGRC"; "closeOtherGRC": "closeOtherGRC"; "getOtherGRCObjects": "getOtherGRCObjects"; }, never, never, true>;
|
|
53
55
|
}
|
|
@@ -7,6 +7,8 @@ export declare class ListPopupComponent implements OnInit {
|
|
|
7
7
|
tableCard: any;
|
|
8
8
|
GRCSelectedTab: 0 | 1 | 2 | 3;
|
|
9
9
|
otherGrcCardLoader: boolean;
|
|
10
|
+
mode: 'CREATE' | 'EDIT';
|
|
11
|
+
onEditGRCId: string;
|
|
10
12
|
onSaveSelectedList: EventEmitter<any>;
|
|
11
13
|
getOtherGRCObjects: EventEmitter<any>;
|
|
12
14
|
constructor();
|
|
@@ -15,5 +17,5 @@ export declare class ListPopupComponent implements OnInit {
|
|
|
15
17
|
activeDeSelector(): void;
|
|
16
18
|
getOtherGRCObjectList(event: any): void;
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListPopupComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListPopupComponent, "lib-list-popup", never, { "openedPopup": "openedPopup"; "listObject": "listObject"; "tableCard": "tableCard"; "GRCSelectedTab": "GRCSelectedTab"; }, { "onSaveSelectedList": "onSaveSelectedList"; "getOtherGRCObjects": "getOtherGRCObjects"; }, never, never, true>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListPopupComponent, "lib-list-popup", never, { "openedPopup": "openedPopup"; "listObject": "listObject"; "tableCard": "tableCard"; "GRCSelectedTab": "GRCSelectedTab"; "onEditGRCId": "onEditGRCId"; "mode": "mode"; }, { "onSaveSelectedList": "onSaveSelectedList"; "getOtherGRCObjects": "getOtherGRCObjects"; }, never, never, true>;
|
|
19
21
|
}
|
|
@@ -88,7 +88,7 @@ export interface ViewSelectedData {
|
|
|
88
88
|
type: 'STRING' | 'ARRAY';
|
|
89
89
|
}
|
|
90
90
|
export interface OpenedPopup {
|
|
91
|
-
type: '' | 'RC' | 'RISK' | 'NAME' | 'RISK_CATEGORY' | 'OWNER' | 'OTHER_GRC_OBJECTS';
|
|
91
|
+
type: '' | 'RC' | 'RISK' | 'NAME' | 'RISK_CATEGORY' | 'OWNER' | 'OTHER_GRC_OBJECTS' | 'ATTRIBUTES';
|
|
92
92
|
}
|
|
93
93
|
export interface DatePickerConfig {
|
|
94
94
|
disableKeypress: boolean;
|
|
@@ -17,6 +17,7 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
17
17
|
private snackBar;
|
|
18
18
|
private frequencyService;
|
|
19
19
|
private grcService;
|
|
20
|
+
GRC_TYPE_ARRAY: string[];
|
|
20
21
|
responsibilityCentersList: any;
|
|
21
22
|
selectedResponsibilityCenters: any;
|
|
22
23
|
mitigationDetails: any;
|
|
@@ -90,6 +91,8 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
90
91
|
grcLoader: boolean;
|
|
91
92
|
selectedGRCTab: number;
|
|
92
93
|
grcDataWithTypes: any;
|
|
94
|
+
grcSearchString: string;
|
|
95
|
+
grcTabLoader: boolean;
|
|
93
96
|
constructor(riskService: AddRiskService, authService: AuthService, uiKitService: UiKitService, snackBar: SnackBarService, frequencyService: FrequencyService, grcService: GrcService, config?: Configurations);
|
|
94
97
|
description: EditorConfig;
|
|
95
98
|
mitigationDescriptionPlan: EditorConfig;
|
|
@@ -208,6 +211,8 @@ export declare class WorkflowRiskComponent implements OnInit {
|
|
|
208
211
|
getOtherGRCObjects(event?: any): void;
|
|
209
212
|
saveSelectedList(event: any): void;
|
|
210
213
|
setOtherGRCTypesFormate(): void;
|
|
214
|
+
removeOtherGRCObjects(event: any): void;
|
|
215
|
+
filterOtherGRCData(event: any, type: string): void;
|
|
211
216
|
resetGRCDataWithTypes(): void;
|
|
212
217
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowRiskComponent, [null, null, null, null, null, null, { optional: true; }]>;
|
|
213
218
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowRiskComponent, "app-workflow-risk", never, { "feature": "feature"; "mode": "mode"; "riskId": "riskId"; "defaultRiskType": "defaultRiskType"; "moveToRegisterMode": "moveToRegisterMode"; "secondaryOpenPortal": "secondaryOpenPortal"; "openedFrom": "openedFrom"; }, { "showConfirmationAlert": "showConfirmationAlert"; "pickerChanged": "pickerChanged"; "populateOption": "populateOption"; "closeWorkflow": "closeWorkflow"; "disconnectRefresh": "disconnectRefresh"; "refreshForm": "refreshForm"; "hideElementsFromMoreOptions": "hideElementsFromMoreOptions"; "rcSelected": "rcSelected"; }, never, never, false>;
|
package/package.json
CHANGED