vcomply-workflow-engine 5.0.14 → 5.0.16
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/report-a-case/components/case-category/case-category.component.mjs +1 -1
- package/esm2022/lib/report-a-case/components/case-owners/case-owners.component.mjs +1 -1
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +21 -16
- package/fesm2022/vcomply-workflow-engine.mjs +20 -15
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/report-a-case/components/case-category/case-category.component.d.ts +2 -2
- package/lib/report-a-case/components/case-owners/case-owners.component.d.ts +2 -2
- package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { EventEmitter, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { SelectionPopupState, SelectionState } from '../../constants/report-case.constants';
|
|
3
3
|
import { report } from '../case-type-slider/case-type.component';
|
|
4
4
|
import { ReportACaseService } from '../../services/report-a-case.service';
|
|
5
5
|
import { EditorConfig } from '@vcomply/editor';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CaseCategoryComponent {
|
|
7
|
+
export declare class CaseCategoryComponent implements OnInit {
|
|
8
8
|
private caseService;
|
|
9
9
|
ASSETS: {
|
|
10
10
|
responsibility_center: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { EventEmitter } 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";
|
|
5
|
-
export declare class CaseOwnersComponent {
|
|
5
|
+
export declare class CaseOwnersComponent implements OnInit {
|
|
6
6
|
private reportACaseService;
|
|
7
7
|
ASSETS: {
|
|
8
8
|
responsibility_center: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { report } from '../components/case-type-slider/case-type.component';
|
|
3
3
|
import { ReportACaseService } from '../services/report-a-case.service';
|
|
4
4
|
import { UiKitService } from '../../workflow-services/ui-kit.service';
|
|
@@ -6,7 +6,7 @@ import { OrganizationUserService } from '../../workflow-services/organization-us
|
|
|
6
6
|
import { ResponsibilityService } from '../../workflow-services/responsibility.service';
|
|
7
7
|
import { ReportCasePermissionService } from '../../services/report-case-permission.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class WorkflowCaseComponent {
|
|
9
|
+
export declare class WorkflowCaseComponent implements OnInit, OnDestroy {
|
|
10
10
|
private reportACaseService;
|
|
11
11
|
private uiKitService;
|
|
12
12
|
private organizationUserService;
|
|
@@ -335,11 +335,13 @@ export declare class WorkflowCaseComponent {
|
|
|
335
335
|
userListEmitter: EventEmitter<any>;
|
|
336
336
|
disconnectRefresh: EventEmitter<any>;
|
|
337
337
|
constructor(reportACaseService: ReportACaseService, uiKitService: UiKitService, organizationUserService: OrganizationUserService, responsibilityService: ResponsibilityService, permissionService: ReportCasePermissionService);
|
|
338
|
+
ngOnDestroy(): void;
|
|
338
339
|
ngOnInit(): void;
|
|
339
340
|
permissionLoader(): void;
|
|
340
341
|
getUserList(): void;
|
|
341
342
|
getGroupList(): void;
|
|
342
343
|
getCaseDetails(): void;
|
|
344
|
+
setCaseDetails(res: any): void;
|
|
343
345
|
getWorkflowDetails(data: any): void;
|
|
344
346
|
populateReportCasePayload(data: any): void;
|
|
345
347
|
populateAddCasePayload(data: any): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.16",
|
|
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 "
|