vcomply-workflow-engine 5.0.5 → 5.0.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/esm2022/lib/constants/assessts.constants.mjs +3 -1
- package/esm2022/lib/log-an-issue/log-an-issue.component.mjs +4 -4
- package/esm2022/lib/report-a-case/components/linked assessment/linked-assessment.component.mjs +128 -0
- package/esm2022/lib/report-a-case/components/linked-responsibilities/linked-responsibilities.component.mjs +342 -0
- package/esm2022/lib/report-a-case/constants/report-case.constants.mjs +9 -2
- package/esm2022/lib/report-a-case/report-case.module.mjs +14 -4
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +18 -4
- package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +11 -13
- package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.module.mjs +48 -0
- package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +3 -3
- package/esm2022/lib/workflow-engine.module.mjs +7 -6
- package/fesm2022/vcomply-workflow-engine.mjs +747 -228
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/constants/assessts.constants.d.ts +2 -0
- package/lib/report-a-case/components/case-assignees/case-assignees.component.d.ts +2 -0
- package/lib/report-a-case/components/case-category/case-category.component.d.ts +2 -0
- package/lib/report-a-case/components/case-details/case-details.component.d.ts +2 -0
- package/lib/report-a-case/components/case-owners/case-owners.component.d.ts +2 -0
- package/lib/report-a-case/components/case-priority/case-priority.component.d.ts +2 -0
- package/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.d.ts +2 -0
- package/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.d.ts +2 -0
- package/lib/report-a-case/components/field-holder/field-holder.component.d.ts +2 -0
- package/lib/report-a-case/components/linked assessment/linked-assessment.component.d.ts +115 -0
- package/lib/report-a-case/components/linked-responsibilities/linked-responsibilities.component.d.ts +119 -0
- package/lib/report-a-case/components/rc-details/rc-details.component.d.ts +2 -0
- package/lib/report-a-case/components/report-date/report-date.component.d.ts +2 -0
- package/lib/report-a-case/constants/report-case.constants.d.ts +7 -1
- package/lib/report-a-case/report-case.module.d.ts +23 -20
- package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +13 -2
- package/lib/sharedComponents/link-responsibility/link-responsibility.module.d.ts +15 -0
- package/lib/workflow-engine.module.d.ts +41 -41
- package/package.json +1 -1
|
@@ -99,6 +99,8 @@ export declare class CaseDetailsComponent implements OnInit {
|
|
|
99
99
|
case_assignees: string;
|
|
100
100
|
format_evidence: string;
|
|
101
101
|
case_owners: string;
|
|
102
|
+
link_controls: string;
|
|
103
|
+
link_items: string;
|
|
102
104
|
};
|
|
103
105
|
caseType: typeof report;
|
|
104
106
|
description: EditorConfig;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LinkedAssessmentComponent implements OnInit {
|
|
4
|
+
reportTexts: {
|
|
5
|
+
case_type: string;
|
|
6
|
+
report_case: string;
|
|
7
|
+
add_case: string;
|
|
8
|
+
default_flow: string;
|
|
9
|
+
receive_updates: string;
|
|
10
|
+
case_details: {
|
|
11
|
+
name: {
|
|
12
|
+
title: string;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
description: {
|
|
16
|
+
title: string;
|
|
17
|
+
placeholder: string;
|
|
18
|
+
};
|
|
19
|
+
rc: {
|
|
20
|
+
title: string;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
singularText: string;
|
|
23
|
+
pluralText: string;
|
|
24
|
+
mainRcPlaceholder: string;
|
|
25
|
+
separateRcText: string;
|
|
26
|
+
separateRcTooltip: string;
|
|
27
|
+
sameRcText: string;
|
|
28
|
+
sameRcTooltip: string;
|
|
29
|
+
};
|
|
30
|
+
case_type: {
|
|
31
|
+
title: string;
|
|
32
|
+
placeholder: string;
|
|
33
|
+
};
|
|
34
|
+
category: {
|
|
35
|
+
title: string;
|
|
36
|
+
placeholder: string;
|
|
37
|
+
};
|
|
38
|
+
additional_category: {
|
|
39
|
+
title: string;
|
|
40
|
+
placeholder: string;
|
|
41
|
+
};
|
|
42
|
+
when: {
|
|
43
|
+
title: string;
|
|
44
|
+
placeholder: string;
|
|
45
|
+
};
|
|
46
|
+
priority: {
|
|
47
|
+
title: string;
|
|
48
|
+
placeholder: string;
|
|
49
|
+
};
|
|
50
|
+
attachments: {
|
|
51
|
+
title: string;
|
|
52
|
+
placeholder: string;
|
|
53
|
+
};
|
|
54
|
+
due_date: {
|
|
55
|
+
title: string;
|
|
56
|
+
placeholder: string;
|
|
57
|
+
deadline_placeholder: string;
|
|
58
|
+
};
|
|
59
|
+
assignees: {
|
|
60
|
+
title: string;
|
|
61
|
+
placeholder: string;
|
|
62
|
+
};
|
|
63
|
+
owners: {
|
|
64
|
+
title: string;
|
|
65
|
+
placeholder: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
tooltipMessage: {
|
|
69
|
+
report_case: string;
|
|
70
|
+
add_case: string;
|
|
71
|
+
receive_updates: string;
|
|
72
|
+
rc: string;
|
|
73
|
+
workflow: string;
|
|
74
|
+
};
|
|
75
|
+
errorMessage: {
|
|
76
|
+
rc: string;
|
|
77
|
+
name: string;
|
|
78
|
+
description: string;
|
|
79
|
+
caseType: string;
|
|
80
|
+
reportDate: string;
|
|
81
|
+
priority: string;
|
|
82
|
+
mainRc: string;
|
|
83
|
+
caseOwner: string;
|
|
84
|
+
caseAssignee: string;
|
|
85
|
+
dueDate: string;
|
|
86
|
+
stageAssignee: string;
|
|
87
|
+
caseResolutionDeadline: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
ASSETS: {
|
|
91
|
+
responsibility_center: string;
|
|
92
|
+
case_type: string;
|
|
93
|
+
case_category: string;
|
|
94
|
+
when: string;
|
|
95
|
+
what: string;
|
|
96
|
+
case_resolution_deadline: string;
|
|
97
|
+
case_assignees: string;
|
|
98
|
+
format_evidence: string;
|
|
99
|
+
case_owners: string;
|
|
100
|
+
link_controls: string;
|
|
101
|
+
link_items: string;
|
|
102
|
+
};
|
|
103
|
+
linkText: string;
|
|
104
|
+
isLinkQuestionVisible: boolean;
|
|
105
|
+
fieldSelector: string[];
|
|
106
|
+
openedFrom: string;
|
|
107
|
+
payload: any;
|
|
108
|
+
responsibilityData: any;
|
|
109
|
+
assessmentQuestion: any;
|
|
110
|
+
fieldSelected: any;
|
|
111
|
+
ngOnInit(): void;
|
|
112
|
+
setLink(): void;
|
|
113
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkedAssessmentComponent, never>;
|
|
114
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedAssessmentComponent, "app-linked-assessment", never, { "openedFrom": { "alias": "openedFrom"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "responsibilityData": { "alias": "responsibilityData"; "required": false; }; "assessmentQuestion": { "alias": "assessmentQuestion"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; }, {}, never, never, false, never>;
|
|
115
|
+
}
|
package/lib/report-a-case/components/linked-responsibilities/linked-responsibilities.component.d.ts
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LinkedResponsibilitiesComponent {
|
|
4
|
+
ASSETS: {
|
|
5
|
+
responsibility_center: string;
|
|
6
|
+
case_type: string;
|
|
7
|
+
case_category: string;
|
|
8
|
+
when: string;
|
|
9
|
+
what: string;
|
|
10
|
+
case_resolution_deadline: string;
|
|
11
|
+
case_assignees: string;
|
|
12
|
+
format_evidence: string;
|
|
13
|
+
case_owners: string;
|
|
14
|
+
link_controls: string;
|
|
15
|
+
link_items: string;
|
|
16
|
+
};
|
|
17
|
+
reportTexts: {
|
|
18
|
+
case_type: string;
|
|
19
|
+
report_case: string;
|
|
20
|
+
add_case: string;
|
|
21
|
+
default_flow: string;
|
|
22
|
+
receive_updates: string;
|
|
23
|
+
case_details: {
|
|
24
|
+
name: {
|
|
25
|
+
title: string;
|
|
26
|
+
placeholder: string;
|
|
27
|
+
};
|
|
28
|
+
description: {
|
|
29
|
+
title: string;
|
|
30
|
+
placeholder: string;
|
|
31
|
+
};
|
|
32
|
+
rc: {
|
|
33
|
+
title: string;
|
|
34
|
+
placeholder: string;
|
|
35
|
+
singularText: string;
|
|
36
|
+
pluralText: string;
|
|
37
|
+
mainRcPlaceholder: string;
|
|
38
|
+
separateRcText: string;
|
|
39
|
+
separateRcTooltip: string;
|
|
40
|
+
sameRcText: string;
|
|
41
|
+
sameRcTooltip: string;
|
|
42
|
+
};
|
|
43
|
+
case_type: {
|
|
44
|
+
title: string;
|
|
45
|
+
placeholder: string;
|
|
46
|
+
};
|
|
47
|
+
category: {
|
|
48
|
+
title: string;
|
|
49
|
+
placeholder: string;
|
|
50
|
+
};
|
|
51
|
+
additional_category: {
|
|
52
|
+
title: string;
|
|
53
|
+
placeholder: string;
|
|
54
|
+
};
|
|
55
|
+
when: {
|
|
56
|
+
title: string;
|
|
57
|
+
placeholder: string;
|
|
58
|
+
};
|
|
59
|
+
priority: {
|
|
60
|
+
title: string;
|
|
61
|
+
placeholder: string;
|
|
62
|
+
};
|
|
63
|
+
attachments: {
|
|
64
|
+
title: string;
|
|
65
|
+
placeholder: string;
|
|
66
|
+
};
|
|
67
|
+
due_date: {
|
|
68
|
+
title: string;
|
|
69
|
+
placeholder: string;
|
|
70
|
+
deadline_placeholder: string;
|
|
71
|
+
};
|
|
72
|
+
assignees: {
|
|
73
|
+
title: string;
|
|
74
|
+
placeholder: string;
|
|
75
|
+
};
|
|
76
|
+
owners: {
|
|
77
|
+
title: string;
|
|
78
|
+
placeholder: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
tooltipMessage: {
|
|
82
|
+
report_case: string;
|
|
83
|
+
add_case: string;
|
|
84
|
+
receive_updates: string;
|
|
85
|
+
rc: string;
|
|
86
|
+
workflow: string;
|
|
87
|
+
};
|
|
88
|
+
errorMessage: {
|
|
89
|
+
rc: string;
|
|
90
|
+
name: string;
|
|
91
|
+
description: string;
|
|
92
|
+
caseType: string;
|
|
93
|
+
reportDate: string;
|
|
94
|
+
priority: string;
|
|
95
|
+
mainRc: string;
|
|
96
|
+
caseOwner: string;
|
|
97
|
+
caseAssignee: string;
|
|
98
|
+
dueDate: string;
|
|
99
|
+
stageAssignee: string;
|
|
100
|
+
caseResolutionDeadline: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
linkText: string;
|
|
104
|
+
respSelected: boolean;
|
|
105
|
+
fieldSelector: string[];
|
|
106
|
+
openedFrom: string;
|
|
107
|
+
isLinkQuestionVisible: boolean;
|
|
108
|
+
payload: any;
|
|
109
|
+
fieldSelected: string;
|
|
110
|
+
responsibilityData: any;
|
|
111
|
+
fieldClicked: EventEmitter<any>;
|
|
112
|
+
ngOnInit(): void;
|
|
113
|
+
setLink(): void;
|
|
114
|
+
activateSelector(active: boolean): void;
|
|
115
|
+
selectResponsibility(resp: any): void;
|
|
116
|
+
deleteItem(element: any): void;
|
|
117
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkedResponsibilitiesComponent, never>;
|
|
118
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkedResponsibilitiesComponent, "app-linked-responsibilities", never, { "openedFrom": { "alias": "openedFrom"; "required": false; }; "isLinkQuestionVisible": { "alias": "isLinkQuestionVisible"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "responsibilityData": { "alias": "responsibilityData"; "required": false; }; }, { "fieldClicked": "fieldClicked"; }, never, never, false, never>;
|
|
119
|
+
}
|
|
@@ -137,7 +137,13 @@ export declare const REPORT_CASE_PAYLOAD: {
|
|
|
137
137
|
risk_class: number;
|
|
138
138
|
caseToWorkflow: {};
|
|
139
139
|
responsibilities_Linked: never[];
|
|
140
|
-
linked_assessment_issues: {
|
|
140
|
+
linked_assessment_issues: {
|
|
141
|
+
resp_id: string;
|
|
142
|
+
due_date_id: string;
|
|
143
|
+
assessment_id: string;
|
|
144
|
+
question_id: string;
|
|
145
|
+
auditee_id: number;
|
|
146
|
+
};
|
|
141
147
|
source: string;
|
|
142
148
|
};
|
|
143
149
|
export declare const ADD_TO_CASE_WORKFLOW: {
|
|
@@ -16,27 +16,30 @@ import * as i14 from "./components/case-category/case-category.component";
|
|
|
16
16
|
import * as i15 from "./components/case-resolution-deadline/case-resolution-deadline.component";
|
|
17
17
|
import * as i16 from "./components/case-assignees/case-assignees.component";
|
|
18
18
|
import * as i17 from "./components/case-owners/case-owners.component";
|
|
19
|
-
import * as i18 from "
|
|
20
|
-
import * as i19 from "
|
|
21
|
-
import * as i20 from "
|
|
22
|
-
import * as i21 from "../
|
|
23
|
-
import * as i22 from "
|
|
24
|
-
import * as i23 from "
|
|
25
|
-
import * as i24 from "
|
|
26
|
-
import * as i25 from "
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "
|
|
29
|
-
import * as i28 from "
|
|
30
|
-
import * as i29 from "
|
|
31
|
-
import * as i30 from "../sharedComponents/
|
|
32
|
-
import * as i31 from "../
|
|
33
|
-
import * as i32 from "../sharedComponents/
|
|
34
|
-
import * as i33 from "../
|
|
35
|
-
import * as i34 from "../sharedComponents/
|
|
36
|
-
import * as i35 from "../
|
|
37
|
-
import * as i36 from "../sharedComponents/
|
|
19
|
+
import * as i18 from "./components/linked assessment/linked-assessment.component";
|
|
20
|
+
import * as i19 from "./components/linked-responsibilities/linked-responsibilities.component";
|
|
21
|
+
import * as i20 from "@angular/common";
|
|
22
|
+
import * as i21 from "../ui-kit/tooltip/tooltip.module";
|
|
23
|
+
import * as i22 from "../sharedComponents/floating-bar/floating-bar.module";
|
|
24
|
+
import * as i23 from "../formgroup/formgroup.module";
|
|
25
|
+
import * as i24 from "ng2-date-picker";
|
|
26
|
+
import * as i25 from "@vcomply/editor";
|
|
27
|
+
import * as i26 from "../ui-kit/popover/popover.module";
|
|
28
|
+
import * as i27 from "./components/vc-dropdown/vc-dropdown.module";
|
|
29
|
+
import * as i28 from "./components/form-selectBox/form-selectBox.module";
|
|
30
|
+
import * as i29 from "@angular/forms";
|
|
31
|
+
import * as i30 from "../sharedComponents/responsibility-centers-list/rc-list.module";
|
|
32
|
+
import * as i31 from "../sharedComponents/format-and-evidence/format-and-evidence.module";
|
|
33
|
+
import * as i32 from "../sharedComponents/v-loader/v-loader.module";
|
|
34
|
+
import * as i33 from "../ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
|
|
35
|
+
import * as i34 from "../sharedComponents/category-list-selection/category-list-selection.module";
|
|
36
|
+
import * as i35 from "../sharedComponents/directive/directive.module";
|
|
37
|
+
import * as i36 from "../sharedComponents/checkbox-list/checkbox-list.module";
|
|
38
|
+
import * as i37 from "../pipes/pipes.module";
|
|
39
|
+
import * as i38 from "../sharedComponents/group-users-list/group-users-list.component";
|
|
40
|
+
import * as i39 from "../sharedComponents/link-responsibility/link-responsibility.module";
|
|
38
41
|
export declare class ReportCaseModule {
|
|
39
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportCaseModule, never>;
|
|
40
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ReportCaseModule, [typeof i1.CaseTypeComponent, typeof i2.WorkflowCaseComponent, typeof i3.AssigneeComponent, typeof i4.DueDateComponent, typeof i5.InformationBlockComponent, typeof i6.CaseDetailsComponent, typeof i7.VCInputComponent, typeof i8.VCFormLabelComponent, typeof i9.FieldHolderComponent, typeof i10.RcDetailsComponent, typeof i11.CaseDropdownComponent, typeof i12.ReportDateComponent, typeof i13.CasePriorityComponent, typeof i14.CaseCategoryComponent, typeof i15.CaseResolutionDeadlineComponent, typeof i16.CaseAssigneesComponent, typeof i17.CaseOwnersComponent], [typeof
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ReportCaseModule, [typeof i1.CaseTypeComponent, typeof i2.WorkflowCaseComponent, typeof i3.AssigneeComponent, typeof i4.DueDateComponent, typeof i5.InformationBlockComponent, typeof i6.CaseDetailsComponent, typeof i7.VCInputComponent, typeof i8.VCFormLabelComponent, typeof i9.FieldHolderComponent, typeof i10.RcDetailsComponent, typeof i11.CaseDropdownComponent, typeof i12.ReportDateComponent, typeof i13.CasePriorityComponent, typeof i14.CaseCategoryComponent, typeof i15.CaseResolutionDeadlineComponent, typeof i16.CaseAssigneesComponent, typeof i17.CaseOwnersComponent, typeof i18.LinkedAssessmentComponent, typeof i19.LinkedResponsibilitiesComponent], [typeof i20.CommonModule, typeof i21.TooltipModule, typeof i22.FloatingBarModule, typeof i23.FormgroupModule, typeof i24.DpDatePickerModule, typeof i25.VcomplyEditorModule, typeof i26.PopoverModule, typeof i27.VcDropdownModule, typeof i28.FormSelectBoxModule, typeof i29.FormsModule, typeof i30.RcListModule, typeof i31.FormatAndEvidenceModule, typeof i32.VLoaderModule, typeof i33.SmileyDialogInlineModule, typeof i34.CategoryListSelectionModule, typeof i35.SharedDirectiveModule, typeof i36.CheckboxListModule, typeof i37.PipesModule, typeof i38.GroupUsersListComponent, typeof i39.LinkResponsibilityModule], [typeof i2.WorkflowCaseComponent]>;
|
|
41
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<ReportCaseModule>;
|
|
42
45
|
}
|
|
@@ -108,6 +108,8 @@ export declare class WorkflowCaseComponent {
|
|
|
108
108
|
case_assignees: string;
|
|
109
109
|
format_evidence: string;
|
|
110
110
|
case_owners: string;
|
|
111
|
+
link_controls: string;
|
|
112
|
+
link_items: string;
|
|
111
113
|
};
|
|
112
114
|
caseType: typeof report;
|
|
113
115
|
caseTypeSelected: report;
|
|
@@ -140,7 +142,13 @@ export declare class WorkflowCaseComponent {
|
|
|
140
142
|
risk_class: number;
|
|
141
143
|
caseToWorkflow: {};
|
|
142
144
|
responsibilities_Linked: never[];
|
|
143
|
-
linked_assessment_issues: {
|
|
145
|
+
linked_assessment_issues: {
|
|
146
|
+
resp_id: string;
|
|
147
|
+
due_date_id: string;
|
|
148
|
+
assessment_id: string;
|
|
149
|
+
question_id: string;
|
|
150
|
+
auditee_id: number;
|
|
151
|
+
};
|
|
144
152
|
source: string;
|
|
145
153
|
};
|
|
146
154
|
params: {
|
|
@@ -310,6 +318,8 @@ export declare class WorkflowCaseComponent {
|
|
|
310
318
|
caseId: any;
|
|
311
319
|
mode: any;
|
|
312
320
|
workflowType: any;
|
|
321
|
+
responsibilityData: any;
|
|
322
|
+
assessmentQuestion: any;
|
|
313
323
|
closeWorkflow: EventEmitter<any>;
|
|
314
324
|
populateOption: EventEmitter<any>;
|
|
315
325
|
caseReportedBy: EventEmitter<any>;
|
|
@@ -361,6 +371,7 @@ export declare class WorkflowCaseComponent {
|
|
|
361
371
|
selectorAction(evt: any, type: any): void;
|
|
362
372
|
getCcUsers(evt: any, type: string): void;
|
|
363
373
|
filterOversights(): void;
|
|
374
|
+
filterResponsibilities(payload: any): void;
|
|
364
375
|
addToCase(): void;
|
|
365
376
|
addCaseToWorkflow(): void;
|
|
366
377
|
updateAddToCase(): void;
|
|
@@ -374,5 +385,5 @@ export declare class WorkflowCaseComponent {
|
|
|
374
385
|
get displayAdditionalOptions(): any;
|
|
375
386
|
get checkloader(): boolean;
|
|
376
387
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowCaseComponent, never>;
|
|
377
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowCaseComponent, "app-workflow-case", never, { "openedFrom": { "alias": "openedFrom"; "required": false; }; "source": { "alias": "source"; "required": false; }; "caseId": { "alias": "caseId"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "workflowType": { "alias": "workflowType"; "required": false; }; }, { "closeWorkflow": "closeWorkflow"; "populateOption": "populateOption"; "caseReportedBy": "caseReportedBy"; "userListEmitter": "userListEmitter"; }, never, never, false, never>;
|
|
388
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowCaseComponent, "app-workflow-case", never, { "openedFrom": { "alias": "openedFrom"; "required": false; }; "source": { "alias": "source"; "required": false; }; "caseId": { "alias": "caseId"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "workflowType": { "alias": "workflowType"; "required": false; }; "responsibilityData": { "alias": "responsibilityData"; "required": false; }; "assessmentQuestion": { "alias": "assessmentQuestion"; "required": false; }; }, { "closeWorkflow": "closeWorkflow"; "populateOption": "populateOption"; "caseReportedBy": "caseReportedBy"; "userListEmitter": "userListEmitter"; }, never, never, false, never>;
|
|
378
389
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./link-responsibility.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../../pipes/pipes.module";
|
|
6
|
+
import * as i5 from "../floating-bar/floating-bar.module";
|
|
7
|
+
import * as i6 from "../../formgroup/formgroup.module";
|
|
8
|
+
import * as i7 from "../no-data/no-data.module";
|
|
9
|
+
import * as i8 from "../v-loader/v-loader.module";
|
|
10
|
+
import * as i9 from "../../ui-kit/popover/popover.module";
|
|
11
|
+
export declare class LinkResponsibilityModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkResponsibilityModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LinkResponsibilityModule, [typeof i1.LinkResponsibilityListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PipesModule, typeof i5.FloatingBarModule, typeof i6.FormgroupModule, typeof i7.NoDataModule, typeof i8.VLoaderModule, typeof i9.PopoverModule], [typeof i1.LinkResponsibilityListComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LinkResponsibilityModule>;
|
|
15
|
+
}
|
|
@@ -90,49 +90,49 @@ import * as i86 from "./sharedComponents/approval-workflow/approval-workflow-lis
|
|
|
90
90
|
import * as i87 from "./sharedComponents/approval-workflow/approval-create-form/approval-create-form.component";
|
|
91
91
|
import * as i88 from "./sharedComponents/link-program/link-program/link-program.component";
|
|
92
92
|
import * as i89 from "./sharedComponents/link-program/tooltip-validation.pipe";
|
|
93
|
-
import * as i90 from "./
|
|
94
|
-
import * as i91 from "
|
|
95
|
-
import * as i92 from "
|
|
96
|
-
import * as i93 from "
|
|
97
|
-
import * as i94 from "@
|
|
98
|
-
import * as i95 from "
|
|
99
|
-
import * as i96 from "./
|
|
100
|
-
import * as i97 from "./ui-kit/
|
|
101
|
-
import * as i98 from "./ui-kit/
|
|
102
|
-
import * as i99 from "./
|
|
103
|
-
import * as i100 from "
|
|
104
|
-
import * as i101 from "
|
|
105
|
-
import * as i102 from "
|
|
106
|
-
import * as i103 from "./sharedComponents/
|
|
107
|
-
import * as i104 from "./
|
|
108
|
-
import * as i105 from "./ui-kit/
|
|
109
|
-
import * as i106 from "
|
|
110
|
-
import * as i107 from "
|
|
111
|
-
import * as i108 from "./ui-kit/
|
|
112
|
-
import * as i109 from "./ui-kit/
|
|
113
|
-
import * as i110 from "./ui-kit/
|
|
114
|
-
import * as i111 from "./ui-kit/
|
|
115
|
-
import * as i112 from "./
|
|
116
|
-
import * as i113 from "./
|
|
117
|
-
import * as i114 from "./
|
|
118
|
-
import * as i115 from "./
|
|
119
|
-
import * as i116 from "./
|
|
120
|
-
import * as i117 from "./
|
|
121
|
-
import * as i118 from "./
|
|
122
|
-
import * as i119 from "./sharedComponents/
|
|
123
|
-
import * as i120 from "./sharedComponents/
|
|
124
|
-
import * as i121 from "./
|
|
125
|
-
import * as i122 from "./
|
|
126
|
-
import * as i123 from "./ui-kit/
|
|
127
|
-
import * as i124 from "./
|
|
128
|
-
import * as i125 from "./
|
|
129
|
-
import * as i126 from "./
|
|
130
|
-
import * as i127 from "./sharedComponents/
|
|
131
|
-
import * as i128 from "./sharedComponents/
|
|
132
|
-
import * as i129 from "./sharedComponents/
|
|
93
|
+
import * as i90 from "./link-related-policies/link-related-policies.component";
|
|
94
|
+
import * as i91 from "@angular/forms";
|
|
95
|
+
import * as i92 from "./sharedComponents/assessment-editor/create-assessment.module";
|
|
96
|
+
import * as i93 from "@vcomply/editor";
|
|
97
|
+
import * as i94 from "@angular/common";
|
|
98
|
+
import * as i95 from "./formgroup/formgroup.module";
|
|
99
|
+
import * as i96 from "./ui-kit/tooltip/tooltip.module";
|
|
100
|
+
import * as i97 from "./ui-kit/popover/popover.module";
|
|
101
|
+
import * as i98 from "./ui-kit/line-loader/line-loader.module";
|
|
102
|
+
import * as i99 from "./formgroup/select/select.module";
|
|
103
|
+
import * as i100 from "ngx-material-timepicker";
|
|
104
|
+
import * as i101 from "ng2-date-picker";
|
|
105
|
+
import * as i102 from "./sharedComponents/no-data/no-data.module";
|
|
106
|
+
import * as i103 from "./sharedComponents/v-loader/v-loader.module";
|
|
107
|
+
import * as i104 from "./ui-kit/smiley-dialog/smiley-dialog.module";
|
|
108
|
+
import * as i105 from "./ui-kit/snack-bar/snack-bar.module";
|
|
109
|
+
import * as i106 from "@angular/common/http";
|
|
110
|
+
import * as i107 from "./ui-kit/smiley-dialog-inline/smiley-dialog-inline.module";
|
|
111
|
+
import * as i108 from "./ui-kit/click-outside/click-outside.module";
|
|
112
|
+
import * as i109 from "./ui-kit/popover-hover/popover-hover.module";
|
|
113
|
+
import * as i110 from "./ui-kit/pagination/pagination.module";
|
|
114
|
+
import * as i111 from "./ui-kit/action-dialog/action-dialog.module";
|
|
115
|
+
import * as i112 from "./sharedComponents/assessment-preview/assessment-preview.module";
|
|
116
|
+
import * as i113 from "./workflow-program/create-program-ui/create-program-ui.module";
|
|
117
|
+
import * as i114 from "./ui-kit/directive/directive.module";
|
|
118
|
+
import * as i115 from "./workflow/grc-object/grc-object.module";
|
|
119
|
+
import * as i116 from "./sharedComponents/responsibility-centers-list/rc-list.module";
|
|
120
|
+
import * as i117 from "./pipes/pipes.module";
|
|
121
|
+
import * as i118 from "./sharedComponents/floating-bar/floating-bar.module";
|
|
122
|
+
import * as i119 from "./sharedComponents/group-users-list/group-users-list.component";
|
|
123
|
+
import * as i120 from "./sharedComponents/list-loader/list-loader.module";
|
|
124
|
+
import * as i121 from "./workflow/shared/components/grc-object-list/grc-object-list.component";
|
|
125
|
+
import * as i122 from "./ui-kit/time-picker/time-picker.module";
|
|
126
|
+
import * as i123 from "./ui-kit/multi-select/multi-select.module";
|
|
127
|
+
import * as i124 from "./sharedComponents/policy-template/policy-template.module";
|
|
128
|
+
import * as i125 from "./report-a-case/report-case.module";
|
|
129
|
+
import * as i126 from "./sharedComponents/format-and-evidence/format-and-evidence.module";
|
|
130
|
+
import * as i127 from "./sharedComponents/checkbox-list/checkbox-list.module";
|
|
131
|
+
import * as i128 from "./sharedComponents/radio-list-with-pagination/radio-list-with-pagination.module";
|
|
132
|
+
import * as i129 from "./sharedComponents/link-responsibility/link-responsibility.module";
|
|
133
133
|
export declare class VComplyWorkflowEngineModule {
|
|
134
134
|
static forRoot(environmentConfig: Configurations): ModuleWithProviders<VComplyWorkflowEngineModule>;
|
|
135
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<VComplyWorkflowEngineModule, never>;
|
|
136
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.RadioListComponent, typeof i43.CreateDocumentsComponent, typeof i44.FrameworkListComponent, typeof i45.ParentTableComponent, typeof i46.CheckpointFloatingBarComponent, typeof i47.RiskClassificationComponent, typeof i48.ShortMergePipe, typeof i49.FormatHtmlPipe, typeof i50.WithinDataPipe, typeof i51.rcTreeToolTipPipe, typeof i52.ResponsibilityRiskSelectorComponent, typeof i53.ArrayFilterPipe, typeof i54.AuditCategoryListComponent, typeof i55.DocumentSectionComponent, typeof i55.DocumentSectionComponent, typeof i56.WorkflowAssessmentComponent, typeof i57.ImportAnAssessmentComponent, typeof i58.AssessmentListComponent, typeof i59.AssessmentListLoaderComponent, typeof i60.AssessmentListSubLoaderComponent, typeof i61.ProgramListingComponent, typeof i62.WorkflowProgramComponent, typeof i63.RolesListComponent, typeof i64.FrameworkListTableComponent, typeof i65.FrameworkResponsibilityTableComponent, typeof i66.FrameworkTableLoaderComponent, typeof i67.ArrayConcatPipe, typeof i68.SpaceTrimPipe, typeof i69.FrequencyDialogContainerComponent, typeof i70.FrequencyDialogWeeklyComponent, typeof i71.FrequencyDialogTopComponent, typeof i72.FrequencyDialogDueDateComponent, typeof i73.FrequencyDialogCheckboxListComponent, typeof i74.FrequencyDialogMonthlyComponent, typeof i75.FrequencyDialogQuarterlyComponent, typeof i76.FrequencyDialogRadioListComponent, typeof i77.FrequencyDialogBiannualComponent, typeof i78.FrequencyDialogAnnualComponent, typeof i79.FrequencyDialogOneTimeComponent, typeof i80.AddMultipleResponsibilityContainerComponent, typeof i81.AddMultipleResponsibilityWithTabComponent, typeof i82.FrequencyResponsibilityListComponent, typeof i83.ApprovalWorkflowComponent, typeof i84.SelectApproversComponent, typeof i85.PolicyAccessComponent, typeof i86.ApprovalWorkflowListComponent, typeof i87.ApprovalCreateFormComponent, typeof i88.LinkProgramComponent, typeof i89.TooltipValidationPipe, typeof i90.
|
|
136
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.RadioListComponent, typeof i43.CreateDocumentsComponent, typeof i44.FrameworkListComponent, typeof i45.ParentTableComponent, typeof i46.CheckpointFloatingBarComponent, typeof i47.RiskClassificationComponent, typeof i48.ShortMergePipe, typeof i49.FormatHtmlPipe, typeof i50.WithinDataPipe, typeof i51.rcTreeToolTipPipe, typeof i52.ResponsibilityRiskSelectorComponent, typeof i53.ArrayFilterPipe, typeof i54.AuditCategoryListComponent, typeof i55.DocumentSectionComponent, typeof i55.DocumentSectionComponent, typeof i56.WorkflowAssessmentComponent, typeof i57.ImportAnAssessmentComponent, typeof i58.AssessmentListComponent, typeof i59.AssessmentListLoaderComponent, typeof i60.AssessmentListSubLoaderComponent, typeof i61.ProgramListingComponent, typeof i62.WorkflowProgramComponent, typeof i63.RolesListComponent, typeof i64.FrameworkListTableComponent, typeof i65.FrameworkResponsibilityTableComponent, typeof i66.FrameworkTableLoaderComponent, typeof i67.ArrayConcatPipe, typeof i68.SpaceTrimPipe, typeof i69.FrequencyDialogContainerComponent, typeof i70.FrequencyDialogWeeklyComponent, typeof i71.FrequencyDialogTopComponent, typeof i72.FrequencyDialogDueDateComponent, typeof i73.FrequencyDialogCheckboxListComponent, typeof i74.FrequencyDialogMonthlyComponent, typeof i75.FrequencyDialogQuarterlyComponent, typeof i76.FrequencyDialogRadioListComponent, typeof i77.FrequencyDialogBiannualComponent, typeof i78.FrequencyDialogAnnualComponent, typeof i79.FrequencyDialogOneTimeComponent, typeof i80.AddMultipleResponsibilityContainerComponent, typeof i81.AddMultipleResponsibilityWithTabComponent, typeof i82.FrequencyResponsibilityListComponent, typeof i83.ApprovalWorkflowComponent, typeof i84.SelectApproversComponent, typeof i85.PolicyAccessComponent, typeof i86.ApprovalWorkflowListComponent, typeof i87.ApprovalCreateFormComponent, typeof i88.LinkProgramComponent, typeof i89.TooltipValidationPipe, typeof i90.LinkRelatedPoliciesComponent], [typeof i91.ReactiveFormsModule, typeof i92.CreateAssessmentModule, typeof i93.VcomplyEditorModule, typeof i94.CommonModule, typeof i95.FormgroupModule, typeof i96.TooltipModule, typeof i97.PopoverModule, typeof i98.LineLoaderModule, typeof i91.FormsModule, typeof i99.SelectModule, typeof i100.NgxMaterialTimepickerModule, typeof i101.DpDatePickerModule, typeof i102.NoDataModule, typeof i103.VLoaderModule, typeof i104.SmileyDialogModule, typeof i105.SnackBarModule, typeof i106.HttpClientModule, typeof i107.SmileyDialogInlineModule, typeof i108.ClickOutsideModule, typeof i109.PopoverHoverModule, typeof i110.PaginationModule, typeof i92.CreateAssessmentModule, typeof i111.ActionDialogModule, typeof i112.AssessmentPreviewModule, typeof i113.CreateProgramUiModule, typeof i114.DirectiveModule, typeof i115.GrcObjectModule, typeof i116.RcListModule, typeof i117.PipesModule, typeof i118.FloatingBarModule, typeof i119.GroupUsersListComponent, typeof i120.ListLoaderModule, typeof i121.GrcObjectListComponent, typeof i122.TimePickerModule, typeof i123.MultiSelectModule, typeof i124.PolicyTemplateModule, typeof i125.ReportCaseModule, typeof i126.FormatAndEvidenceModule, typeof i127.CheckboxListModule, typeof i128.RadioListWithPaginationModule, typeof i129.LinkResponsibilityModule], [typeof i1.WorkflowEngineContainerComponent]>;
|
|
137
137
|
static ɵinj: i0.ɵɵInjectorDeclaration<VComplyWorkflowEngineModule>;
|
|
138
138
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x ",
|
|
6
6
|
"@angular/core": " 12.x || 13.x || 14.x || 15.x || 16.x || 17.x || 18.x || 19.x "
|