vcomply-workflow-engine 2.6.168 → 2.6.171

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 (19) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +121 -42
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.js +7 -7
  4. package/esm2015/lib/add-multiple-responsibility-container/add-multiple-responsibility-container.component.ngfactory.js +23 -13
  5. package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.js +91 -30
  6. package/esm2015/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.ngsummary.json +1 -1
  7. package/esm2015/lib/services/bulk-upload.service.js +2 -2
  8. package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.js +16 -5
  9. package/esm2015/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.ngfactory.js +3 -3
  10. package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.js +3 -2
  11. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +7 -2
  12. package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
  13. package/fesm2015/vcomply-workflow-engine.js +120 -42
  14. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  15. package/lib/add-multiple-responsibility-with-tab/add-multiple-responsibility-with-tab.component.d.ts +11 -0
  16. package/lib/sharedComponents/bulk-responsibility-view/bulk-responsibility-view.component.d.ts +1 -0
  17. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  18. package/package.json +1 -1
  19. package/vcomply-workflow-engine.metadata.json +1 -1
@@ -168,4 +168,15 @@ export declare class AddMultipleResponsibilityWithTabComponent implements OnInit
168
168
  * }
169
169
  */
170
170
  getProgramId(programName: string, chileProgram?: string): any;
171
+ /**
172
+ * It takes a string as an argument and returns a string.
173
+ * @param {any} item - this is the name of the group that is selected from the dropdown.
174
+ * it will return employee id in this form '1234,2345'.
175
+ */
176
+ getEmployeeIdFromGroup(item: any): any;
177
+ /**
178
+ * If the item is a group, return true, otherwise return false.
179
+ * @param {any} item - any - the item that is being checked
180
+ */
181
+ isGroupSelected(item: any): boolean;
171
182
  }
@@ -12,6 +12,7 @@ export declare class BulkResponsibilityViewComponent implements OnInit {
12
12
  responsibilityType: string;
13
13
  finalResponsibilities: number;
14
14
  isConfirmClickable: boolean;
15
+ responsibilityMultiTabBulkUpload: any;
15
16
  ngOnChanges(): void;
16
17
  ngOnInit(): void;
17
18
  submit(): void;
@@ -19,6 +19,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
19
19
  auth: AuthService;
20
20
  isHostRefreshActive: boolean;
21
21
  isRCSelected: boolean;
22
+ featureFlag_groups: boolean;
22
23
  unloadNotification($event: any): void;
23
24
  constructor(uiKitService: UiKitService, snackBar: SnackBarService, auth: AuthService);
24
25
  workflowType: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "2.6.168",
3
+ "version": "2.6.171",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x",
6
6
  "@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x || 16.x"