vcomply-workflow-engine 2.9.20 → 2.9.21
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 +61 -37
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.js +2 -2
- package/esm2015/lib/sharedComponents/frequency/frequency-one-time/frequency-one-time.component.ngfactory.js +2 -2
- package/esm2015/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.js +2 -2
- package/esm2015/lib/sharedComponents/frequency/frequency-responsibility-list/frequency-responsibility-list.component.ngfactory.js +16 -17
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +60 -36
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +196 -159
- package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
- package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
- package/fesm2015/vcomply-workflow-engine.js +61 -37
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +3 -0
- 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;
|
|
@@ -171,6 +173,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
171
173
|
whatChanged(event: any): void;
|
|
172
174
|
activeDeselector(): void;
|
|
173
175
|
addMoreInfo(event: any): void;
|
|
176
|
+
onRcTypeChange(selectedType: Number): void;
|
|
174
177
|
getRCList(program_id?: string): void;
|
|
175
178
|
getUserDetails(): void;
|
|
176
179
|
getAssurance(): void;
|
package/package.json
CHANGED