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.
@@ -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."
@@ -44,6 +44,7 @@ export declare const CONSTANTS: {
44
44
  OWNERS: boolean;
45
45
  APPROVER: boolean;
46
46
  ASSIGNEES: boolean;
47
+ COLLABORATORS: boolean;
47
48
  };
48
49
  };
49
50
  export declare const PROGRAM_NAME_ERROR_MESSAGE = "A program with this name already exists";
@@ -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.1",
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 "