vcomply-workflow-engine 6.1.12 → 6.1.14
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/log-an-issue/log-an-issue.component.mjs +1 -1
- package/esm2022/lib/report-a-case/components/linked-responsibilities/linked-responsibilities.component.mjs +4 -2
- package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +17 -11
- 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/link-responsibility/link-responsibility.component.mjs +13 -13
- 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 +113 -70
- 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 +2 -1
- 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
|
}
|
|
@@ -11,6 +11,7 @@ export declare class LinkResponsibilityListComponent implements OnInit {
|
|
|
11
11
|
respIdKey: string;
|
|
12
12
|
selectedResponsibilityValues: any;
|
|
13
13
|
radioSelection: boolean;
|
|
14
|
+
parentResponsibility: any;
|
|
14
15
|
closeButton: EventEmitter<any>;
|
|
15
16
|
selectedResponsibility: EventEmitter<any>;
|
|
16
17
|
AVATAR_CONSTANTS: {
|
|
@@ -107,5 +108,5 @@ export declare class LinkResponsibilityListComponent implements OnInit {
|
|
|
107
108
|
viewResponsibility(id: any): void;
|
|
108
109
|
createSeparateResponsibilities(responsibility: any): any[];
|
|
109
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkResponsibilityListComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkResponsibilityListComponent, "app-link-responsibility-list", never, { "onCompletionOfResponsibility": { "alias": "onCompletionOfResponsibility"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "respIdKey": { "alias": "respIdKey"; "required": false; }; "selectedResponsibilityValues": { "alias": "selectedResponsibilityValues"; "required": false; }; "radioSelection": { "alias": "radioSelection"; "required": false; }; }, { "closeButton": "closeButton"; "selectedResponsibility": "selectedResponsibility"; }, never, never, false, never>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkResponsibilityListComponent, "app-link-responsibility-list", never, { "onCompletionOfResponsibility": { "alias": "onCompletionOfResponsibility"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "respIdKey": { "alias": "respIdKey"; "required": false; }; "selectedResponsibilityValues": { "alias": "selectedResponsibilityValues"; "required": false; }; "radioSelection": { "alias": "radioSelection"; "required": false; }; "parentResponsibility": { "alias": "parentResponsibility"; "required": false; }; }, { "closeButton": "closeButton"; "selectedResponsibility": "selectedResponsibility"; }, never, never, false, never>;
|
|
111
112
|
}
|
|
@@ -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.14",
|
|
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 "
|