vcomply-workflow-engine 2.4.76 → 2.4.79
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/bundles/vcomply-workflow-engine.umd.js +16 -4
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/log-an-issue/log-an-issue.component.ngfactory.js +6 -6
- package/esm2015/lib/sharedComponents/assessment-editor/components/add-page-details/add-page-details.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/components/add-segment-popup/add-segment-popup.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/assessment-editor/components/preview/preview.module.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/assessment-editor/components/setting-response-segment/setting-response-segment.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngfactory.js +3 -3
- package/esm2015/lib/sharedComponents/assessment-editor/create-assessment.module.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/checkpoint/checkpoints-questions/checkpoints-questions.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-assessment/workflow-assessment.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +17 -5
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +7 -7
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +3 -3
- package/esm2015/lib/workflow-engine.module.ngsummary.json +1 -1
- package/esm2015/lib/workflow-policy/workflow-policy.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +5 -5
- package/esm2015/lib/workflow-risk/workflow-risk.component.ngfactory.js +5 -5
- package/esm2015/lib/workflow-survey-form/workflow-survey-form.component.ngfactory.js +4 -4
- package/fesm2015/vcomply-workflow-engine.js +16 -4
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +5 -2
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, ElementRef } from '@angular/core';
|
|
1
|
+
import { OnInit, EventEmitter, ElementRef, ComponentRef } from '@angular/core';
|
|
2
2
|
import { EditorConfig } from 'vcomply-editor';
|
|
3
3
|
import { AuthService } from '../workflow-services/auth.service';
|
|
4
4
|
import { ResponsibilityService } from '../workflow-services/responsibility.service';
|
|
@@ -6,6 +6,7 @@ import { FrequencyService } from '../sharedComponents/frequency/frequency.servic
|
|
|
6
6
|
import { UiKitService } from '../workflow-services/ui-kit.service';
|
|
7
7
|
import { SnackBarService } from '../ui-kit/snack-bar/snack-bar.service';
|
|
8
8
|
import { Subject } from 'rxjs';
|
|
9
|
+
import { MarxEditorComponent } from 'vcomply-editor/editor-container/marx-editor.component';
|
|
9
10
|
export declare class WorkflowComplianceComponent implements OnInit {
|
|
10
11
|
private authService;
|
|
11
12
|
private responsibilityService;
|
|
@@ -127,6 +128,8 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
127
128
|
onRemovingCheckpoint: EventEmitter<any>;
|
|
128
129
|
isAssessmentDisabled: EventEmitter<any>;
|
|
129
130
|
whatInput: ElementRef;
|
|
131
|
+
notesInput: ComponentRef<MarxEditorComponent>;
|
|
132
|
+
objectiveInput: ComponentRef<MarxEditorComponent>;
|
|
130
133
|
unSubscribeProgram: Subject<void>;
|
|
131
134
|
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService);
|
|
132
135
|
ngOnInit(): void;
|
|
@@ -179,7 +182,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
179
182
|
getRandomPlaceholder(frequencyDetails: any, frequencyTime: any): void;
|
|
180
183
|
onEditWhat(event: any): void;
|
|
181
184
|
getEditMoreOptions(res?: any): void;
|
|
182
|
-
|
|
185
|
+
editorValidation(): void;
|
|
183
186
|
reviewerTypeChange(event: any): void;
|
|
184
187
|
selectedSampleData(event: number): void;
|
|
185
188
|
populateAssuranceList(testPlanCategory: any): void;
|