vcomply-workflow-engine 7.0.3 → 7.0.4
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/esm2022/lib/confirmation-alert/confirmation-alert.component.mjs +11 -7
- package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +67 -36
- package/esm2022/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.mjs +3 -3
- package/fesm2022/vcomply-workflow-engine.mjs +68 -35
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/confirmation-alert/confirmation-alert.component.d.ts +3 -1
- package/lib/workflow-policy/workflow-policy.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ConfirmationAlert } from '../interfaces/confirmation-alert';
|
|
3
|
+
import { DialogRef } from '../ui-kit/dialog/dialog-ref';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ConfirmationAlertComponent implements OnInit {
|
|
6
|
+
private dialogRef;
|
|
5
7
|
message: string;
|
|
6
8
|
config: ConfirmationAlert;
|
|
7
9
|
action: EventEmitter<any>;
|
|
8
|
-
constructor();
|
|
10
|
+
constructor(dialogRef: DialogRef);
|
|
9
11
|
ngOnInit(): void;
|
|
10
12
|
actionTaken(evt: any): void;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationAlertComponent, never>;
|
|
@@ -18,6 +18,7 @@ import { OrganizationCommonService } from '../workflow-services/common-workflow-
|
|
|
18
18
|
import { ComplianceCommonService } from '../workflow-services/common-workflow-services/compliance-common.service';
|
|
19
19
|
import { IframeService } from '../services/iframe.service';
|
|
20
20
|
import { DateUtilityService } from '../report-a-case/services/date-utility.service';
|
|
21
|
+
import { DialogService } from '../ui-kit/dialog/dialog.service';
|
|
21
22
|
import * as i0 from "@angular/core";
|
|
22
23
|
export declare class WorkflowPolicyComponent implements OnInit {
|
|
23
24
|
private policyService;
|
|
@@ -36,6 +37,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
36
37
|
private complianceCommonService;
|
|
37
38
|
private iframeService;
|
|
38
39
|
private dateUtilityService;
|
|
40
|
+
private dialog;
|
|
39
41
|
ASSETS: {
|
|
40
42
|
responsibility_center: string;
|
|
41
43
|
case_type: string;
|
|
@@ -231,7 +233,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
231
233
|
noWorkflowSelected: boolean;
|
|
232
234
|
templateView: boolean;
|
|
233
235
|
templateUrl: string;
|
|
234
|
-
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService, organizationUserService: OrganizationUserService, organizationCommonService: OrganizationCommonService, complianceCommonService: ComplianceCommonService, iframeService: IframeService, dateUtilityService: DateUtilityService);
|
|
236
|
+
constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService, organizationUserService: OrganizationUserService, organizationCommonService: OrganizationCommonService, complianceCommonService: ComplianceCommonService, iframeService: IframeService, dateUtilityService: DateUtilityService, dialog: DialogService);
|
|
235
237
|
policyForm: PolicyForm;
|
|
236
238
|
ngOnInit(): void;
|
|
237
239
|
_initiateAPI(): void;
|
|
@@ -436,6 +438,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
|
|
|
436
438
|
setPaginationOptions(data: any, searchKey: string): void;
|
|
437
439
|
onAllAttestorsToggle(selected: boolean): void;
|
|
438
440
|
isCachedData(page: string): boolean;
|
|
441
|
+
selectAllUsers(selected: boolean): void;
|
|
439
442
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPolicyComponent, never>;
|
|
440
443
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": { "alias": "mode"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; "templateId": { "alias": "templateId"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false, never>;
|
|
441
444
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|