vcomply-workflow-engine 2.6.70 → 2.6.72
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 +64 -33
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/more-option/more-option.component.js +8 -2
- package/esm2015/lib/more-option/more-option.component.ngfactory.js +1 -1
- package/esm2015/lib/more-option/more-option.component.ngsummary.json +1 -1
- package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.js +2 -2
- package/esm2015/lib/sharedComponents/framework-list/framework-list-table/framework-list-table.component.ngfactory.js +1 -1
- package/esm2015/lib/sharedComponents/framework-list/framework-list.component.js +18 -23
- package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngfactory.js +4 -4
- package/esm2015/lib/sharedComponents/framework-list/framework-list.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +13 -2
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +4 -4
- package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/create-program-ui.module.ngfactory.js +1 -1
- package/esm2015/lib/workflow-program/create-program-ui/role-list/role-list.component.js +3 -2
- package/esm2015/lib/workflow-program/create-program-ui/role-list/role-list.component.ngfactory.js +12 -12
- package/esm2015/lib/workflow-program/create-program-ui/role-list/role-list.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-program/workflow-program.component.js +23 -4
- package/esm2015/lib/workflow-program/workflow-program.component.ngfactory.js +266 -250
- package/esm2015/lib/workflow-program/workflow-program.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-services/programs.service.js +4 -5
- package/fesm2015/vcomply-workflow-engine.js +64 -33
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/more-option/more-option.component.d.ts +2 -0
- package/lib/sharedComponents/framework-list/framework-list.component.d.ts +2 -0
- package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +8 -0
- package/lib/workflow-program/create-program-ui/role-list/role-list.component.d.ts +1 -0
- package/lib/workflow-program/workflow-program.component.d.ts +6 -0
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -6,6 +6,8 @@ export declare class MoreOptionComponent implements OnInit, OnChanges {
|
|
|
6
6
|
selectedOption: EventEmitter<any>;
|
|
7
7
|
isRCSelected: boolean;
|
|
8
8
|
isProgramSelected: boolean;
|
|
9
|
+
allowedFeature: any;
|
|
10
|
+
featureflagrole: boolean;
|
|
9
11
|
placeholderTexts: any;
|
|
10
12
|
businessCycle: any;
|
|
11
13
|
moreOptionsList: any;
|
|
@@ -15,6 +15,8 @@ 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>;
|
|
18
20
|
subCategoriesList: {
|
|
19
21
|
from: number;
|
|
20
22
|
to: number;
|
|
@@ -49,6 +49,14 @@ 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
|
+
};
|
|
52
60
|
animation: boolean;
|
|
53
61
|
workflowList: boolean;
|
|
54
62
|
showMoreOption: boolean;
|
|
@@ -59,6 +59,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
showConfirmation: any;
|
|
62
|
+
isAscentAllowed: boolean;
|
|
62
63
|
form: ElementRef;
|
|
63
64
|
datePickerOverlay: boolean;
|
|
64
65
|
datePicker: DatePickerComponent;
|
|
@@ -72,9 +73,12 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
72
73
|
onRemovingRole: EventEmitter<any>;
|
|
73
74
|
disableElementsFromMoreOptions: EventEmitter<any>;
|
|
74
75
|
scrollToBottom: boolean;
|
|
76
|
+
canFrameworkChange: boolean;
|
|
75
77
|
mode: string;
|
|
76
78
|
programId: string;
|
|
77
79
|
programType: number;
|
|
80
|
+
allowedFeature: any;
|
|
81
|
+
addToProgramDetails: any;
|
|
78
82
|
panelTitleDefaultReviewer: string;
|
|
79
83
|
panelTitleOwner: string;
|
|
80
84
|
panelTitleReviewer: string;
|
|
@@ -84,6 +88,7 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
84
88
|
isProgramScope: boolean;
|
|
85
89
|
toolTipData: any;
|
|
86
90
|
businessCycle: any;
|
|
91
|
+
featureflagrole: boolean;
|
|
87
92
|
constructor(fb: FormBuilder, programService: ProgramsService, authService: AuthService, uiKitService: UiKitService, changeRef: ChangeDetectorRef);
|
|
88
93
|
noWhitespaceValidator(control: FormControl): {
|
|
89
94
|
whitespace: boolean;
|
|
@@ -189,4 +194,5 @@ export declare class WorkflowProgramComponent implements OnInit {
|
|
|
189
194
|
populateGroups(res: any): void;
|
|
190
195
|
resetAdditionalOption(): void;
|
|
191
196
|
checkProgramOptionField(): any;
|
|
197
|
+
enablefeature(): void;
|
|
192
198
|
}
|
package/package.json
CHANGED