vcomply-workflow-engine 2.6.180 → 2.6.182

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.
@@ -6621,7 +6621,7 @@ class WorkflowPolicyComponent {
6621
6621
  }
6622
6622
  }
6623
6623
  populatePolicyForm(data, categoryIds) {
6624
- var _a, _b, _c, _e, _f, _g;
6624
+ var _a, _b, _c, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
6625
6625
  const reviewerFiles = data.ReviewerAttachments.map((file) => {
6626
6626
  file.filename = file.name;
6627
6627
  file.filepath = file.file_path;
@@ -6676,10 +6676,10 @@ class WorkflowPolicyComponent {
6676
6676
  this.policyForm.addResponsibilityCenters = this.policyForm.selectedRCs.length > 0 ? true : false;
6677
6677
  this.policyForm.addReviewers = (data.ReviewerMemberId) ? true : false;
6678
6678
  this.policyForm.addCheckpoints = (this.policyForm.checkpointDetails.length > 0) ? true : false;
6679
- this.policyForm.addOverseers = (this.policyForm.CCFailEmail.length > 0 || this.policyForm.CCEmail.length > 0) ? true : false;
6679
+ this.policyForm.addOverseers = (((_g = (_f = this.policyForm) === null || _f === void 0 ? void 0 : _f.CCFailEmail) === null || _g === void 0 ? void 0 : _g.length) > 0 || ((_j = (_h = this.policyForm) === null || _h === void 0 ? void 0 : _h.CCEmail) === null || _j === void 0 ? void 0 : _j.length) > 0 || ((_l = (_k = this.policyForm) === null || _k === void 0 ? void 0 : _k.CCFailEmailGroup) === null || _l === void 0 ? void 0 : _l.length) > 0 || ((_o = (_m = this.policyForm) === null || _m === void 0 ? void 0 : _m.CCGroupEmail) === null || _o === void 0 ? void 0 : _o.length) > 0) ? true : false;
6680
6680
  this.policyForm.addAssociatedDocuments = data.associated_documents.length > 0 ? true : false;
6681
- this.ccEmailObjIds = (((_f = data === null || data === void 0 ? void 0 : data.cc_usergroup_ids) === null || _f === void 0 ? void 0 : _f.length) > 0) ? data === null || data === void 0 ? void 0 : data.cc_usergroup_ids : [];
6682
- this.ccFailGroupObjIds = (((_g = data === null || data === void 0 ? void 0 : data.cc_fail_usergroup_ids) === null || _g === void 0 ? void 0 : _g.length) > 0) ? data === null || data === void 0 ? void 0 : data.cc_fail_usergroup_ids : [];
6681
+ this.ccEmailObjIds = (((_p = data === null || data === void 0 ? void 0 : data.cc_usergroup_ids) === null || _p === void 0 ? void 0 : _p.length) > 0) ? data === null || data === void 0 ? void 0 : data.cc_usergroup_ids : [];
6682
+ this.ccFailGroupObjIds = (((_q = data === null || data === void 0 ? void 0 : data.cc_fail_usergroup_ids) === null || _q === void 0 ? void 0 : _q.length) > 0) ? data === null || data === void 0 ? void 0 : data.cc_fail_usergroup_ids : [];
6683
6683
  this.populateOptionalFields();
6684
6684
  // this.checkForCreateDocuments();
6685
6685
  this.loader = false;
@@ -14581,7 +14581,7 @@ LogAnIssueComponent.propDecorators = {
14581
14581
  datePicker: [{ type: ViewChild, args: ['datePicker',] }]
14582
14582
  };
14583
14583
 
14584
- class FilterPipe {
14584
+ class FilterPipe$1 {
14585
14585
  transform(items, searchText) {
14586
14586
  if (!items) {
14587
14587
  return [];
@@ -14600,7 +14600,7 @@ class FilterPipe {
14600
14600
  }
14601
14601
  }
14602
14602
  }
14603
- FilterPipe.decorators = [
14603
+ FilterPipe$1.decorators = [
14604
14604
  { type: Pipe, args: [{
14605
14605
  name: 'filter',
14606
14606
  },] }
@@ -27333,7 +27333,7 @@ class UserGroupListComponent {
27333
27333
  UserGroupListComponent.decorators = [
27334
27334
  { type: Component, args: [{
27335
27335
  selector: 'user-group-list',
27336
- template: "<div class=\"user-group-list\" [class.animate]=\"animation\">\r\n <div class=\"user-group-list-head\">\r\n <h3 class=\"user-group-list-title\">{{panelTitle}}</h3>\r\n </div>\r\n <div class=\"user-group-list-body\">\r\n <app-loader-inline *ngIf=\"loading\"></app-loader-inline>\r\n <div class=\"search-block vx-mb-2\">\r\n <i class=\"icons\">&#xe90b;</i>\r\n <input *ngIf=\"!featureflag\" [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search Group'}}\" />\r\n <input *ngIf=\"featureflag\" [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search User Group'}}\" />\r\n </div>\r\n\r\n <div class=\"user-group-list-tab vx-d-flex vx-align-center vx-mb-2\" *ngIf=\"groupEnabled\">\r\n <button (click)=\"switchTab('USER')\" class=\"tab-btn vx-fs-11 vx-fw-600 vx-paragraph-txt vx-tt-uppercase vx-p-0 vx-pb-2 vx-m-0 vx-d-flex vx-align-center vx-lh-4\" [class.active]=\"currentTab === 'USER'\">USERS\r\n <span class=\"vx-pl-1 vx-pr-1 vx-d-flex vx-align-center vx-justify-center vx-ml-2 vx-lh-4\">{{userListInfo?.total_items || usersList?.length}}</span></button>\r\n <button (click)=\"switchTab('GROUP')\" class=\"tab-btn vx-fs-11 vx-fw-600 vx-paragraph-txt vx-tt-uppercase vx-p-0 vx-pb-2 vx-m-0 vx-d-flex vx-align-center vx-lh-4\" [class.active]=\"currentTab === 'GROUP'\">{{featureflag ? 'USER GROUPS':'GROUPS'}} <span class=\"vx-pl-1 vx-pr-1 vx-d-flex vx-align-center vx-justify-center vx-ml-2 vx-lh-4\">{{groupListInfo?.total_items || groupsList?.length}}</span></button>\r\n </div>\r\n\r\n\r\n\r\n <ng-container *ngIf=\"currentTab === 'USER'\">\r\n <ng-container *ngIf=\"(usersList|search:searchKey:'member_name') as users\">\r\n <vui-pagination *ngIf=\"userListInfo?.total_pages > 1 && usersList?.length !== userListInfo?.total_items\" [currentPage]=\"userCurrentPage\" [totalPage]=\"userListInfo?.total_pages\" (pageChanged)=\"userPageChange($event)\"></vui-pagination>\r\n <div class=\"user-group-list-mid\" [class.with-pagination]=\"isPagination\">\r\n <ng-container *ngIf=\"users?.length > 0;else nouser\">\r\n <div class=\"user-list-select vx-mb-2\">\r\n <vui-checkbox *ngIf=\"!singleSelect\" #user [checked]=\"allUserSelected\" [disabled]=\"allUserSelectedDisabled\" (change)=\"selectAllUser($event)\">\r\n <div class=\"user-name vx-fs-12 vx-fw-600 vx-label-txt vx-tt-none\">{{!user?.checked ? 'Select All' : 'Deselect All'}}</div>\r\n </vui-checkbox>\r\n </div>\r\n <div class=\"user-list-item\">\r\n <ul class=\"vx-m-0 vx-p-0 vx-d-flex\">\r\n <li class=\"vx-mb-4\" *ngFor=\"let user of users \">\r\n <vui-checkbox *ngIf=\"!singleSelect\" (change)=\"selectItem($event,user)\" [disabled]=\"nonRemovableUserIds?.includes(user?.member_id)\" [checked]=\"selectedUserIds.includes(user?.member_id)\"><div class=\"user-name\" [appTooltip]=\"user?.member_email ? user?.member_email : user?.employee_email\" placement=\"bottom-left\" delay=\"0\" type=\"black\" [tooltipMandatory]=\"true\">{{user?.member_name}}</div></vui-checkbox>\r\n <app-cs-radio *ngIf=\"singleSelect\" [name]=\"'radio-selector'\" (checkedEvent)=\"selectItemRadio($event,user)\"\r\n [name]=\"'rx-category'\" [checked]=\"selectedUserIds.includes(user?.member_id)\"\r\n [appTooltip]=\"user?.member_email\" placement=\"bottom-left\"\r\n delay=\"0\" [tooltipMandatory]=\"true\">\r\n {{user?.member_name}}\r\n </app-cs-radio>\r\n </li>\r\n\r\n </ul>\r\n </div>\r\n </ng-container>\r\n <ng-template #nouser>\r\n <app-no-data [noDataImage]=\"'https://cdn.v-comply.com/libraries/workflow-engine/assets/workflow/search-data.svg'\" [noDataText]=\"(searchKey?.length > 0 ?'No match found.':'No Users found.')\"></app-no-data>\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentTab === 'GROUP'\">\r\n <ng-container *ngIf=\"(groupsList|search:searchKey:'group_name') as groups\">\r\n <div class=\"user-group-list-mid\" [class.with-pagination]=\"isPagination\">\r\n <ng-container *ngIf=\"groups?.length > 0; else nogroup\">\r\n <div class=\"user-list-select vx-mb-2\">\r\n <vui-checkbox #group [checked]=\"allGroupSelected\" [disabled]=\"allGroupSelectedDisabled\" (change)=\"selectAllGroup($event)\">\r\n <div class=\"user-name vx-fs-12 vx-fw-600 vx-label-txt vx-tt-none\">{{!group?.checked ? 'Select All' : 'Deselect All'}}</div>\r\n </vui-checkbox>\r\n </div>\r\n <div class=\"user-list-item\">\r\n <ul class=\"vx-m-0 vx-p-0 vx-d-flex\">\r\n <li class=\"vx-mb-4\" *ngFor=\"let group of groups\">\r\n <vui-checkbox (change)=\"selectGroup($event,group)\" [disabled]=\"nonRemovableGroupIds?.includes(group?.group_id)\" [checked]=\"selectedGroupIds.includes(group?.group_id)\">\r\n <div class=\"user-name vx-d-flex vx-align-center vx-w-100\" [appTooltip]=\"group?.group_name\" placement=\"bottom-left\" delay=\"0\"\r\n [tooltipMandatory]=\"true\">\r\n <div class=\"group-name\">{{group?.group_name}} </div>\r\n <span class=\"counter vx-fs-9 vx-fw-600 vx-pl-1 vx-pr-1 vx-lh-3 vx-tt-uppercase\">{{group?.member_count}} {{group?.member_count > 1 ? 'USERS' :'USER'}}</span></div>\r\n </vui-checkbox>\r\n </li>\r\n </ul>\r\n </div>\r\n </ng-container>\r\n <ng-template #nogroup>\r\n <app-no-data [noDataImage]=\"'https://cdn.v-comply.com/libraries/workflow-engine/assets/workflow/search-data.svg'\" [noDataText]=\"(searchKey?.length > 0 ?'No match found.':'No data to display.')\"></app-no-data>\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n\r\n </div>\r\n\r\n <div class=\"user-group-list-footer\">\r\n <vui-floating-bar *ngIf=\"(!singleSelect || (!singleSelect && selectedReviewer))\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\" (workflowTypeChanged) = \"workflowTypeChanged($event)\" [selectedWorkflow]=\"reviewerWorkflowType\" [showWorkflow]=\"selectedReviewer\" [groupSelected]=\"selectedGroups\" [mode]=\"mode\">\r\n <ng-container *ngIf=\"!groupEnabled\">\r\n <div class=\"chip\" *ngFor=\"let element of selectedUsers?.slice(0,1);let i = index\"><i *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\" class=\"icons\">&#xe90d;</i> <span>{{element?.member_name}}</span></div>\r\n <div class=\"counter\" *ngIf=\"selectedUsers?.length>1\" appPopover (click)=\"groupDisable.popover()\"\r\n placement=\"left\">+{{selectedUsers?.slice(1).length}}</div>\r\n </ng-container>\r\n <ng-container *ngIf=\"groupEnabled\">\r\n <div class=\"counter\" *ngIf=\"selectedUsers?.length\" appPopover (click)=\"userCount.popover()\"\r\n placement=\"left\">{{selectedUsers?.length}}</div>\r\n </ng-container>\r\n <div class=\"name\">\r\n <span *ngIf=\"selectedUsers?.length === 1\">User {{selectedGroups?.length > 0 ?' & ':'selected'}}</span>\r\n <span *ngIf=\"selectedUsers?.length > 1\">Users {{selectedGroups?.length > 0 ?' & ':'are selected'}}</span>\r\n </div>\r\n\r\n <div class=\"counter group\" *ngIf=\"selectedGroups?.length\" appPopover (click)=\"groupCount.popover()\"\r\n placement=\"left\">{{selectedGroups?.length}}</div>\r\n <div class=\"name\" >\r\n <span *ngIf=\"selectedGroups?.length === 1\">{{featureflag ?'User Group selected':'Group selected'}}</span>\r\n <span *ngIf=\"selectedGroups?.length > 1\">{{featureflag ?'User Groups selected':'Groups selected'}}</span>\r\n </div>\r\n\r\n <app-popover #userCount [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedUsers let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.member_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n\r\n <app-popover #groupDisable [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedUsers.slice(1) let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.member_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n\r\n <app-popover #groupCount [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedGroups; let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableGroupIds.includes(element?.group_id)\"\r\n (click)=\"selectGroup({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.group_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n </vui-floating-bar>\r\n <vui-floating-bar *ngIf=\"singleSelect\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\">\r\n <div class=\"chip\" *ngIf=\"selectedUsers?.length\" >\r\n <ng-container>\r\n <i class=\"icons\" (click)=\"selectItem({target:{checked:false}},selectedUsers[0])\">&#xe90d;</i>\r\n <span class=\"value\"> {{selectedUsers[0]?.member_name}}</span>\r\n </ng-container>\r\n </div>\r\n </vui-floating-bar>\r\n </div>\r\n\r\n <div class=\"user-group-list-confirmation\" *ngIf=\"showConfirmation\">\r\n <div class=\"confirmation-top\">\r\n <div class=\"icon-block\"><i class=\"icons\">&#xe930;</i></div>\r\n <div class=\"text\">This action will reset the default {{userType}} selected for the Program.</div>\r\n </div>\r\n <div class=\"confirmation-bottom\">\r\n <div class=\"message\">Are you sure you would like to proceed?</div>\r\n <div class=\"button-group\">\r\n <button class=\"no-btn\" (click)=\"confirmAction('NO')\">NO</button>\r\n <button class=\"yes-btn\" (click)=\"confirmAction('YES')\">YES</button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n",
27336
+ template: "<div class=\"user-group-list\" [class.animate]=\"animation\">\r\n <div class=\"user-group-list-head\">\r\n <h3 class=\"user-group-list-title\">{{panelTitle}}</h3>\r\n </div>\r\n <div class=\"user-group-list-body\">\r\n <app-loader-inline *ngIf=\"loading\"></app-loader-inline>\r\n <div class=\"search-block vx-mb-2\">\r\n <i class=\"icons\">&#xe90b;</i>\r\n <input *ngIf=\"!featureflag\" [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search Group'}}\" />\r\n <input *ngIf=\"featureflag\" [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search User Group'}}\" />\r\n </div>\r\n\r\n <div class=\"user-group-list-tab vx-d-flex vx-align-center vx-mb-2\" *ngIf=\"groupEnabled\">\r\n <button (click)=\"switchTab('USER')\" class=\"tab-btn vx-fs-11 vx-fw-600 vx-paragraph-txt vx-tt-uppercase vx-p-0 vx-pb-2 vx-m-0 vx-d-flex vx-align-center vx-lh-4\" [class.active]=\"currentTab === 'USER'\">USERS\r\n <span class=\"vx-pl-1 vx-pr-1 vx-d-flex vx-align-center vx-justify-center vx-ml-2 vx-lh-4\">{{userListInfo?.total_items || usersList?.length}}</span></button>\r\n <button (click)=\"switchTab('GROUP')\" class=\"tab-btn vx-fs-11 vx-fw-600 vx-paragraph-txt vx-tt-uppercase vx-p-0 vx-pb-2 vx-m-0 vx-d-flex vx-align-center vx-lh-4\" [class.active]=\"currentTab === 'GROUP'\">{{featureflag ? 'USER GROUPS':'GROUPS'}} <span class=\"vx-pl-1 vx-pr-1 vx-d-flex vx-align-center vx-justify-center vx-ml-2 vx-lh-4\">{{groupListInfo?.total_items || groupsList?.length}}</span></button>\r\n </div>\r\n\r\n\r\n\r\n <ng-container *ngIf=\"currentTab === 'USER'\">\r\n <ng-container *ngIf=\"(usersList|filter:searchKey) as users\">\r\n <vui-pagination *ngIf=\"userListInfo?.total_pages > 1 && usersList?.length !== userListInfo?.total_items\" [currentPage]=\"userCurrentPage\" [totalPage]=\"userListInfo?.total_pages\" (pageChanged)=\"userPageChange($event)\"></vui-pagination>\r\n <div class=\"user-group-list-mid\" [class.with-pagination]=\"isPagination\">\r\n <ng-container *ngIf=\"users?.length > 0;else nouser\">\r\n <div class=\"user-list-select vx-mb-2\">\r\n <vui-checkbox *ngIf=\"!singleSelect\" #user [checked]=\"allUserSelected\" [disabled]=\"allUserSelectedDisabled\" (change)=\"selectAllUser($event)\">\r\n <div class=\"user-name vx-fs-12 vx-fw-600 vx-label-txt vx-tt-none\">{{!user?.checked ? 'Select All' : 'Deselect All'}}</div>\r\n </vui-checkbox>\r\n </div>\r\n <div class=\"user-list-item\">\r\n <ul class=\"vx-m-0 vx-p-0 vx-d-flex\">\r\n <li class=\"vx-mb-4\" *ngFor=\"let user of users \">\r\n <vui-checkbox *ngIf=\"!singleSelect\" (change)=\"selectItem($event,user)\" [disabled]=\"nonRemovableUserIds?.includes(user?.member_id)\" [checked]=\"selectedUserIds.includes(user?.member_id)\"><div class=\"user-name\" [appTooltip]=\"user?.member_email ? user?.member_email : user?.employee_email\" placement=\"bottom-left\" delay=\"0\" type=\"black\" [tooltipMandatory]=\"true\">{{user?.member_name}}</div></vui-checkbox>\r\n <app-cs-radio *ngIf=\"singleSelect\" [name]=\"'radio-selector'\" (checkedEvent)=\"selectItemRadio($event,user)\"\r\n [name]=\"'rx-category'\" [checked]=\"selectedUserIds.includes(user?.member_id)\"\r\n [appTooltip]=\"user?.member_email\" placement=\"bottom-left\"\r\n delay=\"0\" [tooltipMandatory]=\"true\">\r\n {{user?.member_name}}\r\n </app-cs-radio>\r\n </li>\r\n\r\n </ul>\r\n </div>\r\n </ng-container>\r\n <ng-template #nouser>\r\n <app-no-data [noDataImage]=\"'https://cdn.v-comply.com/libraries/workflow-engine/assets/workflow/search-data.svg'\" [noDataText]=\"(searchKey?.length > 0 ?'No match found.':'No Users found.')\"></app-no-data>\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n\r\n <ng-container *ngIf=\"currentTab === 'GROUP'\">\r\n <ng-container *ngIf=\"(groupsList|search:searchKey:'group_name') as groups\">\r\n <div class=\"user-group-list-mid\" [class.with-pagination]=\"isPagination\">\r\n <ng-container *ngIf=\"groups?.length > 0; else nogroup\">\r\n <div class=\"user-list-select vx-mb-2\">\r\n <vui-checkbox #group [checked]=\"allGroupSelected\" [disabled]=\"allGroupSelectedDisabled\" (change)=\"selectAllGroup($event)\">\r\n <div class=\"user-name vx-fs-12 vx-fw-600 vx-label-txt vx-tt-none\">{{!group?.checked ? 'Select All' : 'Deselect All'}}</div>\r\n </vui-checkbox>\r\n </div>\r\n <div class=\"user-list-item\">\r\n <ul class=\"vx-m-0 vx-p-0 vx-d-flex\">\r\n <li class=\"vx-mb-4\" *ngFor=\"let group of groups\">\r\n <vui-checkbox (change)=\"selectGroup($event,group)\" [disabled]=\"nonRemovableGroupIds?.includes(group?.group_id)\" [checked]=\"selectedGroupIds.includes(group?.group_id)\">\r\n <div class=\"user-name vx-d-flex vx-align-center vx-w-100\" [appTooltip]=\"group?.group_name\" placement=\"bottom-left\" delay=\"0\"\r\n [tooltipMandatory]=\"true\">\r\n <div class=\"group-name\">{{group?.group_name}} </div>\r\n <span class=\"counter vx-fs-9 vx-fw-600 vx-pl-1 vx-pr-1 vx-lh-3 vx-tt-uppercase\">{{group?.member_count}} {{group?.member_count > 1 ? 'USERS' :'USER'}}</span></div>\r\n </vui-checkbox>\r\n </li>\r\n </ul>\r\n </div>\r\n </ng-container>\r\n <ng-template #nogroup>\r\n <app-no-data [noDataImage]=\"'https://cdn.v-comply.com/libraries/workflow-engine/assets/workflow/search-data.svg'\" [noDataText]=\"(searchKey?.length > 0 ?'No match found.':'No data to display.')\"></app-no-data>\r\n </ng-template>\r\n </div>\r\n </ng-container>\r\n </ng-container>\r\n\r\n </div>\r\n\r\n <div class=\"user-group-list-footer\">\r\n <vui-floating-bar *ngIf=\"(!singleSelect || (!singleSelect && selectedReviewer))\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\" (workflowTypeChanged) = \"workflowTypeChanged($event)\" [selectedWorkflow]=\"reviewerWorkflowType\" [showWorkflow]=\"selectedReviewer\" [groupSelected]=\"selectedGroups\" [mode]=\"mode\">\r\n <ng-container *ngIf=\"!groupEnabled\">\r\n <div class=\"chip\" *ngFor=\"let element of selectedUsers?.slice(0,1);let i = index\"><i *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\" class=\"icons\">&#xe90d;</i> <span>{{element?.member_name}}</span></div>\r\n <div class=\"counter\" *ngIf=\"selectedUsers?.length>1\" appPopover (click)=\"groupDisable.popover()\"\r\n placement=\"left\">+{{selectedUsers?.slice(1).length}}</div>\r\n </ng-container>\r\n <ng-container *ngIf=\"groupEnabled\">\r\n <div class=\"counter\" *ngIf=\"selectedUsers?.length\" appPopover (click)=\"userCount.popover()\"\r\n placement=\"left\">{{selectedUsers?.length}}</div>\r\n </ng-container>\r\n <div class=\"name\">\r\n <span *ngIf=\"selectedUsers?.length === 1\">User {{selectedGroups?.length > 0 ?' & ':'selected'}}</span>\r\n <span *ngIf=\"selectedUsers?.length > 1\">Users {{selectedGroups?.length > 0 ?' & ':'are selected'}}</span>\r\n </div>\r\n\r\n <div class=\"counter group\" *ngIf=\"selectedGroups?.length\" appPopover (click)=\"groupCount.popover()\"\r\n placement=\"left\">{{selectedGroups?.length}}</div>\r\n <div class=\"name\" >\r\n <span *ngIf=\"selectedGroups?.length === 1\">{{featureflag ?'User Group selected':'Group selected'}}</span>\r\n <span *ngIf=\"selectedGroups?.length > 1\">{{featureflag ?'User Groups selected':'Groups selected'}}</span>\r\n </div>\r\n\r\n <app-popover #userCount [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedUsers let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.member_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n\r\n <app-popover #groupDisable [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedUsers.slice(1) let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableUserIds.includes(element?.member_id)\"\r\n (click)=\"selectItem({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.member_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n\r\n <app-popover #groupCount [dontCloseonClick]=\"true\">\r\n <div class=\"action-list\">\r\n <ul class=\"action-item\">\r\n <li *ngFor=\"let element of selectedGroups; let i =index\">\r\n <div class=\"avatar-card\">\r\n <span class=\"value\">\r\n <i class=\"icons\" *ngIf=\"!nonRemovableGroupIds.includes(element?.group_id)\"\r\n (click)=\"selectGroup({target:{checked:false}},element)\">&#xe90d;</i>\r\n {{element?.group_name}}\r\n </span>\r\n </div>\r\n </li>\r\n </ul>\r\n </div>\r\n </app-popover>\r\n </vui-floating-bar>\r\n <vui-floating-bar *ngIf=\"singleSelect\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\">\r\n <div class=\"chip\" *ngIf=\"selectedUsers?.length\" >\r\n <ng-container>\r\n <i class=\"icons\" (click)=\"selectItem({target:{checked:false}},selectedUsers[0])\">&#xe90d;</i>\r\n <span class=\"value\"> {{selectedUsers[0]?.member_name}}</span>\r\n </ng-container>\r\n </div>\r\n </vui-floating-bar>\r\n </div>\r\n\r\n <div class=\"user-group-list-confirmation\" *ngIf=\"showConfirmation\">\r\n <div class=\"confirmation-top\">\r\n <div class=\"icon-block\"><i class=\"icons\">&#xe930;</i></div>\r\n <div class=\"text\">This action will reset the default {{userType}} selected for the Program.</div>\r\n </div>\r\n <div class=\"confirmation-bottom\">\r\n <div class=\"message\">Are you sure you would like to proceed?</div>\r\n <div class=\"button-group\">\r\n <button class=\"no-btn\" (click)=\"confirmAction('NO')\">NO</button>\r\n <button class=\"yes-btn\" (click)=\"confirmAction('YES')\">YES</button>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n",
27337
27337
  styles: ["@import url(\"https://cdn.v-comply.com/design-system/css/icons/icons.css\");@import url(\"https://cdn.v-comply.com/design-system/css/text/text.css\");@import url(\"https://cdn.v-comply.com/design-system/css/width/width.css\");@import url(\"https://cdn.v-comply.com/design-system/css/color/color.css\");@import url(\"https://cdn.v-comply.com/design-system/css/padding/padding.css\");@import url(\"https://cdn.v-comply.com/design-system/css/padding/padding-left.css\");@import url(\"https://cdn.v-comply.com/design-system/css/padding/padding-right.css\");@import url(\"https://cdn.v-comply.com/design-system/css/padding/padding-top.css\");@import url(\"https://cdn.v-comply.com/design-system/css/padding/padding-bottom.css\");@import url(\"https://cdn.v-comply.com/design-system/css/margin/margin.css\");@import url(\"https://cdn.v-comply.com/design-system/css/margin/margin-left.css\");@import url(\"https://cdn.v-comply.com/design-system/css/margin/margin-right.css\");@import url(\"https://cdn.v-comply.com/design-system/css/margin/margin-top.css\");@import url(\"https://cdn.v-comply.com/design-system/css/margin/margin-bottom.css\");::ng-deep .user-group-list{background:#fff;position:fixed;top:0;right:500px;bottom:0;left:0;border-top:3px solid #1e5dd3}::ng-deep .user-group-list.animate{-webkit-animation:animate-right .2s cubic-bezier(.25,.46,.45,.94) both;animation:animate-right .2s cubic-bezier(.25,.46,.45,.94) both;z-index:-1}::ng-deep .user-group-list-head{background:#fbfbfb;height:42px;padding:0 18px;display:flex;justify-content:space-between;align-items:center;border:1px solid #f1f1f1;border-right:none}::ng-deep .user-group-list-title{color:#161b2f;font-size:15px;font-weight:500;margin:0!important;padding:0;line-height:21px}::ng-deep .user-group-list-body{padding:24px 40px 24px 36px;height:calc(100vh - 124px)}::ng-deep .user-group-list-body .search-block{position:relative}::ng-deep .user-group-list-body .search-block input{height:44px;line-height:24px;padding:10px 16px 10px 40px;outline:none;border:1px solid #7475763f;border-radius:4px;width:100%;font-size:14px;color:#747576}::ng-deep .user-group-list-body .search-block input:focus{border-color:#1e5dd3}::ng-deep .user-group-list-body .search-block i{position:absolute;left:17px;font-size:12px;font-weight:400;top:17px;pointer-events:none;color:#f1f1f1}::ng-deep .user-group-list-mid{width:calc(100% + .75rem);height:calc(100vh - 13.5rem);overflow:auto;padding-right:.75rem}::ng-deep .user-group-list-mid::-webkit-scrollbar-track{background-color:#fff}::ng-deep .user-group-list-mid.with-pagination{height:calc(100vh - 17.5rem)}::ng-deep .user-group-list-mid .selected-owners{border-bottom:1px solid #dbdbdb}::ng-deep .user-group-list-mid .user-list-select{background:#fff;position:sticky;top:0;z-index:1}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item{position:relative;padding-left:1.5rem;width:100%}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item .checkbox,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item .checkbox{position:absolute!important;left:0;top:0}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item .checkmark,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item .checkmark{position:absolute!important;left:0;top:0}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item span,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item span{justify-content:unset!important;margin:0!important}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item span.value,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item span.value{color:#747576!important;font-size:11px!important;font-weight:600!important;text-transform:uppercase!important;width:100%}::ng-deep .user-group-list-mid .user-list-select vui-checkbox-indeterminate .checkbox-item span.value .user-name,::ng-deep .user-group-list-mid .user-list-select vui-checkbox .checkbox-item span.value .user-name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}::ng-deep .user-group-list-mid .user-list-item ul{list-style-type:none;align-items:flex-start;flex-wrap:wrap}::ng-deep .user-group-list-mid .user-list-item ul li{width:50%}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox{width:calc(100% - 4.5rem)}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item{position:relative;padding-left:1.5rem;width:100%}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item .checkbox{position:absolute!important;left:0;top:0}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item .checkmark{position:absolute!important;left:0;top:0}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item span{justify-content:unset!important;margin:0!important}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item span.value{color:#747576!important;font-size:12px!important;width:100%}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item span.value .user-name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item span.value .user-name .group-name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;max-width:calc(100% - 2.5rem)}::ng-deep .user-group-list-mid .user-list-item ul li vui-checkbox .checkbox-item span.value .counter{background:#f1f1f1;border-radius:.125rem;color:#042e7d;margin-left:.5rem!important}::ng-deep .user-group-list-tab{border-bottom:1px solid #f1f1f1}::ng-deep .user-group-list-tab button.tab-btn{background:transparent;border-radius:0;border:none;border-bottom:.1875rem solid transparent;margin-right:2.5rem!important}::ng-deep .user-group-list-tab button.tab-btn span{border-radius:1.25rem;color:#74757680;min-width:1.5rem}::ng-deep .user-group-list-tab button.active{pointer-events:none}::ng-deep .user-group-list-tab button.active.tab-btn{border-color:#1e5dd3;color:#1e5dd3}::ng-deep .user-group-list-tab button.active.tab-btn span{background:#1e5dd3;color:#fff;font-weight:500}::ng-deep .user-group-list-confirmation{background:#161b2f;border-radius:.25rem;position:absolute;left:1rem;right:1rem;bottom:1.75rem;z-index:1}::ng-deep .user-group-list-confirmation .confirmation-top{display:flex;align-items:center;justify-content:flex-start;padding:1.25rem}::ng-deep .user-group-list-confirmation .confirmation-top .icon-block{height:2.25rem;width:2.25rem;border-radius:50%;background:#fff;border:1px solid #dbdbdb;display:flex;justify-content:center;align-items:center;margin-right:1rem}::ng-deep .user-group-list-confirmation .confirmation-top .icon-block i{color:#eb2424;font-size:12px}::ng-deep .user-group-list-confirmation .confirmation-top .text{color:#fff;font-size:14px;font-weight:300}::ng-deep .user-group-list-confirmation .confirmation-bottom{background:#282e48;border-radius:0 0 .25rem .25rem;padding:.75rem .75rem .75rem 1.25rem;display:flex;align-items:center;justify-content:space-between}::ng-deep .user-group-list-confirmation .confirmation-bottom .message{font-size:14px;font-weight:500;line-height:20px;color:#fff}::ng-deep .user-group-list-confirmation .confirmation-bottom .button-group{display:flex}::ng-deep .user-group-list-confirmation .confirmation-bottom .button-group button{height:1.5rem;width:4rem;border:1px solid #fff;border-radius:.125rem;display:flex;align-items:center;justify-content:center;line-height:22px;cursor:pointer;font-size:11px;text-transform:uppercase;font-weight:500;padding:0}::ng-deep .user-group-list-confirmation .confirmation-bottom .button-group button.no-btn{background:transparent;color:#fff}::ng-deep .user-group-list-confirmation .confirmation-bottom .button-group button.yes-btn{background:#fff;color:#1e5dd3;margin-left:.25rem}.group{background:#1e5dd3!important;border-color:#1e5dd3!important}.action-list{width:220px}.action-list ul{padding:0;margin:0;-webkit-animation:scale-up-center .2s cubic-bezier(.39,.575,.565,1) both;animation:scale-up-center .2s cubic-bezier(.39,.575,.565,1) both;background:#fff;box-shadow:0 3px 6px #1c5bd140;border-radius:4px;max-height:220px;overflow:auto}.action-list ul.action-item{display:block}.action-list ul.action-item li{list-style:none;border:none;border-bottom:1px solid #f1f1f1;display:block;width:100%;padding:0;background:transparent;border-radius:0;margin:0;height:auto;justify-content:flex-start;box-shadow:none}.action-list ul.action-item li button{color:#6e717e;text-align:left;text-decoration:none;cursor:pointer;background:transparent;font-size:12px;text-transform:capitalize;display:flex;width:100%;padding:7.5px 11px;border:none}.action-list ul.action-item li button .file-name{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:calc(100% - 16px)}.action-list ul.action-item li button i{font-size:17px;margin-right:10px;color:#1c5bd1}.action-list ul.action-item li button:hover{background:#f3f3f3}.action-list ul.action-item li .avatar-card{display:flex;align-items:center;width:100%;padding:7.5px}.action-list ul.action-item li .avatar-card.within-con{display:block}.action-list ul.action-item li .avatar-card .avatar{height:24px;width:24px!important;min-width:24px!important;overflow:hidden;background:#4681ef;color:#fff;font-size:10px;display:inline-flex;margin-right:5px;border-radius:50%;align-items:center;justify-content:center;text-transform:uppercase}.action-list ul.action-item li .avatar-card .avatar img{background:#fff;width:100%;height:100%}.action-list ul.action-item li .avatar-card .avatar+span.value{width:calc(100% - 29px)}.action-list ul.action-item li .avatar-card span.value{width:100%;color:#6e717e;text-decoration:none;background:transparent;font-size:12px;text-transform:capitalize;display:block;font-weight:400;-moz-text-align-last:left;text-align-last:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:20px}.action-list ul.action-item li .avatar-card span.value i{font-size:8px;color:#1c5bd1;cursor:pointer;margin-right:5px}.action-list ul.action-item li .avatar-card.no-image{display:block}.action-list ul.action-item li .avatar-card.no-image span.value{width:100%;display:block}.action-list ul.action-item li .avatar-card i.delete-icon{color:#d93b41;cursor:pointer;font-size:14px}.action-list ul.action-item li .chip-item{color:#1e5dd3;padding:10px;display:flex;align-items:center}.action-list ul.action-item li .chip-item i{margin-left:7px;font-size:10px;cursor:pointer;display:inline-flex}.action-list ul.action-item li .chip-item span{display:block;width:auto;width:calc(100% - 17px);font-size:12px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action-list ul.action-item li .chip-item span.chip-block{display:block;width:100%}.action-list ul.action-item li .chip-item span.id{font-size:9px}.action-list ul.action-item li .within{display:flex;align-items:center;justify-content:flex-start}.action-list ul.action-item li .within .block{background:#f1f1f1;border-radius:2px;padding:0 2px;line-height:14px;font-size:9px;font-weight:500;color:#042e7d;margin-right:6px;display:block;text-transform:uppercase}.action-list ul.action-item li .within .data{width:100%;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#747576;font-size:11px;font-weight:400;line-height:17px}.action-list ul.action-item li:first-child{-webkit-animation:action-list-open .25s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .25s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(2){-webkit-animation:action-list-open .35s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .35s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(3){-webkit-animation:action-list-open .45s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .45s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(4){-webkit-animation:action-list-open .55s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .55s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(5){-webkit-animation:action-list-open .65s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .65s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(6){-webkit-animation:action-list-open .75s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .75s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(7){-webkit-animation:action-list-open .85s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .85s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(8){-webkit-animation:action-list-open .95s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open .95s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(9){-webkit-animation:action-list-open 1.05s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open 1.05s cubic-bezier(.25,.46,.45,.94) both}.action-list ul.action-item li:nth-child(10){-webkit-animation:action-list-open 1.15s cubic-bezier(.25,.46,.45,.94) both;animation:action-list-open 1.15s cubic-bezier(.25,.46,.45,.94) both}@-webkit-keyframes action-list-open{0%{transform:translateY(50px)}to{transform:translateY(0)}}@keyframes action-list-open{0%{transform:translateY(50px)}to{transform:translateY(0)}}"]
27338
27338
  },] }
27339
27339
  ];
@@ -28339,6 +28339,31 @@ AssessmentResolverPipe.decorators = [
28339
28339
  },] }
28340
28340
  ];
28341
28341
 
28342
+ class FilterPipe {
28343
+ transform(items, searchText) {
28344
+ if (!items) {
28345
+ return [];
28346
+ }
28347
+ if (!searchText) {
28348
+ return items;
28349
+ }
28350
+ searchText = searchText.toLowerCase();
28351
+ if (items === null || items === void 0 ? void 0 : items.length) {
28352
+ return items.filter((it) => {
28353
+ return JSON.stringify(it).toLowerCase().includes(searchText);
28354
+ });
28355
+ }
28356
+ else {
28357
+ return [];
28358
+ }
28359
+ }
28360
+ }
28361
+ FilterPipe.decorators = [
28362
+ { type: Pipe, args: [{
28363
+ name: 'filter',
28364
+ },] }
28365
+ ];
28366
+
28342
28367
  // import { AssessmentListModule } from './assessment-list/assessment-list.module';
28343
28368
  // import { AssessmentPreviewModule } from '../../sharedComponents/assessment-preview/assessment-preview.module';
28344
28369
  class CreateProgramUiModule {
@@ -28373,7 +28398,8 @@ CreateProgramUiModule.decorators = [
28373
28398
  SubCatIndeterPipe,
28374
28399
  SearchNewPipe,
28375
28400
  SelectedAssessmentPipe,
28376
- AssessmentResolverPipe
28401
+ AssessmentResolverPipe,
28402
+ FilterPipe
28377
28403
  ],
28378
28404
  imports: [
28379
28405
  CommonModule,
@@ -29212,7 +29238,7 @@ class AddMultipleResponsibilityWithTabComponent {
29212
29238
  // category_name: categoryName,
29213
29239
  category_name_with_tree: '',
29214
29240
  category_id: (_s = (_r = this.getProgramId(report === null || report === void 0 ? void 0 : report.program, report === null || report === void 0 ? void 0 : report.programCategory).categoryId) === null || _r === void 0 ? void 0 : _r.toString()) !== null && _s !== void 0 ? _s : '',
29215
- program_cat_ids: ((_t = this.getProgramId(report === null || report === void 0 ? void 0 : report.program, report === null || report === void 0 ? void 0 : report.programCategory)) === null || _t === void 0 ? void 0 : _t.childProgramId) ? [(_u = this.getProgramId(report === null || report === void 0 ? void 0 : report.program, report === null || report === void 0 ? void 0 : report.programCategory)) === null || _u === void 0 ? void 0 : _u.childProgramId] : [],
29241
+ program_cat_ids: ((_t = this.getProgramId(report === null || report === void 0 ? void 0 : report.program, report === null || report === void 0 ? void 0 : report.programCategory)) === null || _t === void 0 ? void 0 : _t.programId) ? [(_u = this.getProgramId(report === null || report === void 0 ? void 0 : report.program, report === null || report === void 0 ? void 0 : report.programCategory)) === null || _u === void 0 ? void 0 : _u.programId] : [],
29216
29242
  rc_name: rcDetails ? rcDetails === null || rcDetails === void 0 ? void 0 : rcDetails.name : '',
29217
29243
  rc_id: rcDetails ? rcDetails === null || rcDetails === void 0 ? void 0 : rcDetails.rcId : 0,
29218
29244
  entity_tree: (rcDetails && (rcDetails === null || rcDetails === void 0 ? void 0 : rcDetails.rcId)) ? [{
@@ -30149,7 +30175,7 @@ VComplyWorkflowEngineModule.decorators = [
30149
30175
  CheckpointsPolicyQuestionsComponent,
30150
30176
  WorkflowSurveyFormComponent,
30151
30177
  LogAnIssueComponent,
30152
- FilterPipe,
30178
+ FilterPipe$1,
30153
30179
  CheckboxListComponent,
30154
30180
  RadioListComponent,
30155
30181
  ListMapperPipe,
@@ -30238,5 +30264,5 @@ VComplyWorkflowEngineModule.decorators = [
30238
30264
  * Generated bundle index. Do not edit.
30239
30265
  */
30240
30266
 
30241
- export { VComplyWorkflowEngineModule, WorkflowEngineContainerComponent, WorkflowEngineService, UiKitService as ɵa, SnackBarService as ɵb, CheckpointsListComponent as ɵba, ReviewFrequencyComponent as ɵbb, FrequencyContainerComponent as ɵbc, FrequencyDailyComponent as ɵbd, FrequencyWeeklyComponent as ɵbe, FrequencyMonthlyComponent as ɵbf, FrequencyQuarterlyComponent as ɵbg, FrequencyBiannualComponent as ɵbh, FrequencyAnnualComponent as ɵbi, FrequencyOneTimeComponent as ɵbj, FrequencyRandomComponent as ɵbk, FrequencyOnCompletionOfComponent as ɵbl, FrequencyOngoingComponent as ɵbm, FrequencyTopComponent as ɵbn, FrequencyLifecycleComponent as ɵbo, FrequencyDueDateComponent as ɵbp, FrequencyCheckboxListComponent as ɵbq, FrequencyRadioListComponent as ɵbr, GroupUsersListComponent as ɵbs, AddMultipleResponsibilityComponent as ɵbt, FrequencyBulkService as ɵbu, BulkResponsibilityViewComponent as ɵbv, CheckpointsPolicyContainerComponent as ɵbw, CheckpointsPolicyListComponent as ɵbx, CheckpointsPolicyQuestionsComponent as ɵby, WorkflowSurveyFormComponent as ɵbz, AuthService as ɵc, LogAnIssueComponent as ɵca, LogIssueService as ɵcb, FilterPipe as ɵcc, CheckboxListComponent as ɵcd, RadioListComponent as ɵce, ListMapperPipe as ɵcf, CreateDocumentsComponent as ɵcg, SearchPipe$1 as ɵch, UserFilterPipe as ɵci, FrameworkListComponent as ɵcj, ParentTableComponent as ɵck, DataTypePipe as ɵcl, CheckpointFloatingBarComponent as ɵcm, FormatAndEvidenceComponent as ɵcn, RiskClassificationComponent as ɵco, DragDropDirective as ɵcp, AutofocusDirective as ɵcq, ScrollInViewDirective as ɵcr, spaceTrimDirective as ɵcs, ShortMergePipe as ɵct, SpaceBreakerPipe as ɵcu, FormatHtmlPipe as ɵcv, WithinDataPipe as ɵcw, ResponsibilityRiskSelectorComponent as ɵcx, ConditionalFocusDirective as ɵcy, ListLoaderComponent as ɵcz, TokenDecoderService as ɵd, ArrayFilterPipe as ɵda, AuditCategoryListComponent as ɵdb, DocumentSectionComponent as ɵdc, WorkflowAssessmentComponent as ɵdd, AssessmentService$2 as ɵde, ImportAnAssessmentComponent as ɵdf, AssessmentListComponent as ɵdg, AssessmentService$1 as ɵdh, RadioListWithPaginationComponent as ɵdi, LinkTreatmentLoaderComponent as ɵdj, AssessmentListLoaderComponent as ɵdk, AssessmentListSubLoaderComponent as ɵdl, UncategorizedFilterPipe as ɵdm, ProgramListingComponent as ɵdn, WorkflowProgramComponent as ɵdo, RolesListComponent as ɵdp, FrameworkListTableComponent as ɵdq, FrameworkResponsibilityTableComponent as ɵdr, FrameworkTableLoaderComponent as ɵds, ArrayConcatPipe as ɵdt, SpaceTrimPipe as ɵdu, AddMultipleResponsibilityContainerComponent as ɵdv, BulkUploadService as ɵdw, AddMultipleResponsibilityWithTabComponent as ɵdx, CreateAssessmentModule as ɵdy, CreateAssessmentContainerComponent as ɵdz, Configurations as ɵe, EditorService as ɵea, DialogService as ɵeb, DialogModule as ɵec, DialogComponent as ɵed, InsertionDirective as ɵee, DialogRef as ɵef, DialogConfig as ɵeg, QuestionTypeComponent as ɵeh, AddPageDetailsComponent as ɵei, AssessmentSettingsComponent as ɵej, ResultCriteriaService as ɵek, AddSegmentPopupComponent as ɵel, AddResponseSetPopupComponent as ɵem, EditorWrapperComponent as ɵen, ValidatorService as ɵeo, QuickSettingsComponent as ɵep, SingleLineEditorComponent as ɵeq, ResponseSelectorComponent as ɵer, MoveComponent as ɵes, LogicComponent as ɵet, AddLogicComponent as ɵeu, ToolkitComponent as ɵev, ErrorMessagePipe as ɵew, QuestionFilterPipe as ɵex, QuestionParserPipe as ɵey, FormatterPipe as ɵez, WorkflowRiskComponent as ɵf, SettingAnonymousComponent as ɵfa, SettingResponseSegmentComponent as ɵfb, PageHeaderComponent as ɵfc, WelcomeThankyouComponent as ɵfd, CurrentPageQuestionPipe as ɵfe, QuestionPageFilterPipe as ɵff, TypeOfPipe as ɵfg, TooltipModule as ɵfh, ToolTipDirective as ɵfi, PopoverModule as ɵfj, PopoverComponent as ɵfk, PopoverService as ɵfl, PopoverDirective as ɵfm, PopoverEventDirective as ɵfn, PopoverLongpressDirective as ɵfo, FormgroupModule$1 as ɵfp, CsCheckboxComponent$1 as ɵfq, CsRadioComponent$1 as ɵfr, CsSwitchComponent$1 as ɵfs, CsRadioGroupComponent$1 as ɵft, CsSelectComponent$2 as ɵfu, PascalPipe$1 as ɵfv, CsCheckboxIndeterminateComponent$1 as ɵfw, NoDataModule$1 as ɵfx, NoDataComponent$1 as ɵfy, BuildModule as ɵfz, AddRiskService as ɵg, MultipleChoiceComponent as ɵga, CheckboxComponent$1 as ɵgb, ImageChoiceComponent as ɵgc, StarRatingComponent as ɵgd, MatrixDropdownComponent as ɵge, DropdownComponent as ɵgf, MatrixRatingScaleComponent as ɵgg, RankingComponent as ɵgh, SliderComponent as ɵgi, MultipleTextboxComponent as ɵgj, DateTimeComponent as ɵgk, ChoiceSettingsPanelComponent as ɵgl, WelcomeComponent$1 as ɵgm, ThankYouComponent$1 as ɵgn, WeightageSelectorComponent as ɵgo, FormgroupModule as ɵgp, CsCheckboxComponent as ɵgq, CsRadioComponent as ɵgr, CsSwitchComponent as ɵgs, CsRadioGroupComponent as ɵgt, CsSelectComponent as ɵgu, PascalPipe as ɵgv, SearchMultiSelectPipe as ɵgw, ClickOutsideDirective as ɵgx, CsCheckboxIndeterminateComponent as ɵgy, PreviewModule as ɵgz, WorkflowComplianceComponent as ɵh, PreviewWrapperComponent as ɵha, PreviewMultipleChoiceComponent as ɵhb, PreviewCheckboxComponent as ɵhc, PreviewImageChoiceComponent as ɵhd, PreviewStarRatingComponent as ɵhe, PreviewSingleTextboxComponent as ɵhf, PreviewCommentBoxComponent as ɵhg, PreviewMatrixDropdownComponent as ɵhh, PreviewDropdownComponent as ɵhi, PreviewMatrixRatingScaleComponent as ɵhj, PreviewRankingComponent as ɵhk, PreviewSliderComponent as ɵhl, PreviewMultipleTextboxComponent as ɵhm, PreviewDateTimeComponent as ɵhn, PreviewFileUploadComponent as ɵho, WelcomeComponent as ɵhp, ThankYouComponent as ɵhq, SelectModule as ɵhr, CsSelectComponent$1 as ɵhs, SelectService as ɵht, CsOptionComponent as ɵhu, AssessmentPreviewModule as ɵhv, CheckboxQuestionComponent as ɵhw, DateTimeComponent$1 as ɵhx, DeviceComponent as ɵhy, FileUploadComponent as ɵhz, ResponsibilityService as ɵi, PreviewComponent as ɵia, PreviewContainerComponent as ɵib, QuickSettingsComponent$1 as ɵic, RadioQuestionComponent as ɵid, SelectQuestionComponent as ɵie, SingleTextboxComponent as ɵif, PageHeaderComponent$1 as ɵig, WelcomeComponent$2 as ɵih, LogicQuestionsModule as ɵii, LogicMultipleChoiceComponent as ɵij, LogicCheckboxComponent as ɵik, LogicImageChoiceComponent as ɵil, LogicStarRatingComponent as ɵim, LogicSingleTextboxComponent as ɵin, LogicCommentBoxComponent as ɵio, LogicDropdownComponent as ɵip, LogicRankingComponent as ɵiq, LogicSliderComponent as ɵir, LogicMultipleTextboxComponent as ɵis, LogicDateTimeComponent as ɵit, EditorLoaderModule as ɵiu, EditorLoaderComponent as ɵiv, LineLoaderModule as ɵiw, LineLoaderComponent as ɵix, VLoaderModule as ɵiy, LoaderComponent$1 as ɵiz, FrequencyService as ɵj, LoaderInlineComponent as ɵja, SmileyDialogModule as ɵjb, SmileyDialogComponent as ɵjc, SnackBarModule as ɵjd, SnackBarComponent as ɵje, SmileyDialogInlineModule as ɵjf, SmileyDialogInlineComponent as ɵjg, ClickOutsideModule as ɵjh, ClickOutsideDirective$1 as ɵji, PopoverHoverModule as ɵjj, PopoverHoverComponent as ɵjk, PopoverHoverService as ɵjl, PopoverHoverDirective as ɵjm, PaginationModule$1 as ɵjn, PaginationComponent$1 as ɵjo, ActionDialogModule as ɵjp, DeleteComponent as ɵjq, DeactivateComponent as ɵjr, ActiveComponent as ɵjs, DuplicateComponent as ɵjt, CreateProgramUiModule as ɵju, TabSelector as ɵjv, TickMarkComponent as ɵjw, FormFieldComponent as ɵjx, FilePillComponent as ɵjy, InputWithPillComponent as ɵjz, ProgramsService as ɵk, SwitchComponent as ɵka, InputTrimDirective as ɵkb, RoleListComponent as ɵkc, CheckboxComponent as ɵkd, VuiFloatingBarComponent as ɵke, SearchPipe as ɵkf, UserGroupListComponent as ɵkg, ListToIdPipe as ɵkh, RefDisconnectPipe as ɵki, AssessmentPickerComponent as ɵkj, AssessmentService as ɵkk, AssessmentLoaderComponent as ɵkl, AssessmentSubLoaderComponent as ɵkm, Pagination as ɵkn, DefineFrameworkListingComponent as ɵko, FrameworkService as ɵkp, CustomFieldComponent as ɵkq, LoaderComponent as ɵkr, LoaderFrameworkComponent as ɵks, PagerPipe as ɵkt, CategoryAllSelectPipe as ɵku, SubCatIndeterPipe as ɵkv, SearchNewPipe as ɵkw, SelectedAssessmentPipe as ɵkx, AssessmentResolverPipe as ɵky, PaginationModule as ɵkz, WorkflowPolicyComponent as ɵl, PaginationComponent as ɵla, NoDataModule as ɵlb, NoDataComponent as ɵlc, PolicyService as ɵm, MoreOptionComponent as ɵn, OwnerListComponent as ɵo, UserRadioListComponent as ɵp, CategoryListComponent as ɵq, CategoryMultiSelectComponent as ɵr, FloatingBarComponent as ɵs, ResponsibilityCentersListComponent as ɵt, WorkflowPaginationComponent as ɵu, AddMultipleRiskComponent as ɵv, BulkViewComponent as ɵw, CheckpointsComponent as ɵx, ConfirmationAlertComponent as ɵy, CheckpointsQuestionsComponent as ɵz };
30267
+ export { VComplyWorkflowEngineModule, WorkflowEngineContainerComponent, WorkflowEngineService, UiKitService as ɵa, SnackBarService as ɵb, CheckpointsListComponent as ɵba, ReviewFrequencyComponent as ɵbb, FrequencyContainerComponent as ɵbc, FrequencyDailyComponent as ɵbd, FrequencyWeeklyComponent as ɵbe, FrequencyMonthlyComponent as ɵbf, FrequencyQuarterlyComponent as ɵbg, FrequencyBiannualComponent as ɵbh, FrequencyAnnualComponent as ɵbi, FrequencyOneTimeComponent as ɵbj, FrequencyRandomComponent as ɵbk, FrequencyOnCompletionOfComponent as ɵbl, FrequencyOngoingComponent as ɵbm, FrequencyTopComponent as ɵbn, FrequencyLifecycleComponent as ɵbo, FrequencyDueDateComponent as ɵbp, FrequencyCheckboxListComponent as ɵbq, FrequencyRadioListComponent as ɵbr, GroupUsersListComponent as ɵbs, AddMultipleResponsibilityComponent as ɵbt, FrequencyBulkService as ɵbu, BulkResponsibilityViewComponent as ɵbv, CheckpointsPolicyContainerComponent as ɵbw, CheckpointsPolicyListComponent as ɵbx, CheckpointsPolicyQuestionsComponent as ɵby, WorkflowSurveyFormComponent as ɵbz, AuthService as ɵc, LogAnIssueComponent as ɵca, LogIssueService as ɵcb, FilterPipe$1 as ɵcc, CheckboxListComponent as ɵcd, RadioListComponent as ɵce, ListMapperPipe as ɵcf, CreateDocumentsComponent as ɵcg, SearchPipe$1 as ɵch, UserFilterPipe as ɵci, FrameworkListComponent as ɵcj, ParentTableComponent as ɵck, DataTypePipe as ɵcl, CheckpointFloatingBarComponent as ɵcm, FormatAndEvidenceComponent as ɵcn, RiskClassificationComponent as ɵco, DragDropDirective as ɵcp, AutofocusDirective as ɵcq, ScrollInViewDirective as ɵcr, spaceTrimDirective as ɵcs, ShortMergePipe as ɵct, SpaceBreakerPipe as ɵcu, FormatHtmlPipe as ɵcv, WithinDataPipe as ɵcw, ResponsibilityRiskSelectorComponent as ɵcx, ConditionalFocusDirective as ɵcy, ListLoaderComponent as ɵcz, TokenDecoderService as ɵd, ArrayFilterPipe as ɵda, AuditCategoryListComponent as ɵdb, DocumentSectionComponent as ɵdc, WorkflowAssessmentComponent as ɵdd, AssessmentService$2 as ɵde, ImportAnAssessmentComponent as ɵdf, AssessmentListComponent as ɵdg, AssessmentService$1 as ɵdh, RadioListWithPaginationComponent as ɵdi, LinkTreatmentLoaderComponent as ɵdj, AssessmentListLoaderComponent as ɵdk, AssessmentListSubLoaderComponent as ɵdl, UncategorizedFilterPipe as ɵdm, ProgramListingComponent as ɵdn, WorkflowProgramComponent as ɵdo, RolesListComponent as ɵdp, FrameworkListTableComponent as ɵdq, FrameworkResponsibilityTableComponent as ɵdr, FrameworkTableLoaderComponent as ɵds, ArrayConcatPipe as ɵdt, SpaceTrimPipe as ɵdu, AddMultipleResponsibilityContainerComponent as ɵdv, BulkUploadService as ɵdw, AddMultipleResponsibilityWithTabComponent as ɵdx, CreateAssessmentModule as ɵdy, CreateAssessmentContainerComponent as ɵdz, Configurations as ɵe, EditorService as ɵea, DialogService as ɵeb, DialogModule as ɵec, DialogComponent as ɵed, InsertionDirective as ɵee, DialogRef as ɵef, DialogConfig as ɵeg, QuestionTypeComponent as ɵeh, AddPageDetailsComponent as ɵei, AssessmentSettingsComponent as ɵej, ResultCriteriaService as ɵek, AddSegmentPopupComponent as ɵel, AddResponseSetPopupComponent as ɵem, EditorWrapperComponent as ɵen, ValidatorService as ɵeo, QuickSettingsComponent as ɵep, SingleLineEditorComponent as ɵeq, ResponseSelectorComponent as ɵer, MoveComponent as ɵes, LogicComponent as ɵet, AddLogicComponent as ɵeu, ToolkitComponent as ɵev, ErrorMessagePipe as ɵew, QuestionFilterPipe as ɵex, QuestionParserPipe as ɵey, FormatterPipe as ɵez, WorkflowRiskComponent as ɵf, SettingAnonymousComponent as ɵfa, SettingResponseSegmentComponent as ɵfb, PageHeaderComponent as ɵfc, WelcomeThankyouComponent as ɵfd, CurrentPageQuestionPipe as ɵfe, QuestionPageFilterPipe as ɵff, TypeOfPipe as ɵfg, TooltipModule as ɵfh, ToolTipDirective as ɵfi, PopoverModule as ɵfj, PopoverComponent as ɵfk, PopoverService as ɵfl, PopoverDirective as ɵfm, PopoverEventDirective as ɵfn, PopoverLongpressDirective as ɵfo, FormgroupModule$1 as ɵfp, CsCheckboxComponent$1 as ɵfq, CsRadioComponent$1 as ɵfr, CsSwitchComponent$1 as ɵfs, CsRadioGroupComponent$1 as ɵft, CsSelectComponent$2 as ɵfu, PascalPipe$1 as ɵfv, CsCheckboxIndeterminateComponent$1 as ɵfw, NoDataModule$1 as ɵfx, NoDataComponent$1 as ɵfy, BuildModule as ɵfz, AddRiskService as ɵg, MultipleChoiceComponent as ɵga, CheckboxComponent$1 as ɵgb, ImageChoiceComponent as ɵgc, StarRatingComponent as ɵgd, MatrixDropdownComponent as ɵge, DropdownComponent as ɵgf, MatrixRatingScaleComponent as ɵgg, RankingComponent as ɵgh, SliderComponent as ɵgi, MultipleTextboxComponent as ɵgj, DateTimeComponent as ɵgk, ChoiceSettingsPanelComponent as ɵgl, WelcomeComponent$1 as ɵgm, ThankYouComponent$1 as ɵgn, WeightageSelectorComponent as ɵgo, FormgroupModule as ɵgp, CsCheckboxComponent as ɵgq, CsRadioComponent as ɵgr, CsSwitchComponent as ɵgs, CsRadioGroupComponent as ɵgt, CsSelectComponent as ɵgu, PascalPipe as ɵgv, SearchMultiSelectPipe as ɵgw, ClickOutsideDirective as ɵgx, CsCheckboxIndeterminateComponent as ɵgy, PreviewModule as ɵgz, WorkflowComplianceComponent as ɵh, PreviewWrapperComponent as ɵha, PreviewMultipleChoiceComponent as ɵhb, PreviewCheckboxComponent as ɵhc, PreviewImageChoiceComponent as ɵhd, PreviewStarRatingComponent as ɵhe, PreviewSingleTextboxComponent as ɵhf, PreviewCommentBoxComponent as ɵhg, PreviewMatrixDropdownComponent as ɵhh, PreviewDropdownComponent as ɵhi, PreviewMatrixRatingScaleComponent as ɵhj, PreviewRankingComponent as ɵhk, PreviewSliderComponent as ɵhl, PreviewMultipleTextboxComponent as ɵhm, PreviewDateTimeComponent as ɵhn, PreviewFileUploadComponent as ɵho, WelcomeComponent as ɵhp, ThankYouComponent as ɵhq, SelectModule as ɵhr, CsSelectComponent$1 as ɵhs, SelectService as ɵht, CsOptionComponent as ɵhu, AssessmentPreviewModule as ɵhv, CheckboxQuestionComponent as ɵhw, DateTimeComponent$1 as ɵhx, DeviceComponent as ɵhy, FileUploadComponent as ɵhz, ResponsibilityService as ɵi, PreviewComponent as ɵia, PreviewContainerComponent as ɵib, QuickSettingsComponent$1 as ɵic, RadioQuestionComponent as ɵid, SelectQuestionComponent as ɵie, SingleTextboxComponent as ɵif, PageHeaderComponent$1 as ɵig, WelcomeComponent$2 as ɵih, LogicQuestionsModule as ɵii, LogicMultipleChoiceComponent as ɵij, LogicCheckboxComponent as ɵik, LogicImageChoiceComponent as ɵil, LogicStarRatingComponent as ɵim, LogicSingleTextboxComponent as ɵin, LogicCommentBoxComponent as ɵio, LogicDropdownComponent as ɵip, LogicRankingComponent as ɵiq, LogicSliderComponent as ɵir, LogicMultipleTextboxComponent as ɵis, LogicDateTimeComponent as ɵit, EditorLoaderModule as ɵiu, EditorLoaderComponent as ɵiv, LineLoaderModule as ɵiw, LineLoaderComponent as ɵix, VLoaderModule as ɵiy, LoaderComponent$1 as ɵiz, FrequencyService as ɵj, LoaderInlineComponent as ɵja, SmileyDialogModule as ɵjb, SmileyDialogComponent as ɵjc, SnackBarModule as ɵjd, SnackBarComponent as ɵje, SmileyDialogInlineModule as ɵjf, SmileyDialogInlineComponent as ɵjg, ClickOutsideModule as ɵjh, ClickOutsideDirective$1 as ɵji, PopoverHoverModule as ɵjj, PopoverHoverComponent as ɵjk, PopoverHoverService as ɵjl, PopoverHoverDirective as ɵjm, PaginationModule$1 as ɵjn, PaginationComponent$1 as ɵjo, ActionDialogModule as ɵjp, DeleteComponent as ɵjq, DeactivateComponent as ɵjr, ActiveComponent as ɵjs, DuplicateComponent as ɵjt, CreateProgramUiModule as ɵju, TabSelector as ɵjv, TickMarkComponent as ɵjw, FormFieldComponent as ɵjx, FilePillComponent as ɵjy, InputWithPillComponent as ɵjz, ProgramsService as ɵk, SwitchComponent as ɵka, InputTrimDirective as ɵkb, RoleListComponent as ɵkc, CheckboxComponent as ɵkd, VuiFloatingBarComponent as ɵke, SearchPipe as ɵkf, UserGroupListComponent as ɵkg, ListToIdPipe as ɵkh, RefDisconnectPipe as ɵki, AssessmentPickerComponent as ɵkj, AssessmentService as ɵkk, AssessmentLoaderComponent as ɵkl, AssessmentSubLoaderComponent as ɵkm, Pagination as ɵkn, DefineFrameworkListingComponent as ɵko, FrameworkService as ɵkp, CustomFieldComponent as ɵkq, LoaderComponent as ɵkr, LoaderFrameworkComponent as ɵks, PagerPipe as ɵkt, CategoryAllSelectPipe as ɵku, SubCatIndeterPipe as ɵkv, SearchNewPipe as ɵkw, SelectedAssessmentPipe as ɵkx, AssessmentResolverPipe as ɵky, FilterPipe as ɵkz, WorkflowPolicyComponent as ɵl, PaginationModule as ɵla, PaginationComponent as ɵlb, NoDataModule as ɵlc, NoDataComponent as ɵld, PolicyService as ɵm, MoreOptionComponent as ɵn, OwnerListComponent as ɵo, UserRadioListComponent as ɵp, CategoryListComponent as ɵq, CategoryMultiSelectComponent as ɵr, FloatingBarComponent as ɵs, ResponsibilityCentersListComponent as ɵt, WorkflowPaginationComponent as ɵu, AddMultipleRiskComponent as ɵv, BulkViewComponent as ɵw, CheckpointsComponent as ɵx, ConfirmationAlertComponent as ɵy, CheckpointsQuestionsComponent as ɵz };
30242
30268
  //# sourceMappingURL=vcomply-workflow-engine.js.map