vcomply-workflow-engine 2.4.2 → 2.4.5
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 +42 -15
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/more-option/more-option.component.js +9 -10
- package/esm2015/lib/more-option/more-option.component.ngfactory.js +2 -2
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/floating-bar/floating-bar.component.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/role-list/role-list.component.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.js +2 -2
- package/esm2015/lib/workflow-program/create-program-ui/user-group-list/user-group-list.component.ngfactory.js +51 -23
- package/esm2015/lib/workflow-program/workflow-program.component.js +33 -6
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +477 -251
- package/fesm2015/vcomply-workflow-engine.js +42 -16
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-program/workflow-program.component.d.ts +8 -1
- package/package.json +2 -2
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -66,6 +66,11 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
66
66
|
mode: string;
|
|
67
67
|
programId: string;
|
|
68
68
|
programType: number;
|
|
69
|
+
panelTitleDefaultReviewer: string;
|
|
70
|
+
panelTitleOwner: string;
|
|
71
|
+
panelTitleReviewer: string;
|
|
72
|
+
panelTitleAssignee: string;
|
|
73
|
+
panelTitleApprover: string;
|
|
69
74
|
constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService);
|
|
70
75
|
noWhitespaceValidator(control: FormControl): {
|
|
71
76
|
whitespace: boolean;
|
|
@@ -82,6 +87,8 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
82
87
|
}[];
|
|
83
88
|
smileyMessage: string;
|
|
84
89
|
createdProgramId: string;
|
|
90
|
+
isObjectiveValid: boolean;
|
|
91
|
+
isNameExists: boolean;
|
|
85
92
|
programForm: import("@angular/forms").FormGroup;
|
|
86
93
|
showAddCustomField: boolean;
|
|
87
94
|
editorData: {
|
|
@@ -96,7 +103,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
96
103
|
user_role: string;
|
|
97
104
|
_id: string;
|
|
98
105
|
};
|
|
99
|
-
setFormField(controlName: string, value: any): void;
|
|
106
|
+
setFormField(controlName: string, value: any, isFromForm?: boolean): void;
|
|
100
107
|
get formValid(): boolean;
|
|
101
108
|
controls: any;
|
|
102
109
|
lists: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^12.0.1",
|
|
6
6
|
"@angular/core": "^12.0.1"
|
|
@@ -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
|
+
}
|