vcomply-workflow-engine 2.9.39 → 2.9.41
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 +111 -101
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/add-multiple-responsibility/add-multiple-responsibility.component.js +3 -3
- package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.js +3 -3
- package/esm2015/lib/sharedComponents/frequency/frequency-on-completion-of/frequency-on-completion-of.component.js +1 -10
- package/esm2015/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.js +2 -2
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +107 -88
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +238 -200
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +111 -101
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +6 -1
- package/package.json +1 -1
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -29,6 +29,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
29
29
|
isResponsibilitySimplified: boolean;
|
|
30
30
|
queryParam: string;
|
|
31
31
|
recentResponsibilityUrl: any;
|
|
32
|
+
isResponsibilityRcLinkEnabled: boolean;
|
|
32
33
|
set closeOnEsc(escapeCondition: boolean);
|
|
33
34
|
orgDetails: any;
|
|
34
35
|
url: string;
|
|
@@ -99,6 +100,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
99
100
|
responsibilityCentersList: any[];
|
|
100
101
|
categoryList: any[];
|
|
101
102
|
nonRemovableUsersList: any[];
|
|
103
|
+
responsibilityCenterType: Number;
|
|
102
104
|
responsibilityForm: any;
|
|
103
105
|
moreOptions: any;
|
|
104
106
|
activeSelector: string;
|
|
@@ -164,6 +166,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
164
166
|
originalAssignee: any;
|
|
165
167
|
userListLoader: boolean;
|
|
166
168
|
assignorsListLoader: boolean;
|
|
169
|
+
rawResponsibility: any;
|
|
167
170
|
whatInput: ElementRef;
|
|
168
171
|
unSubscribeProgram: Subject<void>;
|
|
169
172
|
constructor(authService: AuthService, responsibilityService: ResponsibilityService, frequencyService: FrequencyService, uiKitService: UiKitService, snackBar: SnackBarService, permission: AuthService, programService: ProgramsService);
|
|
@@ -172,6 +175,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
172
175
|
whatChanged(event: any): void;
|
|
173
176
|
activeDeselector(): void;
|
|
174
177
|
addMoreInfo(event: any): void;
|
|
178
|
+
onRcTypeChange(selectedType: Number): void;
|
|
175
179
|
getRCList(program_id?: string): void;
|
|
176
180
|
getUserDetails(): void;
|
|
177
181
|
getAssurance(): void;
|
|
@@ -244,7 +248,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
244
248
|
validateResponsibility(): boolean | undefined;
|
|
245
249
|
entrustResponsibility(entrustForm: any): void;
|
|
246
250
|
uniqueIdUserGroups(totalUserList: any, selectedGroup: any, selectedUsers: any): any[];
|
|
247
|
-
combineUserAndUserGroupMembers(): void;
|
|
251
|
+
combineUserAndUserGroupMembers(isGroup?: any): void;
|
|
248
252
|
/**
|
|
249
253
|
* It resets the form.
|
|
250
254
|
*/
|
|
@@ -252,6 +256,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
252
256
|
action(event: string): void;
|
|
253
257
|
viewResponsibilities(): void;
|
|
254
258
|
closeSmiley(event: any): void;
|
|
259
|
+
getOnCompletionReportDetails(event: any): any;
|
|
255
260
|
frequencyDataPopulation(event: any): void;
|
|
256
261
|
frequencyPopulation(event: any): void;
|
|
257
262
|
frequencyData(event: any): void;
|
package/package.json
CHANGED