vcomply-workflow-engine 4.0.0 → 4.0.1

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 (46) hide show
  1. package/esm2022/lib/constants/template.constant.mjs +6 -0
  2. package/esm2022/lib/link-related-policies/link-related-policies.component.mjs +20 -7
  3. package/esm2022/lib/more-option/more-option.component.mjs +2 -2
  4. package/esm2022/lib/services/auth.service.mjs +172 -0
  5. package/esm2022/lib/sharedComponents/document-section/document-section.component.mjs +58 -24
  6. package/esm2022/lib/sharedComponents/policy-template/constants/template.constant.mjs +3 -0
  7. package/esm2022/lib/sharedComponents/policy-template/policy-template.module.mjs +65 -0
  8. package/esm2022/lib/sharedComponents/policy-template/select-template-list/select-template-list.component.mjs +208 -0
  9. package/esm2022/lib/sharedComponents/policy-template/services/template.service.mjs +67 -0
  10. package/esm2022/lib/sharedComponents/policy-template/template-list-table/template-list-table.component.mjs +42 -0
  11. package/esm2022/lib/sharedComponents/policy-template/template-pipes/get-template-category.pipe.mjs +19 -0
  12. package/esm2022/lib/sharedComponents/policy-template/template-pipes/search-template.pipe.mjs +59 -0
  13. package/esm2022/lib/sharedComponents/policy-template/template-pipes/template-pipes.module.mjs +19 -0
  14. package/esm2022/lib/sharedComponents/policy-template/view-policy/view-policy/view-policy.component.mjs +93 -0
  15. package/esm2022/lib/sharedComponents/policy-template/view-policy/view-policy.module.mjs +19 -0
  16. package/esm2022/lib/ui-kit/multi-select/cs-multiselect/cs-multiselect.component.mjs +203 -0
  17. package/esm2022/lib/ui-kit/multi-select/cs-multiselect-option/cs-multiselect-option.component.mjs +31 -0
  18. package/esm2022/lib/ui-kit/multi-select/multi-select.module.mjs +37 -0
  19. package/esm2022/lib/ui-kit/multi-select/multi-select.service.mjs +16 -0
  20. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +6 -3
  21. package/esm2022/lib/workflow-engine.module.mjs +11 -3
  22. package/esm2022/lib/workflow-policy/workflow-policy.component.mjs +60 -20
  23. package/fesm2022/vcomply-workflow-engine.mjs +939 -41
  24. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  25. package/lib/constants/template.constant.d.ts +5 -0
  26. package/lib/link-related-policies/link-related-policies.component.d.ts +5 -2
  27. package/lib/services/auth.service.d.ts +39 -0
  28. package/lib/sharedComponents/document-section/document-section.component.d.ts +5 -1
  29. package/lib/sharedComponents/policy-template/constants/template.constant.d.ts +2 -0
  30. package/lib/sharedComponents/policy-template/policy-template.module.d.ts +20 -0
  31. package/lib/sharedComponents/policy-template/select-template-list/select-template-list.component.d.ts +49 -0
  32. package/lib/sharedComponents/policy-template/services/template.service.d.ts +19 -0
  33. package/lib/sharedComponents/policy-template/template-list-table/template-list-table.component.d.ts +14 -0
  34. package/lib/sharedComponents/policy-template/template-pipes/get-template-category.pipe.d.ts +7 -0
  35. package/lib/sharedComponents/policy-template/template-pipes/search-template.pipe.d.ts +37 -0
  36. package/lib/sharedComponents/policy-template/template-pipes/template-pipes.module.d.ts +9 -0
  37. package/lib/sharedComponents/policy-template/view-policy/view-policy/view-policy.component.d.ts +25 -0
  38. package/lib/sharedComponents/policy-template/view-policy/view-policy.module.d.ts +9 -0
  39. package/lib/ui-kit/multi-select/cs-multiselect/cs-multiselect.component.d.ts +69 -0
  40. package/lib/ui-kit/multi-select/cs-multiselect-option/cs-multiselect-option.component.d.ts +12 -0
  41. package/lib/ui-kit/multi-select/multi-select.module.d.ts +11 -0
  42. package/lib/ui-kit/multi-select/multi-select.service.d.ts +7 -0
  43. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +2 -1
  44. package/lib/workflow-engine.module.d.ts +3 -1
  45. package/lib/workflow-policy/workflow-policy.component.d.ts +7 -1
  46. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ export declare const APIs: {
2
+ fetchTemplates: string;
3
+ default_categories: string;
4
+ fetch_content: string;
5
+ };
@@ -18,9 +18,11 @@ export declare class LinkRelatedPoliciesComponent implements OnInit {
18
18
  loader: boolean;
19
19
  recentPage: number;
20
20
  policiesList: policyList;
21
+ selectedPolicies: Array<any>;
22
+ mode: string;
23
+ policyId: string;
21
24
  closeLinkPolicyList: EventEmitter<any>;
22
25
  selectedList: EventEmitter<any>;
23
- selectedPolicies: Array<any>;
24
26
  constructor(policyService: PolicyService);
25
27
  ngOnInit(): void;
26
28
  goBack(): void;
@@ -38,8 +40,9 @@ export declare class LinkRelatedPoliciesComponent implements OnInit {
38
40
  };
39
41
  getPolicies(data?: any): void;
40
42
  selectPolicy(event: any, data: any): void;
43
+ filterPolicies(policiesList: Array<any>): any[];
41
44
  saveChanges(): void;
42
45
  deleteItem(event: any): void;
43
46
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkRelatedPoliciesComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkRelatedPoliciesComponent, "app-link-related-policies", never, { "selectedPolicies": { "alias": "selectedPolicies"; "required": false; }; }, { "closeLinkPolicyList": "closeLinkPolicyList"; "selectedList": "selectedList"; }, never, never, false, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkRelatedPoliciesComponent, "app-link-related-policies", never, { "selectedPolicies": { "alias": "selectedPolicies"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; }, { "closeLinkPolicyList": "closeLinkPolicyList"; "selectedList": "selectedList"; }, never, never, false, never>;
45
48
  }
@@ -0,0 +1,39 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { BehaviorSubject, Observable } from 'rxjs';
3
+ import { AuthorizerService } from '@vcomply/authorizer';
4
+ import { Configurations } from '../configurations';
5
+ import { OrganizationCommonService } from '../workflow-services/common-workflow-services/organization-common.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class AuthService {
8
+ private http;
9
+ private authorizer;
10
+ private organizationCommonService;
11
+ subscriptionDetails: BehaviorSubject<any[]>;
12
+ userDetails: BehaviorSubject<any>;
13
+ env: any;
14
+ permissions: any;
15
+ roleBasedPermission: any;
16
+ constructor(http: HttpClient, authorizer: AuthorizerService, organizationCommonService: OrganizationCommonService, config?: Configurations);
17
+ setPermission(): void;
18
+ /**
19
+ * Returns weather the user data loaded or not
20
+ * @returns
21
+ */
22
+ startApp(): Promise<unknown>;
23
+ /**
24
+ * Gets user details
25
+ * @returns
26
+ */
27
+ getUser(): Observable<void>;
28
+ getSubscriptionDetails(): import("rxjs").Subscription;
29
+ getUserRole(): 'KEY_ADMIN' | 'ADMIN' | 'MANAGER' | 'EXECUTIVE';
30
+ logout(): void;
31
+ convertUtcToLocalDateTime(timestamp: string | number): string;
32
+ getNotificationDetails(): Observable<number>;
33
+ userId(): number | "";
34
+ getBussinessCycle(): Observable<Object>;
35
+ getOrgId(): number | null;
36
+ resetBusinessCycle(): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [null, null, null, { optional: true; }]>;
38
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
39
+ }
@@ -23,8 +23,11 @@ export declare class DocumentSectionComponent implements OnInit {
23
23
  organization_id: any;
24
24
  member_obj_id: any;
25
25
  userInfo: any;
26
+ templateUrl: string;
27
+ isTemplateOpened: boolean;
26
28
  disconnectRefresh: EventEmitter<any>;
27
29
  editPolicy: EventEmitter<any>;
30
+ openTemplate: EventEmitter<any>;
28
31
  baseURL: string;
29
32
  docxError: {
30
33
  visible: boolean;
@@ -41,6 +44,7 @@ export declare class DocumentSectionComponent implements OnInit {
41
44
  changeDocType(event: any): void;
42
45
  editor(event: string): void;
43
46
  editPolicyEmit(): void;
47
+ openTemplateList(): void;
44
48
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentSectionComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSectionComponent, "lib-document-section", never, { "policyId": { "alias": "policyId"; "required": false; }; "policyName": { "alias": "policyName"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "member_obj_id": { "alias": "member_obj_id"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; }, { "disconnectRefresh": "disconnectRefresh"; "editPolicy": "editPolicy"; }, never, never, false, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSectionComponent, "lib-document-section", never, { "policyId": { "alias": "policyId"; "required": false; }; "policyName": { "alias": "policyName"; "required": false; }; "organization_id": { "alias": "organization_id"; "required": false; }; "member_obj_id": { "alias": "member_obj_id"; "required": false; }; "userInfo": { "alias": "userInfo"; "required": false; }; "templateUrl": { "alias": "templateUrl"; "required": false; }; "isTemplateOpened": { "alias": "isTemplateOpened"; "required": false; }; }, { "disconnectRefresh": "disconnectRefresh"; "editPolicy": "editPolicy"; "openTemplate": "openTemplate"; }, never, never, false, never>;
46
50
  }
@@ -0,0 +1,2 @@
1
+ export declare const NO_DATA_FOUND_IMAGE = "https://cdn.v-comply.com/libraries/workflow-engine/assets/workflow/search-data.svg";
2
+ export declare const NO_DATA_FOUND_MESSAGE = "No results matched your search criteria.";
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./template-list-table/template-list-table.component";
3
+ import * as i2 from "./select-template-list/select-template-list.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../../ui-kit/tooltip/tooltip.module";
6
+ import * as i5 from "../../ui-kit/popover/popover.module";
7
+ import * as i6 from "../no-data/no-data.module";
8
+ import * as i7 from "../v-loader/v-loader.module";
9
+ import * as i8 from "../../ui-kit/multi-select/multi-select.module";
10
+ import * as i9 from "../floating-bar/floating-bar.module";
11
+ import * as i10 from "./template-pipes/template-pipes.module";
12
+ import * as i11 from "@angular/forms";
13
+ import * as i12 from "../../pipes/pipes.module";
14
+ import * as i13 from "../../formgroup/formgroup.module";
15
+ import * as i14 from "./view-policy/view-policy.module";
16
+ export declare class PolicyTemplateModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<PolicyTemplateModule, never>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PolicyTemplateModule, [typeof i1.TemplateListTableComponent, typeof i2.SelectTemplateListComponent], [typeof i3.CommonModule, typeof i4.TooltipModule, typeof i5.PopoverModule, typeof i6.NoDataModule, typeof i7.VLoaderModule, typeof i8.MultiSelectModule, typeof i9.FloatingBarModule, typeof i10.TemplatePipesModule, typeof i11.FormsModule, typeof i12.PipesModule, typeof i13.FormgroupModule, typeof i14.ViewPolicyModule], [typeof i1.TemplateListTableComponent, typeof i2.SelectTemplateListComponent]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<PolicyTemplateModule>;
20
+ }
@@ -0,0 +1,49 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { TemplateService } from '../services/template.service';
3
+ import { PolicyService } from '../../../workflow-services/policy.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SelectTemplateListComponent {
6
+ private templateService;
7
+ private policyService;
8
+ animation: boolean;
9
+ defaultTemplates: any[];
10
+ customTemplates: any[] | null;
11
+ templateList: any[];
12
+ currentTab: string;
13
+ loader: boolean;
14
+ categoryList: any[];
15
+ defaultCategoryList: any[];
16
+ userCreatedCategoryList: any[];
17
+ sortStatus: number;
18
+ searchCategory: string;
19
+ searchTemplate: string;
20
+ selectedCategory: any[];
21
+ NO_DATA_FOUND_IMAGE: string;
22
+ NO_DATA_FOUND_MESSAGE: string;
23
+ selectedTemplate: any[];
24
+ isPreview: boolean;
25
+ docData: any | null;
26
+ previewTemplate: any;
27
+ selectedCategoryId: number[];
28
+ onTemplateSelect: EventEmitter<any>;
29
+ constructor(templateService: TemplateService, policyService: PolicyService);
30
+ ngOnInit(): void;
31
+ setAnimation(): void;
32
+ switchTab(tab: string): void;
33
+ getCustomTemplates(): void;
34
+ mapCustomTemplate(): void;
35
+ getTemplate(): void;
36
+ mapDefaultTemplate(): void;
37
+ sortBy(key: string): void;
38
+ onSelectCategory(category: any, event: any): void;
39
+ onApplyFilter(event: any): void;
40
+ onSelectTemplate(template: any): void;
41
+ save(): void;
42
+ close(): void;
43
+ deleteEvent(): void;
44
+ onPreview(details: any): void;
45
+ onClosePreview(): void;
46
+ getPreviewData(templateId: any): void;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectTemplateListComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectTemplateListComponent, "app-select-template-list", never, { "selectedCategoryId": { "alias": "selectedCategoryId"; "required": false; }; }, { "onTemplateSelect": "onTemplateSelect"; }, never, never, false, never>;
49
+ }
@@ -0,0 +1,19 @@
1
+ import { HttpClient, HttpHeaders } from '@angular/common/http';
2
+ import { AuthorizerService } from '@vcomply/authorizer';
3
+ import { Configurations } from '../../../configurations';
4
+ import { Observable } from 'rxjs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TemplateService {
7
+ private http;
8
+ private authService;
9
+ env: any;
10
+ private tokenDetails;
11
+ constructor(http: HttpClient, authService: AuthorizerService, config?: Configurations);
12
+ sortByKey(array: any[], key: string, order?: number): any[];
13
+ get headerToken(): HttpHeaders;
14
+ fetchTemplates(payload: any): Observable<Object>;
15
+ fetchDefaultCategories(): Observable<any>;
16
+ getTemplateContent(id: string, type?: string): Observable<any>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateService, [null, null, { optional: true; }]>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<TemplateService>;
19
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TemplateListTableComponent {
4
+ selectedTemplate: any;
5
+ templateList: any[];
6
+ loader: boolean;
7
+ categoryList: any[];
8
+ onSort: EventEmitter<string>;
9
+ onSelectTemplate: EventEmitter<any>;
10
+ onPreview: EventEmitter<any>;
11
+ onSelect(template: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplateListTableComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TemplateListTableComponent, "app-template-list-table", never, { "selectedTemplate": { "alias": "selectedTemplate"; "required": false; }; "templateList": { "alias": "templateList"; "required": false; }; "loader": { "alias": "loader"; "required": false; }; "categoryList": { "alias": "categoryList"; "required": false; }; }, { "onSort": "onSort"; "onSelectTemplate": "onSelectTemplate"; "onPreview": "onPreview"; }, never, never, false, never>;
14
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class GetTemplateCategoryPipe implements PipeTransform {
4
+ transform(value: number[], list: any[]): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetTemplateCategoryPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetTemplateCategoryPipe, "getTemplateCategory", false>;
7
+ }
@@ -0,0 +1,37 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * @Pipe SearchByKeys
5
+ *
6
+ * A custom Angular pipe that filters an array of objects based on a search value and specified keys.
7
+ *
8
+ * @example
9
+ * <div *ngFor="let item of items | SearchByKeys: ['name', 'description']: searchValue">
10
+ * {{ item.name }}
11
+ * </div>
12
+ *
13
+ * @class
14
+ * @implements {PipeTransform}
15
+ */
16
+ /**
17
+ * Transforms an array of objects by filtering them based on the provided keys and search value.
18
+ *
19
+ * @param {any[]} items - The array of objects to be filtered.
20
+ * @param {string[]} keys - The keys of the objects to be searched.
21
+ * @param {string} value - The search value to filter the objects.
22
+ * @returns {any[]} - The filtered array of objects.
23
+ */
24
+ /**
25
+ * Searches within an object for a value.
26
+ *
27
+ * @private
28
+ * @param {any} obj - The object to search within.
29
+ * @param {string} value - The search value.
30
+ * @returns {boolean} - True if the value is found within the object, otherwise false.
31
+ */
32
+ export declare class SearchByKeysPipe implements PipeTransform {
33
+ transform(items: any[], keys: string[], value: string): any[];
34
+ private searchInObject;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchByKeysPipe, never>;
36
+ static ɵpipe: i0.ɵɵPipeDeclaration<SearchByKeysPipe, "SearchByKeys", false>;
37
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./get-template-category.pipe";
3
+ import * as i2 from "./search-template.pipe";
4
+ import * as i3 from "@angular/common";
5
+ export declare class TemplatePipesModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<TemplatePipesModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TemplatePipesModule, [typeof i1.GetTemplateCategoryPipe, typeof i2.SearchByKeysPipe], [typeof i3.CommonModule], [typeof i1.GetTemplateCategoryPipe, typeof i2.SearchByKeysPipe]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<TemplatePipesModule>;
9
+ }
@@ -0,0 +1,25 @@
1
+ import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { DocumentEditorContainerComponent, DocumentEditorSettingsModel } from '@syncfusion/ej2-angular-documenteditor';
3
+ import { Configurations } from '../../../../configurations';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ViewPolicyComponent implements OnInit, OnChanges {
6
+ resizeEditor: boolean;
7
+ serviceUrl: string;
8
+ settings: DocumentEditorSettingsModel;
9
+ isContentLoaded: boolean;
10
+ hasComments: boolean;
11
+ private readonly palette;
12
+ contents: any;
13
+ userName: string;
14
+ documentEditor: DocumentEditorContainerComponent;
15
+ constructor(config?: Configurations);
16
+ ngOnChanges(changes: SimpleChanges): void;
17
+ ngOnInit(): void;
18
+ private onCreating;
19
+ onCreated(): void;
20
+ configureEditor(): void;
21
+ checkComments(): void;
22
+ viewComment(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewPolicyComponent, [{ optional: true; }]>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewPolicyComponent, "app-view-policy", never, { "contents": { "alias": "contents"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; }, {}, never, never, false, never>;
25
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./view-policy/view-policy.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@syncfusion/ej2-angular-documenteditor";
5
+ export declare class ViewPolicyModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewPolicyModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ViewPolicyModule, [typeof i1.ViewPolicyComponent], [typeof i2.CommonModule, typeof i3.DocumentEditorContainerModule], [typeof i1.ViewPolicyComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ViewPolicyModule>;
9
+ }
@@ -0,0 +1,69 @@
1
+ import { ElementRef, EventEmitter, OnChanges, SimpleChanges, AfterViewInit } from '@angular/core';
2
+ import { MultiSelectService } from '../multi-select.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CsMultiselectComponent implements OnChanges, AfterViewInit {
5
+ multiSelectService: MultiSelectService;
6
+ isRequired: boolean;
7
+ dropdownLabel: string;
8
+ dropdownSubLabel: string;
9
+ disabled: boolean;
10
+ placeholder: string;
11
+ searchPlaceholder: string;
12
+ value: any;
13
+ selectedItem: any;
14
+ valueChange: EventEmitter<any[]>;
15
+ applyFilter: EventEmitter<any>;
16
+ searchText: EventEmitter<string>;
17
+ resetSelectedData: EventEmitter<any>;
18
+ dropdownOption: boolean;
19
+ positionReset: boolean;
20
+ getLeft: number;
21
+ getTop: number;
22
+ getWidth: number;
23
+ maxWidth: number;
24
+ activeDropdown: boolean;
25
+ items: any[];
26
+ previousItems: any[];
27
+ itemsDisplayedList: any[];
28
+ name: string;
29
+ filterApplied: boolean;
30
+ searchKey: any;
31
+ timer: any;
32
+ tempSelectedData: any;
33
+ private optionList;
34
+ set content(content: ElementRef);
35
+ constructor(multiSelectService: MultiSelectService);
36
+ /**
37
+ *
38
+ * @param index - Represents the index of the value to be removed
39
+ */
40
+ removeValue(index: number): void;
41
+ resetState(type?: any): void;
42
+ ngOnChanges(changes: SimpleChanges): void;
43
+ ngAfterViewInit(): void;
44
+ set CheckBoxVal(val: any[]);
45
+ search(event: any): void;
46
+ writeValue(value: any[]): void;
47
+ /**
48
+ *
49
+ * @param obj - Represents the object which is added to the value list
50
+ */
51
+ addValue(obj: {
52
+ key: string;
53
+ value: any;
54
+ }): void;
55
+ /**
56
+ *
57
+ * @param value - Represents the value to be removed from the value list
58
+ */
59
+ removeValueFromCheckbox(value: any): void;
60
+ openDropdown(event: any): void;
61
+ /**
62
+ *
63
+ * @param applyFilter - Determines whether filter is applied or not
64
+ */
65
+ closeDropdown(applyFilter: boolean): void;
66
+ checkChanges(): boolean;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<CsMultiselectComponent, never>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<CsMultiselectComponent, "cs-multi-select", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "dropdownLabel": { "alias": "dropdownLabel"; "required": false; }; "dropdownSubLabel": { "alias": "dropdownSubLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; }, { "valueChange": "valueChange"; "applyFilter": "applyFilter"; "searchText": "searchText"; "resetSelectedData": "resetSelectedData"; }, never, ["*"], false, never>;
69
+ }
@@ -0,0 +1,12 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { CsMultiselectComponent } from '../cs-multiselect/cs-multiselect.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CsMultiselectOptionComponent {
5
+ select: CsMultiselectComponent;
6
+ value: any;
7
+ option: ElementRef;
8
+ constructor(select: CsMultiselectComponent);
9
+ change(event: any): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<CsMultiselectOptionComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<CsMultiselectOptionComponent, "cs-multi-select-option", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cs-multiselect/cs-multiselect.component";
3
+ import * as i2 from "./cs-multiselect-option/cs-multiselect-option.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../popover/popover.module";
7
+ export declare class MultiSelectModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, [typeof i1.CsMultiselectComponent, typeof i2.CsMultiselectOptionComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.PopoverModule], [typeof i1.CsMultiselectComponent, typeof i2.CsMultiselectOptionComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectModule>;
11
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MultiSelectService {
3
+ constructor();
4
+ overflowHidden: boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectService, never>;
6
+ static ɵprov: i0.ɵɵInjectableDeclaration<MultiSelectService>;
7
+ }
@@ -68,6 +68,7 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
68
68
  grcType: 0 | 1 | 2 | 3;
69
69
  isSendForAttestation: boolean;
70
70
  assessmentDetails: any;
71
+ templateId: string;
71
72
  orgDetails: any;
72
73
  programSimplifyFlag: boolean;
73
74
  isResponsibilitySimplifyFlag: boolean;
@@ -142,5 +143,5 @@ export declare class WorkflowEngineContainerComponent implements OnInit, AfterVi
142
143
  onReviewerChange(event: string): void;
143
144
  isResponsibilitySimplify(): void;
144
145
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowEngineContainerComponent, never>;
145
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowEngineContainerComponent, "app-vcomply-workflow-engine-container", never, { "workflowType": { "alias": "workflowType"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "id": { "alias": "id"; "required": false; }; "openedFrom": { "alias": "openedFrom"; "required": false; }; "source": { "alias": "source"; "required": false; }; "allowedWorkflows": { "alias": "allowedWorkflows"; "required": false; }; "frameworkDetails": { "alias": "frameworkDetails"; "required": false; }; "selectedRC": { "alias": "selectedRC"; "required": false; }; "secondaryOpenPortal": { "alias": "secondaryOpenPortal"; "required": false; }; "defaultRiskType": { "alias": "defaultRiskType"; "required": false; }; "moveToRegisterMode": { "alias": "moveToRegisterMode"; "required": false; }; "reponsibilityData": { "alias": "reponsibilityData"; "required": false; }; "assessmentQuestion": { "alias": "assessmentQuestion"; "required": false; }; "pid": { "alias": "pid"; "required": false; }; "programType": { "alias": "programType"; "required": false; }; "issueData": { "alias": "issueData"; "required": false; }; "entrustButtonName": { "alias": "entrustButtonName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "selectedProgram": { "alias": "selectedProgram"; "required": false; }; "canFrameworkChange": { "alias": "canFrameworkChange"; "required": false; }; "addToProgramDetails": { "alias": "addToProgramDetails"; "required": false; }; "grcType": { "alias": "grcType"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; "assessmentDetails": { "alias": "assessmentDetails"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "closeWorkflow": "closeWorkflow"; }, never, never, false, never>;
146
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowEngineContainerComponent, "app-vcomply-workflow-engine-container", never, { "workflowType": { "alias": "workflowType"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "id": { "alias": "id"; "required": false; }; "openedFrom": { "alias": "openedFrom"; "required": false; }; "source": { "alias": "source"; "required": false; }; "allowedWorkflows": { "alias": "allowedWorkflows"; "required": false; }; "frameworkDetails": { "alias": "frameworkDetails"; "required": false; }; "selectedRC": { "alias": "selectedRC"; "required": false; }; "secondaryOpenPortal": { "alias": "secondaryOpenPortal"; "required": false; }; "defaultRiskType": { "alias": "defaultRiskType"; "required": false; }; "moveToRegisterMode": { "alias": "moveToRegisterMode"; "required": false; }; "reponsibilityData": { "alias": "reponsibilityData"; "required": false; }; "assessmentQuestion": { "alias": "assessmentQuestion"; "required": false; }; "pid": { "alias": "pid"; "required": false; }; "programType": { "alias": "programType"; "required": false; }; "issueData": { "alias": "issueData"; "required": false; }; "entrustButtonName": { "alias": "entrustButtonName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "selectedProgram": { "alias": "selectedProgram"; "required": false; }; "canFrameworkChange": { "alias": "canFrameworkChange"; "required": false; }; "addToProgramDetails": { "alias": "addToProgramDetails"; "required": false; }; "grcType": { "alias": "grcType"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; "assessmentDetails": { "alias": "assessmentDetails"; "required": false; }; "templateId": { "alias": "templateId"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "closeWorkflow": "closeWorkflow"; }, never, never, false, never>;
146
147
  }
@@ -133,9 +133,11 @@ import * as i129 from "./sharedComponents/group-users-list/group-users-list.comp
133
133
  import * as i130 from "./sharedComponents/list-loader/list-loader.module";
134
134
  import * as i131 from "./workflow/shared/components/grc-object-list/grc-object-list.component";
135
135
  import * as i132 from "./ui-kit/time-picker/time-picker.module";
136
+ import * as i133 from "./ui-kit/multi-select/multi-select.module";
137
+ import * as i134 from "./sharedComponents/policy-template/policy-template.module";
136
138
  export declare class VComplyWorkflowEngineModule {
137
139
  static forRoot(environmentConfig: Configurations): ModuleWithProviders<VComplyWorkflowEngineModule>;
138
140
  static ɵfac: i0.ɵɵFactoryDeclaration<VComplyWorkflowEngineModule, never>;
139
- static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.CheckboxListComponent, typeof i43.RadioListComponent, typeof i44.CreateDocumentsComponent, typeof i45.FrameworkListComponent, typeof i46.ParentTableComponent, typeof i47.CheckpointFloatingBarComponent, typeof i48.FormatAndEvidenceComponent, typeof i49.RiskClassificationComponent, typeof i50.DragDropDirective, typeof i51.AutofocusDirective, typeof i52.ScrollInViewDirective, typeof i53.spaceTrimDirective, typeof i54.ShortMergePipe, typeof i55.FormatHtmlPipe, typeof i56.WithinDataPipe, typeof i57.rcTreeToolTipPipe, typeof i58.ResponsibilityRiskSelectorComponent, typeof i59.ConditionalFocusDirective, typeof i60.ArrayFilterPipe, typeof i59.ConditionalFocusDirective, typeof i61.AuditCategoryListComponent, typeof i62.DocumentSectionComponent, typeof i62.DocumentSectionComponent, typeof i63.WorkflowAssessmentComponent, typeof i64.ImportAnAssessmentComponent, typeof i65.AssessmentListComponent, typeof i66.RadioListWithPaginationComponent, typeof i67.LinkTreatmentLoaderComponent, typeof i68.AssessmentListLoaderComponent, typeof i69.AssessmentListSubLoaderComponent, typeof i70.ProgramListingComponent, typeof i71.WorkflowProgramComponent, typeof i72.RolesListComponent, typeof i73.FrameworkListTableComponent, typeof i74.FrameworkResponsibilityTableComponent, typeof i75.FrameworkTableLoaderComponent, typeof i76.ArrayConcatPipe, typeof i77.SpaceTrimPipe, typeof i78.FrequencyDialogContainerComponent, typeof i79.FrequencyDialogWeeklyComponent, typeof i80.FrequencyDialogTopComponent, typeof i81.FrequencyDialogDueDateComponent, typeof i82.FrequencyDialogCheckboxListComponent, typeof i83.FrequencyDialogMonthlyComponent, typeof i84.FrequencyDialogQuarterlyComponent, typeof i85.FrequencyDialogRadioListComponent, typeof i86.FrequencyDialogBiannualComponent, typeof i87.FrequencyDialogAnnualComponent, typeof i88.FrequencyDialogOneTimeComponent, typeof i89.AddMultipleResponsibilityContainerComponent, typeof i90.AddMultipleResponsibilityWithTabComponent, typeof i91.FrequencyResponsibilityListComponent, typeof i92.ApprovalWorkflowComponent, typeof i93.SelectApproversComponent, typeof i94.PolicyAccessComponent, typeof i95.ApprovalWorkflowListComponent, typeof i96.ApprovalCreateFormComponent, typeof i97.LinkProgramComponent, typeof i98.TooltipValidationPipe, typeof i99.LinkResponsibilityListComponent, typeof i100.LinkRelatedPoliciesComponent], [typeof i101.ReactiveFormsModule, typeof i102.CreateAssessmentModule, typeof i103.VcomplyEditorModule, typeof i104.CommonModule, typeof i105.FormgroupModule, typeof i106.TooltipModule, typeof i107.PopoverModule, typeof i108.LineLoaderModule, typeof i101.FormsModule, typeof i109.SelectModule, typeof i110.NgxMaterialTimepickerModule, typeof i111.DpDatePickerModule, typeof i112.NoDataModule, typeof i113.VLoaderModule, typeof i114.SmileyDialogModule, typeof i115.SnackBarModule, typeof i116.HttpClientModule, typeof i117.SmileyDialogInlineModule, typeof i118.ClickOutsideModule, typeof i119.PopoverHoverModule, typeof i120.PaginationModule, typeof i102.CreateAssessmentModule, typeof i121.ActionDialogModule, typeof i122.AssessmentPreviewModule, typeof i123.CreateProgramUiModule, typeof i124.DirectiveModule, typeof i125.GrcObjectModule, typeof i126.RcListModule, typeof i127.PipesModule, typeof i128.FloatingBarModule, typeof i129.GroupUsersListComponent, typeof i130.ListLoaderModule, typeof i131.GrcObjectListComponent, typeof i132.TimePickerModule], [typeof i1.WorkflowEngineContainerComponent]>;
141
+ static ɵmod: i0.ɵɵNgModuleDeclaration<VComplyWorkflowEngineModule, [typeof i1.WorkflowEngineContainerComponent, typeof i2.WorkflowRiskComponent, typeof i3.WorkflowComplianceComponent, typeof i4.WorkflowPolicyComponent, typeof i5.MoreOptionComponent, typeof i6.OwnerListComponent, typeof i7.UserRadioListComponent, typeof i8.CategoryListComponent, typeof i9.CategoryMultiSelectComponent, typeof i10.WorkflowPaginationComponent, typeof i11.AddMultipleRiskComponent, typeof i12.BulkViewComponent, typeof i13.CheckpointsComponent, typeof i14.ConfirmationAlertComponent, typeof i15.CheckpointsQuestionsComponent, typeof i16.CheckpointsListComponent, typeof i17.ReviewFrequencyComponent, typeof i18.FrequencyContainerComponent, typeof i19.FrequencyDailyComponent, typeof i20.FrequencyWeeklyComponent, typeof i21.FrequencyMonthlyComponent, typeof i22.FrequencyQuarterlyComponent, typeof i23.FrequencyBiannualComponent, typeof i24.FrequencyAnnualComponent, typeof i25.FrequencyOneTimeComponent, typeof i26.FrequencyRandomComponent, typeof i27.FrequencyOnCompletionOfComponent, typeof i28.FrequencyOngoingComponent, typeof i29.FrequencyTopComponent, typeof i30.FrequencyLifecycleComponent, typeof i31.FrequencyDueDateComponent, typeof i32.FrequencyCheckboxListComponent, typeof i33.FrequencyRadioListComponent, typeof i34.AddMultipleResponsibilityComponent, typeof i35.BulkResponsibilityViewComponent, typeof i36.CheckpointsPolicyContainerComponent, typeof i37.CheckpointsPolicyListComponent, typeof i38.CheckpointsPolicyQuestionsComponent, typeof i39.WorkflowSurveyFormComponent, typeof i40.LogAnIssueComponent, typeof i41.FilterPipe, typeof i42.CheckboxListComponent, typeof i43.RadioListComponent, typeof i44.CreateDocumentsComponent, typeof i45.FrameworkListComponent, typeof i46.ParentTableComponent, typeof i47.CheckpointFloatingBarComponent, typeof i48.FormatAndEvidenceComponent, typeof i49.RiskClassificationComponent, typeof i50.DragDropDirective, typeof i51.AutofocusDirective, typeof i52.ScrollInViewDirective, typeof i53.spaceTrimDirective, typeof i54.ShortMergePipe, typeof i55.FormatHtmlPipe, typeof i56.WithinDataPipe, typeof i57.rcTreeToolTipPipe, typeof i58.ResponsibilityRiskSelectorComponent, typeof i59.ConditionalFocusDirective, typeof i60.ArrayFilterPipe, typeof i59.ConditionalFocusDirective, typeof i61.AuditCategoryListComponent, typeof i62.DocumentSectionComponent, typeof i62.DocumentSectionComponent, typeof i63.WorkflowAssessmentComponent, typeof i64.ImportAnAssessmentComponent, typeof i65.AssessmentListComponent, typeof i66.RadioListWithPaginationComponent, typeof i67.LinkTreatmentLoaderComponent, typeof i68.AssessmentListLoaderComponent, typeof i69.AssessmentListSubLoaderComponent, typeof i70.ProgramListingComponent, typeof i71.WorkflowProgramComponent, typeof i72.RolesListComponent, typeof i73.FrameworkListTableComponent, typeof i74.FrameworkResponsibilityTableComponent, typeof i75.FrameworkTableLoaderComponent, typeof i76.ArrayConcatPipe, typeof i77.SpaceTrimPipe, typeof i78.FrequencyDialogContainerComponent, typeof i79.FrequencyDialogWeeklyComponent, typeof i80.FrequencyDialogTopComponent, typeof i81.FrequencyDialogDueDateComponent, typeof i82.FrequencyDialogCheckboxListComponent, typeof i83.FrequencyDialogMonthlyComponent, typeof i84.FrequencyDialogQuarterlyComponent, typeof i85.FrequencyDialogRadioListComponent, typeof i86.FrequencyDialogBiannualComponent, typeof i87.FrequencyDialogAnnualComponent, typeof i88.FrequencyDialogOneTimeComponent, typeof i89.AddMultipleResponsibilityContainerComponent, typeof i90.AddMultipleResponsibilityWithTabComponent, typeof i91.FrequencyResponsibilityListComponent, typeof i92.ApprovalWorkflowComponent, typeof i93.SelectApproversComponent, typeof i94.PolicyAccessComponent, typeof i95.ApprovalWorkflowListComponent, typeof i96.ApprovalCreateFormComponent, typeof i97.LinkProgramComponent, typeof i98.TooltipValidationPipe, typeof i99.LinkResponsibilityListComponent, typeof i100.LinkRelatedPoliciesComponent], [typeof i101.ReactiveFormsModule, typeof i102.CreateAssessmentModule, typeof i103.VcomplyEditorModule, typeof i104.CommonModule, typeof i105.FormgroupModule, typeof i106.TooltipModule, typeof i107.PopoverModule, typeof i108.LineLoaderModule, typeof i101.FormsModule, typeof i109.SelectModule, typeof i110.NgxMaterialTimepickerModule, typeof i111.DpDatePickerModule, typeof i112.NoDataModule, typeof i113.VLoaderModule, typeof i114.SmileyDialogModule, typeof i115.SnackBarModule, typeof i116.HttpClientModule, typeof i117.SmileyDialogInlineModule, typeof i118.ClickOutsideModule, typeof i119.PopoverHoverModule, typeof i120.PaginationModule, typeof i102.CreateAssessmentModule, typeof i121.ActionDialogModule, typeof i122.AssessmentPreviewModule, typeof i123.CreateProgramUiModule, typeof i124.DirectiveModule, typeof i125.GrcObjectModule, typeof i126.RcListModule, typeof i127.PipesModule, typeof i128.FloatingBarModule, typeof i129.GroupUsersListComponent, typeof i130.ListLoaderModule, typeof i131.GrcObjectListComponent, typeof i132.TimePickerModule, typeof i133.MultiSelectModule, typeof i134.PolicyTemplateModule], [typeof i1.WorkflowEngineContainerComponent]>;
140
142
  static ɵinj: i0.ɵɵInjectorDeclaration<VComplyWorkflowEngineModule>;
141
143
  }
@@ -46,6 +46,7 @@ export declare class WorkflowPolicyComponent implements OnInit {
46
46
  convertFileData: any;
47
47
  selectedCategory: string;
48
48
  isSendForAttestation: boolean;
49
+ templateId: string;
49
50
  formatEvidence: FormatAndEvidenceComponent;
50
51
  datePickerPopUp: ElementRef;
51
52
  description: EditorConfig;
@@ -165,6 +166,8 @@ export declare class WorkflowPolicyComponent implements OnInit {
165
166
  createApprovalClick: boolean;
166
167
  editWorkflowLevel: {};
167
168
  noWorkflowSelected: boolean;
169
+ templateView: boolean;
170
+ templateUrl: string;
168
171
  constructor(policyService: PolicyService, snackBar: SnackBarService, uiKitService: UiKitService, authService: AuthService, responsibilityService: ResponsibilityService, router: Router, route: ActivatedRoute, frequencyService: FrequencyService, platformLocation: PlatformLocation, changeRef: ChangeDetectorRef, restApiService: RestApiService, commonService: CommonService, organizationUserService: OrganizationUserService, organizationCommonService: OrganizationCommonService, complianceCommonService: ComplianceCommonService);
169
172
  policyForm: PolicyForm;
170
173
  ngOnInit(): void;
@@ -348,6 +351,9 @@ export declare class WorkflowPolicyComponent implements OnInit {
348
351
  resetPolicyAccessDetails(): void;
349
352
  removeFrequency(): void;
350
353
  documentClick(event: any): void;
354
+ onTemplateSelect(event: any, isPreselected?: boolean): void;
355
+ setNavigationUrl(): void;
356
+ navigateToTemplate(): void;
351
357
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowPolicyComponent, never>;
352
- static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": { "alias": "mode"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false, never>;
358
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowPolicyComponent, "app-workflow-policy", never, { "mode": { "alias": "mode"; "required": false; }; "policyId": { "alias": "policyId"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; "convertFileData": { "alias": "convertFileData"; "required": false; }; "selectedCategory": { "alias": "selectedCategory"; "required": false; }; "isSendForAttestation": { "alias": "isSendForAttestation"; "required": false; }; "templateId": { "alias": "templateId"; "required": false; }; }, { "pickerChanged": "pickerChanged"; "showConfirmationAlert": "showConfirmationAlert"; "populateOption": "populateOption"; "disconnectRefresh": "disconnectRefresh"; "shiftToEditMode": "shiftToEditMode"; }, never, never, false, never>;
353
359
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vcomply-workflow-engine",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
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 "