vcomply-workflow-engine 7.4.1 → 7.4.3
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/sharedComponents/format-and-evidence/format-and-evidence.component.mjs +30 -4
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +6 -3
- package/esm2022/lib/ui-kit/avatar-v2/avatar-v2.component.mjs +2 -2
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +14 -13
- package/esm2022/lib/workflow-program/constants.mjs +2 -1
- package/esm2022/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.mjs +3 -3
- package/esm2022/lib/workflow-program/workflow-program.component.mjs +83 -42
- package/fesm2022/vcomply-workflow-engine.mjs +134 -62
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/sharedComponents/format-and-evidence/format-and-evidence.component.d.ts +3 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -0
- package/lib/workflow-program/constants.d.ts +1 -0
- package/lib/workflow-program/workflow-program.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -69,7 +69,9 @@ export declare class FormatAndEvidenceComponent implements OnInit {
|
|
|
69
69
|
categories: any[];
|
|
70
70
|
organization_id: any;
|
|
71
71
|
orgDetails: any;
|
|
72
|
+
private formatEvidanceDataValue;
|
|
72
73
|
set formatEvidanceData(value: any);
|
|
74
|
+
get formatEvidanceData(): any;
|
|
73
75
|
isNewLinkDisabled: boolean;
|
|
74
76
|
isEditDisabled: boolean;
|
|
75
77
|
constructor(responsibilityService: ResponsibilityService, policyService: PolicyService, authService: AuthService, snackbarService: SnackBarService);
|
|
@@ -80,6 +82,7 @@ export declare class FormatAndEvidenceComponent implements OnInit {
|
|
|
80
82
|
};
|
|
81
83
|
ngOnInit(): void;
|
|
82
84
|
initializeData(settings: any, type: string): void;
|
|
85
|
+
private normalizeFormatFiles;
|
|
83
86
|
toggleIsFormateUpload(status: boolean): void;
|
|
84
87
|
toggleIsFormatRequired(status: boolean): void;
|
|
85
88
|
toggleAttachmentType(type: string): void;
|
|
@@ -458,6 +458,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
458
458
|
*/
|
|
459
459
|
getRandomPlaceholder(frequencyDetails: any, frequencyTime: any): void;
|
|
460
460
|
getOnCompletePlaceholder(frequencyDetails: any, frequencyTime: any): void;
|
|
461
|
+
getOngoingPlaceholder(): void;
|
|
461
462
|
/**
|
|
462
463
|
* "When the user clicks the edit button, the edit button is hidden and the input field is shown.
|
|
463
464
|
* When the user clicks the input field, the input field is hidden and the edit button is shown."
|
|
@@ -116,6 +116,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
116
116
|
OWNERS: boolean;
|
|
117
117
|
APPROVER: boolean;
|
|
118
118
|
ASSIGNEES: boolean;
|
|
119
|
+
COLLABORATORS: boolean;
|
|
119
120
|
};
|
|
120
121
|
};
|
|
121
122
|
showConfirmation: any;
|
|
@@ -236,6 +237,11 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
236
237
|
fetchRC(): void;
|
|
237
238
|
fetchUsersAssociatedWithRoles(calledFrom?: any): void;
|
|
238
239
|
fetchGroupsAssociatedWithRoles(): void;
|
|
240
|
+
emptyList: any[];
|
|
241
|
+
getListData(list: any): any[];
|
|
242
|
+
getOwnerUsers(): any[];
|
|
243
|
+
getCollaboratorUsers(): any[];
|
|
244
|
+
getCollaboratorGroups(): any[];
|
|
239
245
|
setDefaultOwners(userList: any, calledFrom?: any): void;
|
|
240
246
|
getPreSelectedOwners(previousSelectedUsers: any, currentUsers: any): any;
|
|
241
247
|
fetchOrganizationUsers(data?: any): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.3",
|
|
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 "
|