vcomply-workflow-engine 3.1.31 → 3.1.32
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/workflow/grc-object/grc-object-container/grc-object-container.component.mjs +2 -3
- package/esm2020/lib/workflow/shared/components/list-popup/list-popup.component.mjs +3 -3
- package/esm2020/lib/workflow-risk/workflow-risk.component.mjs +2 -2
- package/fesm2015/vcomply-workflow-engine.mjs +4 -5
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +4 -5
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4171,7 +4171,7 @@ ListPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ver
|
|
|
4171
4171
|
[disabledId]="listObject[openedPopup]?.disabledIds"
|
|
4172
4172
|
[fromResponsibility]="'Assignee'"
|
|
4173
4173
|
(saveSelectedList)="saveSelectedList($event)"
|
|
4174
|
-
(
|
|
4174
|
+
(closeUsersList)="activeDeSelector()"
|
|
4175
4175
|
>
|
|
4176
4176
|
</app-group-users-list>
|
|
4177
4177
|
<app-risk-category-risk-listing
|
|
@@ -4224,7 +4224,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
4224
4224
|
[disabledId]="listObject[openedPopup]?.disabledIds"
|
|
4225
4225
|
[fromResponsibility]="'Assignee'"
|
|
4226
4226
|
(saveSelectedList)="saveSelectedList($event)"
|
|
4227
|
-
(
|
|
4227
|
+
(closeUsersList)="activeDeSelector()"
|
|
4228
4228
|
>
|
|
4229
4229
|
</app-group-users-list>
|
|
4230
4230
|
<app-risk-category-risk-listing
|
|
@@ -5362,7 +5362,6 @@ class GrcObjectContainerComponent {
|
|
|
5362
5362
|
if (event === 'OTHER_GRC_OBJECTS') {
|
|
5363
5363
|
this.GRCSelectedTab = this.otherGRCTabIndex[subType] ?? 0;
|
|
5364
5364
|
this.getOtherGRCObjects({ type: this.GRCSelectedTab });
|
|
5365
|
-
console.log('arrangedGrcData ==>', subType, this.otherGRCCard);
|
|
5366
5365
|
}
|
|
5367
5366
|
if (this.LIST_POPUP.includes(event)) {
|
|
5368
5367
|
this.pickerChanged.emit(true);
|
|
@@ -5434,6 +5433,7 @@ class GrcObjectContainerComponent {
|
|
|
5434
5433
|
});
|
|
5435
5434
|
if (this.MODE === 'EDIT') {
|
|
5436
5435
|
this.listObject.OWNER.selectedData = this.listObject['OWNER']['data']['assigneesList'].filter((item) => this.grcPayload.owners.includes(item?.member_id));
|
|
5436
|
+
this.listObject['OWNER'].disabledIds = [...new Set(this.disabledIds)];
|
|
5437
5437
|
}
|
|
5438
5438
|
else {
|
|
5439
5439
|
this.defaultSelectedUser();
|
|
@@ -5581,7 +5581,6 @@ class GrcObjectContainerComponent {
|
|
|
5581
5581
|
this.otherGRCCard[item?.type].selectedCount += 1;
|
|
5582
5582
|
});
|
|
5583
5583
|
this.grcDataWithTypes = GRCObject;
|
|
5584
|
-
console.log('this.grcDataWithTypes ==>', this.grcDataWithTypes);
|
|
5585
5584
|
this.updateOtherGRCObjectsPayload();
|
|
5586
5585
|
}
|
|
5587
5586
|
}
|
|
@@ -9910,7 +9909,6 @@ class WorkflowRiskComponent {
|
|
|
9910
9909
|
}
|
|
9911
9910
|
populateOptionalFields() {
|
|
9912
9911
|
const activatedOptions = [];
|
|
9913
|
-
console.log('this.riskForm. ===>', this.riskForm);
|
|
9914
9912
|
if (this.riskForm.addMitigation) {
|
|
9915
9913
|
activatedOptions.push('MITIGATION');
|
|
9916
9914
|
}
|
|
@@ -10424,6 +10422,7 @@ class WorkflowRiskComponent {
|
|
|
10424
10422
|
this.date = new Date();
|
|
10425
10423
|
this.submitted = false;
|
|
10426
10424
|
this.refreshForm.emit(true);
|
|
10425
|
+
this.rcSelected.emit(false);
|
|
10427
10426
|
this.frequencyDetails = {
|
|
10428
10427
|
frequency: '',
|
|
10429
10428
|
started_at: '',
|