vcomply-workflow-engine 5.0.1 → 5.0.3

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.
Files changed (41) hide show
  1. package/esm2022/lib/constants/assessts.constants.mjs +3 -1
  2. package/esm2022/lib/more-option/more-option.component.mjs +20 -2
  3. package/esm2022/lib/report-a-case/components/case-assignees/case-assignees.component.mjs +137 -0
  4. package/esm2022/lib/report-a-case/components/case-category/case-category.component.mjs +1 -1
  5. package/esm2022/lib/report-a-case/components/case-details/case-details.component.mjs +39 -12
  6. package/esm2022/lib/report-a-case/components/case-priority/case-priority.component.mjs +35 -19
  7. package/esm2022/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.mjs +114 -0
  8. package/esm2022/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.mjs +38 -11
  9. package/esm2022/lib/report-a-case/components/due-date/due-date.component.mjs +16 -5
  10. package/esm2022/lib/report-a-case/components/field-holder/field-holder.component.mjs +5 -5
  11. package/esm2022/lib/report-a-case/components/form-selectBox/form-selectBox.component.mjs +17 -30
  12. package/esm2022/lib/report-a-case/components/rc-details/rc-details.component.mjs +25 -9
  13. package/esm2022/lib/report-a-case/components/report-date/report-date.component.mjs +19 -11
  14. package/esm2022/lib/report-a-case/constants/api.constants.mjs +3 -2
  15. package/esm2022/lib/report-a-case/constants/report-case.constants.mjs +90 -3
  16. package/esm2022/lib/report-a-case/report-case.module.mjs +15 -5
  17. package/esm2022/lib/report-a-case/services/report-a-case.service.mjs +21 -2
  18. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +147 -36
  19. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +8 -1
  20. package/fesm2022/vcomply-workflow-engine.mjs +749 -181
  21. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  22. package/lib/constants/assessts.constants.d.ts +2 -0
  23. package/lib/report-a-case/components/case-assignees/case-assignees.component.d.ts +99 -0
  24. package/lib/report-a-case/components/case-category/case-category.component.d.ts +10 -0
  25. package/lib/report-a-case/components/case-details/case-details.component.d.ts +11 -0
  26. package/lib/report-a-case/components/case-priority/case-priority.component.d.ts +14 -2
  27. package/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.d.ts +94 -0
  28. package/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.d.ts +14 -2
  29. package/lib/report-a-case/components/case-type-slider/case-type.component.d.ts +8 -0
  30. package/lib/report-a-case/components/due-date/due-date.component.d.ts +18 -2
  31. package/lib/report-a-case/components/field-holder/field-holder.component.d.ts +2 -0
  32. package/lib/report-a-case/components/form-selectBox/form-selectBox.component.d.ts +3 -15
  33. package/lib/report-a-case/components/rc-details/rc-details.component.d.ts +14 -1
  34. package/lib/report-a-case/components/report-date/report-date.component.d.ts +10 -0
  35. package/lib/report-a-case/constants/api.constants.d.ts +1 -0
  36. package/lib/report-a-case/constants/report-case.constants.d.ts +95 -0
  37. package/lib/report-a-case/report-case.module.d.ts +22 -19
  38. package/lib/report-a-case/services/report-a-case.service.d.ts +3 -0
  39. package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +171 -21
  40. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  41. package/package.json +1 -1
@@ -5,4 +5,6 @@ export declare const ASSETS: {
5
5
  when: string;
6
6
  what: string;
7
7
  case_resolution_deadline: string;
8
+ case_assignees: string;
9
+ format_evidence: string;
8
10
  };
@@ -0,0 +1,99 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
3
+ import { ComplianceCommonService } from '../../../workflow-services/common-workflow-services/compliance-common.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CaseAssigneesComponent {
6
+ private complianceService;
7
+ ASSETS: {
8
+ responsibility_center: string;
9
+ case_type: string;
10
+ case_category: string;
11
+ when: string;
12
+ what: string;
13
+ case_resolution_deadline: string;
14
+ case_assignees: string;
15
+ format_evidence: string;
16
+ };
17
+ assigneesTexts: {
18
+ case_type: string;
19
+ report_case: string;
20
+ add_case: string;
21
+ receive_updates: string;
22
+ case_details: {
23
+ name: {
24
+ title: string;
25
+ placeholder: string;
26
+ };
27
+ description: {
28
+ title: string;
29
+ placeholder: string;
30
+ };
31
+ rc: {
32
+ title: string;
33
+ placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
36
+ };
37
+ case_type: {
38
+ title: string;
39
+ placeholder: string;
40
+ };
41
+ category: {
42
+ title: string;
43
+ placeholder: string;
44
+ };
45
+ when: {
46
+ title: string;
47
+ placeholder: string;
48
+ };
49
+ priority: {
50
+ title: string;
51
+ placeholder: string;
52
+ };
53
+ attachments: {
54
+ title: string;
55
+ placeholder: string;
56
+ };
57
+ due_date: {
58
+ title: string;
59
+ placeholder: string;
60
+ deadline_placeholder: string;
61
+ };
62
+ assignees: {
63
+ title: string;
64
+ placeholder: string;
65
+ };
66
+ };
67
+ tooltipMessage: {
68
+ report_case: string;
69
+ add_case: string;
70
+ receive_updates: string;
71
+ rc: string;
72
+ };
73
+ errorMessage: {
74
+ rc: string;
75
+ };
76
+ };
77
+ responsibilityCentersList: any[];
78
+ config: any;
79
+ assigneesClicked: boolean;
80
+ rcListLoader: boolean;
81
+ SelectionState: typeof SelectionState;
82
+ SelectionPopupState: typeof SelectionPopupState;
83
+ state: string;
84
+ selectedItems: any[];
85
+ selectedAssigneesList: any[];
86
+ payload: any;
87
+ fieldSelected: string;
88
+ userList: any[];
89
+ groupList: any[];
90
+ fieldClicked: EventEmitter<any>;
91
+ onRcChange: EventEmitter<any>;
92
+ constructor(complianceService: ComplianceCommonService);
93
+ ngOnInit(): void;
94
+ saveSelectedAssigneesList(event: any): void;
95
+ setSelectedAssigneesList(event: any): void;
96
+ activateSelector(active: boolean): void;
97
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseAssigneesComponent, never>;
98
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseAssigneesComponent, "app-case-assignees", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "userList": { "alias": "userList"; "required": false; }; "groupList": { "alias": "groupList"; "required": false; }; }, { "fieldClicked": "fieldClicked"; "onRcChange": "onRcChange"; }, never, never, false, never>;
99
+ }
@@ -11,11 +11,14 @@ export declare class CaseCategoryComponent {
11
11
  when: string;
12
12
  what: string;
13
13
  case_resolution_deadline: string;
14
+ case_assignees: string;
15
+ format_evidence: string;
14
16
  };
15
17
  categoryTexts: {
16
18
  case_type: string;
17
19
  report_case: string;
18
20
  add_case: string;
21
+ receive_updates: string;
19
22
  case_details: {
20
23
  name: {
21
24
  title: string;
@@ -28,6 +31,8 @@ export declare class CaseCategoryComponent {
28
31
  rc: {
29
32
  title: string;
30
33
  placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
31
36
  };
32
37
  case_type: {
33
38
  title: string;
@@ -54,10 +59,15 @@ export declare class CaseCategoryComponent {
54
59
  placeholder: string;
55
60
  deadline_placeholder: string;
56
61
  };
62
+ assignees: {
63
+ title: string;
64
+ placeholder: string;
65
+ };
57
66
  };
58
67
  tooltipMessage: {
59
68
  report_case: string;
60
69
  add_case: string;
70
+ receive_updates: string;
61
71
  rc: string;
62
72
  };
63
73
  errorMessage: {
@@ -6,6 +6,7 @@ export declare class CaseDetailsComponent implements OnInit {
6
6
  case_type: string;
7
7
  report_case: string;
8
8
  add_case: string;
9
+ receive_updates: string;
9
10
  case_details: {
10
11
  name: {
11
12
  title: string;
@@ -18,6 +19,8 @@ export declare class CaseDetailsComponent implements OnInit {
18
19
  rc: {
19
20
  title: string;
20
21
  placeholder: string;
22
+ singularText: string;
23
+ pluralText: string;
21
24
  };
22
25
  case_type: {
23
26
  title: string;
@@ -44,10 +47,15 @@ export declare class CaseDetailsComponent implements OnInit {
44
47
  placeholder: string;
45
48
  deadline_placeholder: string;
46
49
  };
50
+ assignees: {
51
+ title: string;
52
+ placeholder: string;
53
+ };
47
54
  };
48
55
  tooltipMessage: {
49
56
  report_case: string;
50
57
  add_case: string;
58
+ receive_updates: string;
51
59
  rc: string;
52
60
  };
53
61
  errorMessage: {
@@ -61,6 +69,8 @@ export declare class CaseDetailsComponent implements OnInit {
61
69
  when: string;
62
70
  what: string;
63
71
  case_resolution_deadline: string;
72
+ case_assignees: string;
73
+ format_evidence: string;
64
74
  };
65
75
  description: EditorConfig;
66
76
  payload: any;
@@ -69,6 +79,7 @@ export declare class CaseDetailsComponent implements OnInit {
69
79
  constructor();
70
80
  ngOnInit(): void;
71
81
  onNameChange(event: any): void;
82
+ onDescriptionChange(event: any): void;
72
83
  checkDescription(): void;
73
84
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseDetailsComponent, never>;
74
85
  static ɵcmp: i0.ɵɵComponentDeclaration<CaseDetailsComponent, "app-case-details", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, {}, never, never, false, never>;
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
3
3
  import { ReportACaseService } from '../../services/report-a-case.service';
4
4
  import * as i0 from "@angular/core";
@@ -8,6 +8,7 @@ export declare class CasePriorityComponent implements OnInit {
8
8
  case_type: string;
9
9
  report_case: string;
10
10
  add_case: string;
11
+ receive_updates: string;
11
12
  case_details: {
12
13
  name: {
13
14
  title: string;
@@ -20,6 +21,8 @@ export declare class CasePriorityComponent implements OnInit {
20
21
  rc: {
21
22
  title: string;
22
23
  placeholder: string;
24
+ singularText: string;
25
+ pluralText: string;
23
26
  };
24
27
  case_type: {
25
28
  title: string;
@@ -46,10 +49,15 @@ export declare class CasePriorityComponent implements OnInit {
46
49
  placeholder: string;
47
50
  deadline_placeholder: string;
48
51
  };
52
+ assignees: {
53
+ title: string;
54
+ placeholder: string;
55
+ };
49
56
  };
50
57
  tooltipMessage: {
51
58
  report_case: string;
52
59
  add_case: string;
60
+ receive_updates: string;
53
61
  rc: string;
54
62
  };
55
63
  errorMessage: {
@@ -63,6 +71,8 @@ export declare class CasePriorityComponent implements OnInit {
63
71
  when: string;
64
72
  what: string;
65
73
  case_resolution_deadline: string;
74
+ case_assignees: string;
75
+ format_evidence: string;
66
76
  };
67
77
  config: any;
68
78
  chipItems: any[];
@@ -72,10 +82,12 @@ export declare class CasePriorityComponent implements OnInit {
72
82
  isLoading: boolean;
73
83
  fieldSelected: string;
74
84
  payload: any;
85
+ onPriorityChange: EventEmitter<any>;
86
+ onPriorityLoader: EventEmitter<boolean>;
75
87
  constructor(reportACaseService: ReportACaseService);
76
88
  ngOnInit(): void;
77
89
  getAllPriorities(): void;
78
90
  onSelectedItemListChange(event: any): void;
79
91
  static ɵfac: i0.ɵɵFactoryDeclaration<CasePriorityComponent, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<CasePriorityComponent, "app-case-priority", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; }, {}, never, never, false, never>;
92
+ static ɵcmp: i0.ɵɵComponentDeclaration<CasePriorityComponent, "app-case-priority", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; }, { "onPriorityChange": "onPriorityChange"; "onPriorityLoader": "onPriorityLoader"; }, never, never, false, never>;
81
93
  }
@@ -0,0 +1,94 @@
1
+ import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
2
+ import { ComplianceCommonService } from '../../../workflow-services/common-workflow-services/compliance-common.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CaseResolutionDeadlineComponent {
5
+ private complianceService;
6
+ ASSETS: {
7
+ responsibility_center: string;
8
+ case_type: string;
9
+ case_category: string;
10
+ when: string;
11
+ what: string;
12
+ case_resolution_deadline: string;
13
+ case_assignees: string;
14
+ format_evidence: string;
15
+ };
16
+ dueDateTexts: {
17
+ case_type: string;
18
+ report_case: string;
19
+ add_case: string;
20
+ receive_updates: string;
21
+ case_details: {
22
+ name: {
23
+ title: string;
24
+ placeholder: string;
25
+ };
26
+ description: {
27
+ title: string;
28
+ placeholder: string;
29
+ };
30
+ rc: {
31
+ title: string;
32
+ placeholder: string;
33
+ singularText: string;
34
+ pluralText: string;
35
+ };
36
+ case_type: {
37
+ title: string;
38
+ placeholder: string;
39
+ };
40
+ category: {
41
+ title: string;
42
+ placeholder: string;
43
+ };
44
+ when: {
45
+ title: string;
46
+ placeholder: string;
47
+ };
48
+ priority: {
49
+ title: string;
50
+ placeholder: string;
51
+ };
52
+ attachments: {
53
+ title: string;
54
+ placeholder: string;
55
+ };
56
+ due_date: {
57
+ title: string;
58
+ placeholder: string;
59
+ deadline_placeholder: string;
60
+ };
61
+ assignees: {
62
+ title: string;
63
+ placeholder: string;
64
+ };
65
+ };
66
+ tooltipMessage: {
67
+ report_case: string;
68
+ add_case: string;
69
+ receive_updates: string;
70
+ rc: string;
71
+ };
72
+ errorMessage: {
73
+ rc: string;
74
+ };
75
+ };
76
+ responsibilityCentersList: any[];
77
+ config: any;
78
+ dueDateClicked: boolean;
79
+ rcListLoader: boolean;
80
+ SelectionState: typeof SelectionState;
81
+ SelectionPopupState: typeof SelectionPopupState;
82
+ state: string;
83
+ selectedItems: any[];
84
+ selectedRcList: any[];
85
+ payload: any;
86
+ constructor(complianceService: ComplianceCommonService);
87
+ ngOnInit(): void;
88
+ getResponsibilityCentersList(): void;
89
+ saveSelectedRCList(event: any): void;
90
+ setSelectedRcList(event: any): void;
91
+ activateSelector(active: boolean): void;
92
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseResolutionDeadlineComponent, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseResolutionDeadlineComponent, "app-case-resolution-deadline", never, { "payload": { "alias": "payload"; "required": false; }; }, {}, never, never, false, never>;
94
+ }
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
3
3
  import { ReportACaseService } from '../../services/report-a-case.service';
4
4
  import * as i0 from "@angular/core";
@@ -8,6 +8,7 @@ export declare class CaseDropdownComponent implements OnInit {
8
8
  case_type: string;
9
9
  report_case: string;
10
10
  add_case: string;
11
+ receive_updates: string;
11
12
  case_details: {
12
13
  name: {
13
14
  title: string;
@@ -20,6 +21,8 @@ export declare class CaseDropdownComponent implements OnInit {
20
21
  rc: {
21
22
  title: string;
22
23
  placeholder: string;
24
+ singularText: string;
25
+ pluralText: string;
23
26
  };
24
27
  case_type: {
25
28
  title: string;
@@ -46,10 +49,15 @@ export declare class CaseDropdownComponent implements OnInit {
46
49
  placeholder: string;
47
50
  deadline_placeholder: string;
48
51
  };
52
+ assignees: {
53
+ title: string;
54
+ placeholder: string;
55
+ };
49
56
  };
50
57
  tooltipMessage: {
51
58
  report_case: string;
52
59
  add_case: string;
60
+ receive_updates: string;
53
61
  rc: string;
54
62
  };
55
63
  errorMessage: {
@@ -63,6 +71,8 @@ export declare class CaseDropdownComponent implements OnInit {
63
71
  when: string;
64
72
  what: string;
65
73
  case_resolution_deadline: string;
74
+ case_assignees: string;
75
+ format_evidence: string;
66
76
  };
67
77
  config: any;
68
78
  chipItems: any[];
@@ -73,10 +83,12 @@ export declare class CaseDropdownComponent implements OnInit {
73
83
  fieldSelected: string;
74
84
  payload: any;
75
85
  validationError: any;
86
+ onCaseTypeChange: EventEmitter<any>;
87
+ onCaseTypeLoading: EventEmitter<boolean>;
76
88
  constructor(reportACaseService: ReportACaseService);
77
89
  ngOnInit(): void;
78
90
  getAllTypes(): void;
79
91
  onSelectedItemListChange(event: any): void;
80
92
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseDropdownComponent, never>;
81
- static ɵcmp: i0.ɵɵComponentDeclaration<CaseDropdownComponent, "app-case-type-dropdown", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, {}, never, never, false, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseDropdownComponent, "app-case-type-dropdown", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, { "onCaseTypeChange": "onCaseTypeChange"; "onCaseTypeLoading": "onCaseTypeLoading"; }, never, never, false, never>;
82
94
  }
@@ -9,6 +9,7 @@ export declare class CaseTypeComponent implements OnInit {
9
9
  case_type: string;
10
10
  report_case: string;
11
11
  add_case: string;
12
+ receive_updates: string;
12
13
  case_details: {
13
14
  name: {
14
15
  title: string;
@@ -21,6 +22,8 @@ export declare class CaseTypeComponent implements OnInit {
21
22
  rc: {
22
23
  title: string;
23
24
  placeholder: string;
25
+ singularText: string;
26
+ pluralText: string;
24
27
  };
25
28
  case_type: {
26
29
  title: string;
@@ -47,10 +50,15 @@ export declare class CaseTypeComponent implements OnInit {
47
50
  placeholder: string;
48
51
  deadline_placeholder: string;
49
52
  };
53
+ assignees: {
54
+ title: string;
55
+ placeholder: string;
56
+ };
50
57
  };
51
58
  tooltipMessage: {
52
59
  report_case: string;
53
60
  add_case: string;
61
+ receive_updates: string;
54
62
  rc: string;
55
63
  };
56
64
  errorMessage: {
@@ -1,7 +1,8 @@
1
- import { ElementRef, OnInit } from '@angular/core';
1
+ import { ElementRef, OnInit, EventEmitter } from '@angular/core';
2
2
  import { DatePickerComponent } from 'ng2-date-picker';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DueDateComponent implements OnInit {
5
+ closeDueDateEvent: EventEmitter<any>;
5
6
  animation: boolean;
6
7
  datePicker: DatePickerComponent;
7
8
  datePickerPopUp: ElementRef;
@@ -18,6 +19,7 @@ export declare class DueDateComponent implements OnInit {
18
19
  case_type: string;
19
20
  report_case: string;
20
21
  add_case: string;
22
+ receive_updates: string;
21
23
  case_details: {
22
24
  name: {
23
25
  title: string;
@@ -30,6 +32,8 @@ export declare class DueDateComponent implements OnInit {
30
32
  rc: {
31
33
  title: string;
32
34
  placeholder: string;
35
+ singularText: string;
36
+ pluralText: string;
33
37
  };
34
38
  case_type: {
35
39
  title: string;
@@ -56,16 +60,27 @@ export declare class DueDateComponent implements OnInit {
56
60
  placeholder: string;
57
61
  deadline_placeholder: string;
58
62
  };
63
+ assignees: {
64
+ title: string;
65
+ placeholder: string;
66
+ };
59
67
  };
60
68
  tooltipMessage: {
61
69
  report_case: string;
62
70
  add_case: string;
71
+ receive_updates: string;
63
72
  rc: string;
64
73
  };
65
74
  errorMessage: {
66
75
  rc: string;
67
76
  };
68
77
  };
78
+ helperText: {
79
+ transition_status: string;
80
+ assignee: string;
81
+ deadline: string;
82
+ };
83
+ payload: any;
69
84
  dueDate: any;
70
85
  ngOnInit(): void;
71
86
  openDatePicker(): void;
@@ -73,6 +88,7 @@ export declare class DueDateComponent implements OnInit {
73
88
  * closes the date picker from policy form
74
89
  */
75
90
  closeDatePicker(evt: any): void;
91
+ closeDueDate(): void;
76
92
  static ɵfac: i0.ɵɵFactoryDeclaration<DueDateComponent, never>;
77
- static ɵcmp: i0.ɵɵComponentDeclaration<DueDateComponent, "app-due-date", never, { "dueDate": { "alias": "dueDate"; "required": false; }; }, {}, never, never, false, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<DueDateComponent, "app-due-date", never, { "payload": { "alias": "payload"; "required": false; }; "dueDate": { "alias": "dueDate"; "required": false; }; }, { "closeDueDateEvent": "closeDueDateEvent"; }, never, never, false, never>;
78
94
  }
@@ -7,6 +7,8 @@ export declare class FieldHolderComponent {
7
7
  when: string;
8
8
  what: string;
9
9
  case_resolution_deadline: string;
10
+ case_assignees: string;
11
+ format_evidence: string;
10
12
  };
11
13
  image: string;
12
14
  active: boolean;
@@ -13,13 +13,6 @@ export declare class FormSelectBoxComponent {
13
13
  readonly SelectionPopupState: SelectionPopupState;
14
14
  readonly SelectionState: SelectionState;
15
15
  _config: any;
16
- itemList: any[];
17
- selectedItemList: any[];
18
- selectedItem: string;
19
- dropDownList: any;
20
- dropDownText: any;
21
- treeData: any;
22
- isLoader: boolean;
23
16
  title: string;
24
17
  key: string;
25
18
  action: string;
@@ -28,20 +21,15 @@ export declare class FormSelectBoxComponent {
28
21
  isCaseTypeSelected: boolean;
29
22
  chipItems: any[];
30
23
  set config(value: any);
31
- set initialSelectedItemList(value: any[]);
32
24
  isError: boolean;
33
25
  errorMessage: string;
26
+ selectedData: any;
34
27
  selectedItemListChange: EventEmitter<any>;
35
28
  fieldClicked: EventEmitter<any>;
36
- selectedData: any;
37
- selectionList: any;
38
- isContainerRest: boolean;
39
- selectedRc: any;
40
- defaultRc: any;
41
- constructor();
42
29
  ngOnChanges(changes: SimpleChanges): void;
43
30
  openSelection(): void;
44
31
  setDropdownList(event: any): void;
32
+ removeSelectedList(event: any): void;
45
33
  static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectBoxComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectBoxComponent, "app-form-selectBox", never, { "title": { "alias": "title"; "required": false; }; "key": { "alias": "key"; "required": false; }; "action": { "alias": "action"; "required": false; }; "state": { "alias": "state"; "required": false; }; "popupState": { "alias": "popupState"; "required": false; }; "isCaseTypeSelected": { "alias": "isCaseTypeSelected"; "required": false; }; "chipItems": { "alias": "chipItems"; "required": false; }; "config": { "alias": "config"; "required": false; }; "initialSelectedItemList": { "alias": "initialSelectedItemList"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; }, { "selectedItemListChange": "selectedItemListChange"; "fieldClicked": "fieldClicked"; }, never, ["[label]"], false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectBoxComponent, "app-form-selectBox", never, { "title": { "alias": "title"; "required": false; }; "key": { "alias": "key"; "required": false; }; "action": { "alias": "action"; "required": false; }; "state": { "alias": "state"; "required": false; }; "popupState": { "alias": "popupState"; "required": false; }; "isCaseTypeSelected": { "alias": "isCaseTypeSelected"; "required": false; }; "chipItems": { "alias": "chipItems"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; }, { "selectedItemListChange": "selectedItemListChange"; "fieldClicked": "fieldClicked"; }, never, ["[label]"], false, never>;
47
35
  }
@@ -11,11 +11,14 @@ export declare class RcDetailsComponent {
11
11
  when: string;
12
12
  what: string;
13
13
  case_resolution_deadline: string;
14
+ case_assignees: string;
15
+ format_evidence: string;
14
16
  };
15
17
  rcTexts: {
16
18
  case_type: string;
17
19
  report_case: string;
18
20
  add_case: string;
21
+ receive_updates: string;
19
22
  case_details: {
20
23
  name: {
21
24
  title: string;
@@ -28,6 +31,8 @@ export declare class RcDetailsComponent {
28
31
  rc: {
29
32
  title: string;
30
33
  placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
31
36
  };
32
37
  case_type: {
33
38
  title: string;
@@ -54,10 +59,15 @@ export declare class RcDetailsComponent {
54
59
  placeholder: string;
55
60
  deadline_placeholder: string;
56
61
  };
62
+ assignees: {
63
+ title: string;
64
+ placeholder: string;
65
+ };
57
66
  };
58
67
  tooltipMessage: {
59
68
  report_case: string;
60
69
  add_case: string;
70
+ receive_updates: string;
61
71
  rc: string;
62
72
  };
63
73
  errorMessage: {
@@ -76,12 +86,15 @@ export declare class RcDetailsComponent {
76
86
  payload: any;
77
87
  fieldSelected: string;
78
88
  fieldClicked: EventEmitter<any>;
89
+ onRcChange: EventEmitter<any>;
79
90
  constructor(complianceService: ComplianceCommonService);
80
91
  ngOnInit(): void;
81
92
  getResponsibilityCentersList(): void;
82
93
  saveSelectedRCList(event: any): void;
94
+ setPayload(event: any): void;
83
95
  setSelectedRcList(event: any): void;
84
96
  activateSelector(active: boolean): void;
97
+ setRcList(event: any): void;
85
98
  static ɵfac: i0.ɵɵFactoryDeclaration<RcDetailsComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<RcDetailsComponent, "app-rc-details", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; }, { "fieldClicked": "fieldClicked"; }, never, never, false, never>;
99
+ static ɵcmp: i0.ɵɵComponentDeclaration<RcDetailsComponent, "app-rc-details", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; }, { "fieldClicked": "fieldClicked"; "onRcChange": "onRcChange"; }, never, never, false, never>;
87
100
  }
@@ -9,11 +9,14 @@ export declare class ReportDateComponent {
9
9
  when: string;
10
10
  what: string;
11
11
  case_resolution_deadline: string;
12
+ case_assignees: string;
13
+ format_evidence: string;
12
14
  };
13
15
  reportTexts: {
14
16
  case_type: string;
15
17
  report_case: string;
16
18
  add_case: string;
19
+ receive_updates: string;
17
20
  case_details: {
18
21
  name: {
19
22
  title: string;
@@ -26,6 +29,8 @@ export declare class ReportDateComponent {
26
29
  rc: {
27
30
  title: string;
28
31
  placeholder: string;
32
+ singularText: string;
33
+ pluralText: string;
29
34
  };
30
35
  case_type: {
31
36
  title: string;
@@ -52,10 +57,15 @@ export declare class ReportDateComponent {
52
57
  placeholder: string;
53
58
  deadline_placeholder: string;
54
59
  };
60
+ assignees: {
61
+ title: string;
62
+ placeholder: string;
63
+ };
55
64
  };
56
65
  tooltipMessage: {
57
66
  report_case: string;
58
67
  add_case: string;
68
+ receive_updates: string;
59
69
  rc: string;
60
70
  };
61
71
  errorMessage: {
@@ -2,4 +2,5 @@ export declare const API_URLS: {
2
2
  GET_ALL_TYPES: string;
3
3
  GET_ALL_PRIORITIES: string;
4
4
  GET_ALL_CATEGORIES: string;
5
+ GET_STAGE_DETAILS: string;
5
6
  };