vcomply-workflow-engine 2.6.58 → 2.6.59

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 (30) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +107 -99
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/more-option/more-option.component.js +26 -30
  4. package/esm2015/lib/more-option/more-option.component.ngfactory.js +2 -2
  5. package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.js +2 -2
  6. package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.ngfactory.js +1 -1
  7. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.js +23 -23
  8. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngfactory.js +4 -4
  9. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngsummary.json +1 -1
  10. package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +9 -11
  11. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +25 -2
  12. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +3 -3
  13. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
  14. package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
  15. package/esm2015/lib/workflow-policy/workflow-policy.component.js +2 -7
  16. package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +2 -2
  17. package/esm2015/lib/workflow-policy/workflow-policy.component.ngsummary.json +1 -1
  18. package/esm2015/lib/workflow-program/workflow-program.component.js +20 -22
  19. package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +326 -310
  20. package/esm2015/lib/workflow-program/workflow-program.component.ngsummary.json +1 -1
  21. package/esm2015/lib/workflow-services/programs.service.js +9 -17
  22. package/fesm2015/vcomply-workflow-engine.js +107 -105
  23. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  24. package/lib/more-option/more-option.component.d.ts +0 -1
  25. package/lib/sharedComponents/framework-list/framework-list.component.d.ts +6 -0
  26. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +17 -0
  27. package/lib/workflow-policy/workflow-policy.component.d.ts +0 -1
  28. package/lib/workflow-program/workflow-program.component.d.ts +5 -5
  29. package/package.json +2 -2
  30. package/vcomply-workflow-engine.metadata.json +1 -1
@@ -7,7 +7,6 @@ export declare class MoreOptionComponent implements OnInit, OnChanges {
7
7
  isRCSelected: boolean;
8
8
  isProgramSelected: boolean;
9
9
  placeholderTexts: any;
10
- businessCycle: any;
11
10
  moreOptionsList: any;
12
11
  constructor();
13
12
  ngOnChanges(): void;
@@ -15,6 +15,12 @@ export declare class FrameworkListComponent implements OnInit, OnChanges {
15
15
  closeFramework: EventEmitter<any>;
16
16
  assignControl: EventEmitter<any>;
17
17
  previousSelectedValues: any;
18
+ headerText: string;
19
+ workflowPage: Array<string>;
20
+ fromProgram: {
21
+ headerText: string;
22
+ workflowPage: Array<string>;
23
+ };
18
24
  subCategoriesList: {
19
25
  from: number;
20
26
  to: number;
@@ -49,6 +49,23 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
49
49
  convertFileData: {};
50
50
  selectedCategory: string;
51
51
  selectedProgram: any;
52
+ canFrameworkChange: boolean;
53
+ addToProgramDetails: {
54
+ _id: string;
55
+ framework_name: string;
56
+ id?: number;
57
+ type: string;
58
+ description: string;
59
+ };
60
+ /**
61
+ * if feature flag is available in below object then feature will be enabled according to status otherwise it will enabled
62
+ * Sample object
63
+ * {
64
+ * ff_compliance_framework: true,
65
+ * ff_system_responsibility: false
66
+ * }
67
+ */
68
+ allowedFeature: any;
52
69
  animation: boolean;
53
70
  workflowList: boolean;
54
71
  showMoreOption: boolean;
@@ -278,5 +278,4 @@ 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;
282
281
  }
@@ -1,4 +1,4 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
1
+ import { 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,7 +9,6 @@ export declare class WorkflowProgramComponent implements OnInit {
9
9
  private programService;
10
10
  private authService;
11
11
  private uiKitService;
12
- private changeRef;
13
12
  constants: {
14
13
  categoryType: {
15
14
  label: string;
@@ -64,9 +63,12 @@ export declare class WorkflowProgramComponent implements OnInit {
64
63
  hideElementsFromMoreOptions: EventEmitter<any>;
65
64
  onRemovingRole: EventEmitter<any>;
66
65
  scrollToBottom: boolean;
66
+ canFrameworkChange: boolean;
67
67
  mode: string;
68
68
  programId: string;
69
69
  programType: number;
70
+ allowedFeature: any;
71
+ addToProgramDetails: any;
70
72
  panelTitleDefaultReviewer: string;
71
73
  panelTitleOwner: string;
72
74
  panelTitleReviewer: string;
@@ -74,9 +76,7 @@ export declare class WorkflowProgramComponent implements OnInit {
74
76
  panelTitleApprover: string;
75
77
  isApproverDisabled: boolean;
76
78
  isProgramScope: boolean;
77
- toolTipData: any;
78
- businessCycle: any;
79
- constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService, changeRef: ChangeDetectorRef);
79
+ constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService);
80
80
  noWhitespaceValidator(control: FormControl): {
81
81
  whitespace: boolean;
82
82
  } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.6.58",
3
+ "version": "2.6.59",
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"
@@ -22,4 +22,4 @@
22
22
  "typings": "vcomply-workflow-engine.d.ts",
23
23
  "metadata": "vcomply-workflow-engine.metadata.json",
24
24
  "sideEffects": false
25
- }
25
+ }