vcomply-workflow-engine 2.6.60 → 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 (37) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +69 -44
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/log-an-issue/log-an-issue.component.ngfactory.js +6 -6
  4. package/esm2015/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.ngfactory.js +4 -4
  5. package/esm2015/lib/sharedComponents/assessment-editor/components/add-segment-popup/add-segment-popup.component.ngfactory.js +4 -4
  6. package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngfactory.js +3 -3
  7. package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngsummary.json +1 -1
  8. package/esm2015/lib/sharedComponents/assessment-editor/components/setting-response-segment/setting-response-segment.component.ngfactory.js +4 -4
  9. package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngfactory.js +3 -3
  10. package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngsummary.json +1 -1
  11. package/esm2015/lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component.ngfactory.js +4 -4
  12. package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.js +2 -2
  13. package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.ngfactory.js +1 -1
  14. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.js +23 -23
  15. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngfactory.js +4 -4
  16. package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngsummary.json +1 -1
  17. package/esm2015/lib/workflow-assessment/workflow-assessment.component.ngfactory.js +4 -4
  18. package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +5 -5
  19. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +25 -2
  20. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +3 -3
  21. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
  22. package/esm2015/lib/workflow-engine.module.ngfactory.js +3 -3
  23. package/esm2015/lib/workflow-engine.module.ngsummary.json +1 -1
  24. package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +4 -4
  25. package/esm2015/lib/workflow-program/workflow-program.component.js +16 -4
  26. package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +267 -251
  27. package/esm2015/lib/workflow-program/workflow-program.component.ngsummary.json +1 -1
  28. package/esm2015/lib/workflow-risk/workflow-risk.component.ngfactory.js +5 -5
  29. package/esm2015/lib/workflow-services/programs.service.js +4 -5
  30. package/esm2015/lib/workflow-survey-form/workflow-survey-form.component.ngfactory.js +4 -4
  31. package/fesm2015/vcomply-workflow-engine.js +65 -31
  32. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  33. package/lib/sharedComponents/framework-list/framework-list.component.d.ts +6 -0
  34. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +17 -0
  35. package/lib/workflow-program/workflow-program.component.d.ts +3 -0
  36. package/package.json +2 -2
  37. package/vcomply-workflow-engine.metadata.json +1 -1
@@ -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;
@@ -72,9 +72,12 @@ export declare class WorkflowProgramComponent implements OnInit {
72
72
  onRemovingRole: EventEmitter<any>;
73
73
  disableElementsFromMoreOptions: EventEmitter<any>;
74
74
  scrollToBottom: boolean;
75
+ canFrameworkChange: boolean;
75
76
  mode: string;
76
77
  programId: string;
77
78
  programType: number;
79
+ allowedFeature: any;
80
+ addToProgramDetails: any;
78
81
  panelTitleDefaultReviewer: string;
79
82
  panelTitleOwner: string;
80
83
  panelTitleReviewer: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.6.60",
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"
@@ -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
+ }