vcomply-workflow-engine 6.5.3 → 6.5.5
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/sharedComponents/floating-bar/floating-bar.component.mjs +14 -3
- package/esm2022/lib/sharedComponents/responsibility-centers-list/responsibility-centers-list.component.mjs +7 -3
- package/esm2022/lib/workflow-compliance/workflow-compliance.component.mjs +73 -21
- package/fesm2022/vcomply-workflow-engine.mjs +91 -24
- package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
- package/lib/sharedComponents/floating-bar/floating-bar.component.d.ts +3 -0
- package/lib/workflow-compliance/workflow-compliance.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -30,6 +30,9 @@ export declare class FloatingBarComponent implements OnInit, OnChanges {
|
|
|
30
30
|
workflowTypeChanged: EventEmitter<any>;
|
|
31
31
|
constructor();
|
|
32
32
|
ngOnChanges(): void;
|
|
33
|
+
getDisplayValue(element: any): any;
|
|
34
|
+
isArray(value: any): boolean;
|
|
35
|
+
logRenderedValue(value: any): any;
|
|
33
36
|
ngOnInit(): void;
|
|
34
37
|
next(): void;
|
|
35
38
|
deleteSelected(index: number): void;
|
|
@@ -343,7 +343,7 @@ export declare class WorkflowComplianceComponent implements OnInit {
|
|
|
343
343
|
* If the responsibility name is empty, or the frequency is empty, or the assignees list is empty,
|
|
344
344
|
* then return false. Otherwise, return true.
|
|
345
345
|
*/
|
|
346
|
-
validateResponsibility(): boolean
|
|
346
|
+
validateResponsibility(): boolean;
|
|
347
347
|
entrustResponsibility(entrustForm: any): void;
|
|
348
348
|
uniqueIdUserGroups(totalUserList: any, selectedGroup: any, selectedUsers: any): any[];
|
|
349
349
|
combineUserAndUserGroupMembers(isGroup?: any): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vcomply-workflow-engine",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.5",
|
|
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 "
|