vcomply-workflow-engine 2.6.59 → 2.6.61

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.
Files changed (26) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +115 -66
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/more-option/more-option.component.js +30 -26
  4. package/esm2015/lib/more-option/more-option.component.ngfactory.js +2 -2
  5. package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +3 -3
  6. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +11 -2
  7. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +21 -18
  8. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
  9. package/esm2015/lib/workflow-policy/workflow-policy.component.js +12 -6
  10. package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +2 -2
  11. package/esm2015/lib/workflow-policy/workflow-policy.component.ngsummary.json +1 -1
  12. package/esm2015/lib/workflow-program/constants.js +11 -4
  13. package/esm2015/lib/workflow-program/constants.ngsummary.json +1 -1
  14. package/esm2015/lib/workflow-program/workflow-program.component.js +25 -6
  15. package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +238 -238
  16. package/esm2015/lib/workflow-program/workflow-program.component.ngsummary.json +1 -1
  17. package/esm2015/lib/workflow-services/programs.service.js +37 -27
  18. package/fesm2015/vcomply-workflow-engine.js +121 -66
  19. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  20. package/lib/more-option/more-option.component.d.ts +1 -0
  21. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  22. package/lib/workflow-policy/workflow-policy.component.d.ts +1 -0
  23. package/lib/workflow-program/constants.d.ts +7 -0
  24. package/lib/workflow-program/workflow-program.component.d.ts +13 -2
  25. package/package.json +1 -1
  26. package/vcomply-workflow-engine.metadata.json +1 -1
@@ -7,6 +7,7 @@ export declare class MoreOptionComponent implements OnInit, OnChanges {
7
7
  isRCSelected: boolean;
8
8
  isProgramSelected: boolean;
9
9
  placeholderTexts: any;
10
+ businessCycle: any;
10
11
  moreOptionsList: any;
11
12
  constructor();
12
13
  ngOnChanges(): void;
@@ -124,6 +124,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
124
124
  onRemovingCheckpoint(event: string, isCheckpointChecked?: boolean, isDataRemoved?: boolean): void;
125
125
  onRemovingRole(event: string): void;
126
126
  isAssessmentDisabled(isDisabled: boolean): void;
127
+ disableMoreOptions(workflowCode: any, disabledElementsCode: any): void;
127
128
  onCheckpointSelection(event: number): void;
128
129
  onRcSelected(isRcSelected: boolean): void;
129
130
  fetchOrganizationDetails(): void;
@@ -278,4 +278,5 @@ export declare class WorkflowPolicyComponent implements OnInit {
278
278
  checkForCreateDocuments(): void;
279
279
  editPolicy(): void;
280
280
  populatePolicyForm(data: any, categoryIds: any): void;
281
+ changeName(event: string): string;
281
282
  }
@@ -37,5 +37,12 @@ export declare const CONSTANTS: {
37
37
  ASSESSMENT: boolean;
38
38
  FORMATE_EVIDENCE: boolean;
39
39
  CUSTOM_FIELDS: boolean;
40
+ PROGRAM_FREQUENCY: boolean;
41
+ SCOPE_CHANGES: boolean;
42
+ RC: boolean;
43
+ ROLES: boolean;
44
+ OWNERS: boolean;
45
+ APPROVER: boolean;
46
+ ASSIGNEES: boolean;
40
47
  };
41
48
  };
@@ -1,4 +1,4 @@
1
- import { ElementRef, EventEmitter, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormBuilder, FormControl } from '@angular/forms';
3
3
  import { DatePickerComponent } from 'ng2-date-picker';
4
4
  import { AuthService } from '../workflow-services/auth.service';
@@ -9,6 +9,7 @@ export declare class WorkflowProgramComponent implements OnInit {
9
9
  private programService;
10
10
  private authService;
11
11
  private uiKitService;
12
+ private changeRef;
12
13
  constants: {
13
14
  categoryType: {
14
15
  label: string;
@@ -48,6 +49,13 @@ export declare class WorkflowProgramComponent implements OnInit {
48
49
  ASSESSMENT: boolean;
49
50
  FORMATE_EVIDENCE: boolean;
50
51
  CUSTOM_FIELDS: boolean;
52
+ PROGRAM_FREQUENCY: boolean;
53
+ SCOPE_CHANGES: boolean;
54
+ RC: boolean;
55
+ ROLES: boolean;
56
+ OWNERS: boolean;
57
+ APPROVER: boolean;
58
+ ASSIGNEES: boolean;
51
59
  };
52
60
  };
53
61
  showConfirmation: any;
@@ -62,6 +70,7 @@ export declare class WorkflowProgramComponent implements OnInit {
62
70
  refreshForm: EventEmitter<any>;
63
71
  hideElementsFromMoreOptions: EventEmitter<any>;
64
72
  onRemovingRole: EventEmitter<any>;
73
+ disableElementsFromMoreOptions: EventEmitter<any>;
65
74
  scrollToBottom: boolean;
66
75
  canFrameworkChange: boolean;
67
76
  mode: string;
@@ -76,7 +85,9 @@ export declare class WorkflowProgramComponent implements OnInit {
76
85
  panelTitleApprover: string;
77
86
  isApproverDisabled: boolean;
78
87
  isProgramScope: boolean;
79
- constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService);
88
+ toolTipData: any;
89
+ businessCycle: any;
90
+ constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService, changeRef: ChangeDetectorRef);
80
91
  noWhitespaceValidator(control: FormControl): {
81
92
  whitespace: boolean;
82
93
  } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.6.59",
3
+ "version": "2.6.61",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x",
6
6
  "@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x"