vcomply-workflow-engine 2.4.3 → 2.4.6
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 +35 -13
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/more-option/more-option.component.js +6 -7
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.js +2 -2
- package/esm2015/lib/sharedComponents/assessment-list/assessment-list.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +2 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +3 -3
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +2 -2
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/role-list/role-list.component.js +1 -1
- package/esm2015/lib/workflow-program/workflow-program.component.js +28 -6
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +472 -246
- package/fesm2015/vcomply-workflow-engine.js +35 -14
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-program/workflow-program.component.d.ts +3 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -87,6 +87,8 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
87
87
|
}[];
|
|
88
88
|
smileyMessage: string;
|
|
89
89
|
createdProgramId: string;
|
|
90
|
+
isObjectiveValid: boolean;
|
|
91
|
+
isNameExists: boolean;
|
|
90
92
|
programForm: import("@angular/forms").FormGroup;
|
|
91
93
|
showAddCustomField: boolean;
|
|
92
94
|
editorData: {
|
|
@@ -101,7 +103,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
101
103
|
user_role: string;
|
|
102
104
|
_id: string;
|
|
103
105
|
};
|
|
104
|
-
setFormField(controlName: string, value: any): void;
|
|
106
|
+
setFormField(controlName: string, value: any, isFromForm?: boolean): void;
|
|
105
107
|
get formValid(): boolean;
|
|
106
108
|
controls: any;
|
|
107
109
|
lists: any;
|