vcomply-workflow-engine 6.1.11 → 6.1.13
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/workflow-case/workflow-case.component.mjs +14 -10
- package/esm2022/lib/sharedComponents/floating-bar/floating-bar.component.mjs +5 -4
- package/esm2022/lib/sharedComponents/floating-bar/floating-bar.module.mjs +6 -5
- package/esm2022/lib/sharedComponents/frequency/frequency.service.mjs +2 -2
- package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.component.mjs +39 -17
- package/esm2022/lib/sharedComponents/link-responsibility/link-responsibility.interface.mjs +1 -1
- package/esm2022/lib/sharedComponents/pipes/parentResponsibilitySelection.pipe.mjs +2 -2
- package/esm2022/lib/workflow/shared/components/grc-responsibility-listing/grc-responsibility-listing.component.mjs +5 -4
- package/esm2022/lib/workflow/shared/workflow-pipes/get-user-details.pipe.mjs +2 -2
- package/esm2022/lib/workflow/shared/workflow-pipes/user-short-name.pipe.mjs +33 -0
- package/esm2022/lib/workflow/shared/workflow-pipes/workflow-pipes.module.mjs +13 -8
- package/fesm2022/vcomply-workflow-engine.mjs +134 -73
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/sharedComponents/floating-bar/floating-bar.module.d.ts +4 -3
- package/lib/sharedComponents/link-responsibility/link-responsibility.component.d.ts +3 -0
- package/lib/sharedComponents/link-responsibility/link-responsibility.interface.d.ts +2 -0
- package/lib/workflow/shared/workflow-pipes/user-short-name.pipe.d.ts +7 -0
- package/lib/workflow/shared/workflow-pipes/workflow-pipes.module.d.ts +6 -5
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./floating-bar.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../../
|
|
5
|
-
import * as i4 from "../../
|
|
4
|
+
import * as i3 from "../../pipes/pipes.module";
|
|
5
|
+
import * as i4 from "../../ui-kit/popover/popover.module";
|
|
6
|
+
import * as i5 from "../../ui-kit/tooltip/tooltip.module";
|
|
6
7
|
export declare class FloatingBarModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FloatingBarModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FloatingBarModule, [typeof i1.FloatingBarComponent], [typeof i2.CommonModule, typeof i3.
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FloatingBarModule, [typeof i1.FloatingBarComponent], [typeof i2.CommonModule, typeof i3.PipesModule, typeof i4.PopoverModule, typeof i5.TooltipModule], [typeof i1.FloatingBarComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<FloatingBarModule>;
|
|
10
11
|
}
|
|
@@ -89,6 +89,7 @@ export declare class LinkResponsibilityListComponent implements OnInit {
|
|
|
89
89
|
save(event: any): void;
|
|
90
90
|
filterUniqueResponsibilityValues(): void;
|
|
91
91
|
insertUniqueResponsibility(result: Responsibility, item: any): void;
|
|
92
|
+
getBridgeIds(result: any): void;
|
|
92
93
|
onClickTabChange(tab: any): void;
|
|
93
94
|
search(): void;
|
|
94
95
|
setResponsibilitiesCount(): void;
|
|
@@ -100,6 +101,8 @@ export declare class LinkResponsibilityListComponent implements OnInit {
|
|
|
100
101
|
assigneeId: any;
|
|
101
102
|
responsibilityCenter: any;
|
|
102
103
|
reportName: any;
|
|
104
|
+
assigneeBridgeId: never[];
|
|
105
|
+
responsibilityCenterBridgeId: never[];
|
|
103
106
|
};
|
|
104
107
|
viewResponsibility(id: any): void;
|
|
105
108
|
createSeparateResponsibilities(responsibility: any): any[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GetUserShortNamePipe implements PipeTransform {
|
|
4
|
+
transform(fullName: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetUserShortNamePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetUserShortNamePipe, "userShortName", false>;
|
|
7
|
+
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./get-selected-value.pipe";
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "
|
|
3
|
+
import * as i2 from "./get-user-details.pipe";
|
|
4
|
+
import * as i3 from "./user-short-name.pipe";
|
|
5
|
+
import * as i4 from "./is-attributes-valid.pipe";
|
|
6
|
+
import * as i5 from "./unique-responsibilities.pipe";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
7
8
|
export declare class WorkflowPipesModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPipesModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowPipesModule, [typeof i1.GetSelectedValuePipe, typeof i2.
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowPipesModule, [typeof i1.GetSelectedValuePipe, typeof i2.GetUserDetailsPipe, typeof i3.GetUserShortNamePipe, typeof i4.IsAttributesValidPipe, typeof i5.UniqueResponsibilitiesPipe], [typeof i6.CommonModule], [typeof i1.GetSelectedValuePipe, typeof i2.GetUserDetailsPipe, typeof i3.GetUserShortNamePipe, typeof i4.IsAttributesValidPipe, typeof i5.UniqueResponsibilitiesPipe]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<WorkflowPipesModule>;
|
|
11
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.13",
|
|
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 "
|