vcomply-workflow-engine 2.4.52 → 2.4.53

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.
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Injectable, Optional, EventEmitter, Component, HostListener, Input, Output, ViewChild, Pipe, NgModule, Directive, ElementRef, Renderer2, ChangeDetectorRef, forwardRef, HostBinding, ViewContainerRef, ComponentFactoryResolver, ApplicationRef, Injector, ViewChildren } from '@angular/core';
3
3
  import * as i1 from '@angular/common/http';
4
- import { HttpHeaders, HttpClient, HttpParams, HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
4
+ import { HttpHeaders, HttpClient, HttpParams, HttpClientModule } from '@angular/common/http';
5
5
  import { Subject, BehaviorSubject, takeUntil, retry as retry$1, distinctUntilChanged, take } from 'rxjs';
6
6
  import { JwtHelperService } from '@auth0/angular-jwt';
7
7
  import { retry, map } from 'rxjs/operators';
@@ -25181,6 +25181,7 @@ class UserGroupListComponent {
25181
25181
  this.allGroupSelectedStatus();
25182
25182
  }
25183
25183
  ngOnInit() {
25184
+ this.paginationVisible();
25184
25185
  this.animation = true;
25185
25186
  setTimeout(() => {
25186
25187
  this.animation = false;
@@ -25211,12 +25212,21 @@ class UserGroupListComponent {
25211
25212
  acc), new Map())
25212
25213
  .values());
25213
25214
  }
25215
+ paginationVisible() {
25216
+ var _a;
25217
+ if (((_a = this.userListInfo) === null || _a === void 0 ? void 0 : _a.total_pages) > 1) {
25218
+ this.isPagination = true;
25219
+ }
25220
+ else {
25221
+ this.isPagination = false;
25222
+ }
25223
+ }
25214
25224
  }
25215
25225
  UserGroupListComponent.decorators = [
25216
25226
  { type: Component, args: [{
25217
25227
  selector: 'user-group-list',
25218
- 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 [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search 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'\">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]=\"true\">\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\" 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]=\"true\">\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 groupsList\">\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\">{{group?.group_name}}\r\n <span class=\"counter vx-fs-9 vx-fw-600 vx-pl-1 vx-pr-1 vx-lh-3 vx-tt-uppercase vx-ml-2\">{{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\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\">\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\">Group selected</span>\r\n <span *ngIf=\"selectedGroups?.length > 1\">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>\r\n",
25219
- 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/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 - 15.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 .counter{background:#f1f1f1;border-radius:.125rem;color:#042e7d}::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}.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)}}"]
25228
+ 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 [(ngModel)]=\"searchKey\" type=\"text\" placeholder=\"{{currentTab === 'USER' ? 'Search User' :'Search 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'\">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\" 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 groupsList\">\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\">{{group?.group_name}}\r\n <span class=\"counter vx-fs-9 vx-fw-600 vx-pl-1 vx-pr-1 vx-lh-3 vx-tt-uppercase vx-ml-2\">{{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\" (closeEvent)=\"saveList()\" (closeList)=\"closeList()\">\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\">Group selected</span>\r\n <span *ngIf=\"selectedGroups?.length > 1\">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>\r\n",
25229
+ 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/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 .counter{background:#f1f1f1;border-radius:.125rem;color:#042e7d}::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}.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)}}"]
25220
25230
  },] }
25221
25231
  ];
25222
25232
  UserGroupListComponent.ctorParameters = () => [];
@@ -26283,19 +26293,6 @@ CreateProgramUiModule.decorators = [
26283
26293
  },] }
26284
26294
  ];
26285
26295
 
26286
- class BusinessCycleInterceptor {
26287
- intercept(httpRequest, next) {
26288
- const newReq = httpRequest.clone({
26289
- params: (httpRequest.params ? httpRequest.params : new HttpParams())
26290
- .set('bcycleInterceptMode', 'NO_CYCLE') /*.... Business cycle remove interceptor added here .....*/
26291
- });
26292
- return next.handle(newReq);
26293
- }
26294
- }
26295
- BusinessCycleInterceptor.decorators = [
26296
- { type: Injectable }
26297
- ];
26298
-
26299
26296
  class VComplyWorkflowEngineModule {
26300
26297
  static forRoot(environmentConfig) {
26301
26298
  return {
@@ -26423,7 +26420,7 @@ VComplyWorkflowEngineModule.decorators = [
26423
26420
  WorkflowEngineContainerComponent,
26424
26421
  ],
26425
26422
  providers: [
26426
- { provide: HTTP_INTERCEPTORS, useClass: BusinessCycleInterceptor, multi: true },
26423
+ // { provide: HTTP_INTERCEPTORS, useClass: BusinessCycleInterceptor, multi: true },
26427
26424
  ],
26428
26425
  },] }
26429
26426
  ];
@@ -26436,5 +26433,5 @@ VComplyWorkflowEngineModule.decorators = [
26436
26433
  * Generated bundle index. Do not edit.
26437
26434
  */
26438
26435
 
26439
- export { VComplyWorkflowEngineModule, WorkflowEngineContainerComponent, WorkflowEngineService, UiKitService as ɵa, SnackBarService as ɵb, ReviewFrequencyComponent as ɵba, FrequencyContainerComponent as ɵbb, FrequencyDailyComponent as ɵbc, FrequencyWeeklyComponent as ɵbd, FrequencyMonthlyComponent as ɵbe, FrequencyQuarterlyComponent as ɵbf, FrequencyBiannualComponent as ɵbg, FrequencyAnnualComponent as ɵbh, FrequencyOneTimeComponent as ɵbi, FrequencyRandomComponent as ɵbj, FrequencyOnCompletionOfComponent as ɵbk, FrequencyOngoingComponent as ɵbl, FrequencyTopComponent as ɵbm, FrequencyLifecycleComponent as ɵbn, FrequencyDueDateComponent as ɵbo, FrequencyCheckboxListComponent as ɵbp, FrequencyRadioListComponent as ɵbq, GroupUsersListComponent as ɵbr, AddMultipleResponsibilityComponent as ɵbs, FrequencyBulkService as ɵbt, BulkResponsibilityViewComponent as ɵbu, CheckpointsPolicyContainerComponent as ɵbv, CheckpointsPolicyListComponent as ɵbw, CheckpointsPolicyQuestionsComponent as ɵbx, WorkflowSurveyFormComponent as ɵby, LogAnIssueComponent as ɵbz, AuthService as ɵc, LogIssueService as ɵca, FilterPipe as ɵcb, CheckboxListComponent as ɵcc, RadioListComponent as ɵcd, ListMapperPipe as ɵce, CreateDocumentsComponent as ɵcf, SearchPipe$1 as ɵcg, UserFilterPipe as ɵch, FrameworkListComponent as ɵci, ParentTableComponent as ɵcj, DataTypePipe as ɵck, CheckpointFloatingBarComponent as ɵcl, FormatAndEvidenceComponent as ɵcm, RiskClassificationComponent as ɵcn, DragDropDirective as ɵco, AutofocusDirective as ɵcp, ScrollInViewDirective as ɵcq, ShortMergePipe as ɵcr, SpaceBreakerPipe as ɵcs, FormatHtmlPipe as ɵct, WithinDataPipe as ɵcu, ResponsibilityRiskSelectorComponent as ɵcv, ConditionalFocusDirective as ɵcw, ListLoaderComponent as ɵcx, ArrayFilterPipe as ɵcy, AuditCategoryListComponent as ɵcz, TokenDecoderService as ɵd, DocumentSectionComponent as ɵda, WorkflowAssessmentComponent as ɵdb, AssessmentService$2 as ɵdc, ImportAnAssessmentComponent as ɵdd, AssessmentListComponent as ɵde, AssessmentService$1 as ɵdf, RadioListWithPaginationComponent as ɵdg, LinkTreatmentLoaderComponent as ɵdh, AssessmentListLoaderComponent as ɵdi, AssessmentListSubLoaderComponent as ɵdj, UncategorizedFilterPipe as ɵdk, ProgramListingComponent as ɵdl, WorkflowProgramComponent as ɵdm, ProgramsService as ɵdn, RolesListComponent as ɵdo, CreateAssessmentModule as ɵdp, CreateAssessmentContainerComponent as ɵdq, EditorService as ɵdr, DialogService as ɵds, DialogModule as ɵdt, DialogComponent as ɵdu, InsertionDirective as ɵdv, DialogRef as ɵdw, DialogConfig as ɵdx, QuestionTypeComponent as ɵdy, AddPageDetailsComponent as ɵdz, Configurations as ɵe, AssessmentSettingsComponent as ɵea, ResultCriteriaService as ɵeb, AddSegmentPopupComponent as ɵec, AddResponseSetPopupComponent as ɵed, EditorWrapperComponent as ɵee, ValidatorService as ɵef, QuickSettingsComponent as ɵeg, SingleLineEditorComponent as ɵeh, ResponseSelectorComponent as ɵei, MoveComponent as ɵej, LogicComponent as ɵek, AddLogicComponent as ɵel, ToolkitComponent as ɵem, ErrorMessagePipe as ɵen, QuestionFilterPipe as ɵeo, QuestionParserPipe as ɵep, FormatterPipe as ɵeq, SettingAnonymousComponent as ɵer, SettingResponseSegmentComponent as ɵes, PageHeaderComponent as ɵet, WelcomeThankyouComponent as ɵeu, CurrentPageQuestionPipe as ɵev, QuestionPageFilterPipe as ɵew, TypeOfPipe as ɵex, TooltipModule as ɵey, ToolTipDirective as ɵez, WorkflowRiskComponent as ɵf, PopoverModule as ɵfa, PopoverComponent as ɵfb, PopoverService as ɵfc, PopoverDirective as ɵfd, PopoverEventDirective as ɵfe, PopoverLongpressDirective as ɵff, FormgroupModule$1 as ɵfg, CsCheckboxComponent$1 as ɵfh, CsRadioComponent$1 as ɵfi, CsSwitchComponent$1 as ɵfj, CsRadioGroupComponent$1 as ɵfk, CsSelectComponent$2 as ɵfl, PascalPipe$1 as ɵfm, CsCheckboxIndeterminateComponent$1 as ɵfn, NoDataModule$1 as ɵfo, NoDataComponent$1 as ɵfp, BuildModule as ɵfq, MultipleChoiceComponent as ɵfr, CheckboxComponent$1 as ɵfs, ImageChoiceComponent as ɵft, StarRatingComponent as ɵfu, MatrixDropdownComponent as ɵfv, DropdownComponent as ɵfw, MatrixRatingScaleComponent as ɵfx, RankingComponent as ɵfy, SliderComponent as ɵfz, AddRiskService as ɵg, MultipleTextboxComponent as ɵga, DateTimeComponent as ɵgb, ChoiceSettingsPanelComponent as ɵgc, WelcomeComponent$1 as ɵgd, ThankYouComponent$1 as ɵge, WeightageSelectorComponent as ɵgf, FormgroupModule as ɵgg, CsCheckboxComponent as ɵgh, CsRadioComponent as ɵgi, CsSwitchComponent as ɵgj, CsRadioGroupComponent as ɵgk, CsSelectComponent as ɵgl, PascalPipe as ɵgm, SearchMultiSelectPipe as ɵgn, ClickOutsideDirective as ɵgo, CsCheckboxIndeterminateComponent as ɵgp, PreviewModule as ɵgq, PreviewWrapperComponent as ɵgr, PreviewMultipleChoiceComponent as ɵgs, PreviewCheckboxComponent as ɵgt, PreviewImageChoiceComponent as ɵgu, PreviewStarRatingComponent as ɵgv, PreviewSingleTextboxComponent as ɵgw, PreviewCommentBoxComponent as ɵgx, PreviewMatrixDropdownComponent as ɵgy, PreviewDropdownComponent as ɵgz, WorkflowComplianceComponent as ɵh, PreviewMatrixRatingScaleComponent as ɵha, PreviewRankingComponent as ɵhb, PreviewSliderComponent as ɵhc, PreviewMultipleTextboxComponent as ɵhd, PreviewDateTimeComponent as ɵhe, PreviewFileUploadComponent as ɵhf, WelcomeComponent as ɵhg, ThankYouComponent as ɵhh, SelectModule as ɵhi, CsSelectComponent$1 as ɵhj, SelectService as ɵhk, CsOptionComponent as ɵhl, AssessmentPreviewModule as ɵhm, CheckboxQuestionComponent as ɵhn, DateTimeComponent$1 as ɵho, DeviceComponent as ɵhp, FileUploadComponent as ɵhq, PreviewComponent as ɵhr, PreviewContainerComponent as ɵhs, QuickSettingsComponent$1 as ɵht, RadioQuestionComponent as ɵhu, SelectQuestionComponent as ɵhv, SingleTextboxComponent as ɵhw, PageHeaderComponent$1 as ɵhx, WelcomeComponent$2 as ɵhy, LogicQuestionsModule as ɵhz, ResponsibilityService as ɵi, LogicMultipleChoiceComponent as ɵia, LogicCheckboxComponent as ɵib, LogicImageChoiceComponent as ɵic, LogicStarRatingComponent as ɵid, LogicSingleTextboxComponent as ɵie, LogicCommentBoxComponent as ɵif, LogicDropdownComponent as ɵig, LogicRankingComponent as ɵih, LogicSliderComponent as ɵii, LogicMultipleTextboxComponent as ɵij, LogicDateTimeComponent as ɵik, EditorLoaderModule as ɵil, EditorLoaderComponent as ɵim, LineLoaderModule as ɵin, LineLoaderComponent as ɵio, VLoaderModule as ɵip, LoaderComponent$1 as ɵiq, LoaderInlineComponent as ɵir, SmileyDialogModule as ɵis, SmileyDialogComponent as ɵit, SnackBarModule as ɵiu, SnackBarComponent as ɵiv, SmileyDialogInlineModule as ɵiw, SmileyDialogInlineComponent as ɵix, ClickOutsideModule as ɵiy, ClickOutsideDirective$1 as ɵiz, FrequencyService as ɵj, PopoverHoverModule as ɵja, PopoverHoverComponent as ɵjb, PopoverHoverService as ɵjc, PopoverHoverDirective as ɵjd, PaginationModule$1 as ɵje, PaginationComponent$1 as ɵjf, ActionDialogModule as ɵjg, DeleteComponent as ɵjh, DeactivateComponent as ɵji, ActiveComponent as ɵjj, DuplicateComponent as ɵjk, CreateProgramUiModule as ɵjl, TabSelector as ɵjm, TickMarkComponent as ɵjn, FormFieldComponent as ɵjo, FilePillComponent as ɵjp, InputWithPillComponent as ɵjq, SwitchComponent as ɵjr, InputTrimDirective as ɵjs, RoleListComponent as ɵjt, CheckboxComponent as ɵju, VuiFloatingBarComponent as ɵjv, SearchPipe as ɵjw, UserGroupListComponent as ɵjx, ListToIdPipe as ɵjy, RefDisconnectPipe as ɵjz, WorkflowPolicyComponent as ɵk, AssessmentPickerComponent as ɵka, AssessmentService as ɵkb, AssessmentLoaderComponent as ɵkc, AssessmentSubLoaderComponent as ɵkd, Pagination as ɵke, DefineFrameworkListingComponent as ɵkf, FrameworkService as ɵkg, CustomFieldComponent as ɵkh, LoaderComponent as ɵki, LoaderFrameworkComponent as ɵkj, PagerPipe as ɵkk, CategoryAllSelectPipe as ɵkl, SubCatIndeterPipe as ɵkm, SearchNewPipe as ɵkn, SelectedAssessmentPipe as ɵko, AssessmentResolverPipe as ɵkp, PaginationModule as ɵkq, PaginationComponent as ɵkr, NoDataModule as ɵks, NoDataComponent as ɵkt, BusinessCycleInterceptor as ɵku, PolicyService as ɵl, MoreOptionComponent as ɵm, OwnerListComponent as ɵn, UserRadioListComponent as ɵo, CategoryListComponent as ɵp, CategoryMultiSelectComponent as ɵq, FloatingBarComponent as ɵr, ResponsibilityCentersListComponent as ɵs, WorkflowPaginationComponent as ɵt, AddMultipleRiskComponent as ɵu, BulkViewComponent as ɵv, CheckpointsComponent as ɵw, ConfirmationAlertComponent as ɵx, CheckpointsQuestionsComponent as ɵy, CheckpointsListComponent as ɵz };
26436
+ export { VComplyWorkflowEngineModule, WorkflowEngineContainerComponent, WorkflowEngineService, UiKitService as ɵa, SnackBarService as ɵb, ReviewFrequencyComponent as ɵba, FrequencyContainerComponent as ɵbb, FrequencyDailyComponent as ɵbc, FrequencyWeeklyComponent as ɵbd, FrequencyMonthlyComponent as ɵbe, FrequencyQuarterlyComponent as ɵbf, FrequencyBiannualComponent as ɵbg, FrequencyAnnualComponent as ɵbh, FrequencyOneTimeComponent as ɵbi, FrequencyRandomComponent as ɵbj, FrequencyOnCompletionOfComponent as ɵbk, FrequencyOngoingComponent as ɵbl, FrequencyTopComponent as ɵbm, FrequencyLifecycleComponent as ɵbn, FrequencyDueDateComponent as ɵbo, FrequencyCheckboxListComponent as ɵbp, FrequencyRadioListComponent as ɵbq, GroupUsersListComponent as ɵbr, AddMultipleResponsibilityComponent as ɵbs, FrequencyBulkService as ɵbt, BulkResponsibilityViewComponent as ɵbu, CheckpointsPolicyContainerComponent as ɵbv, CheckpointsPolicyListComponent as ɵbw, CheckpointsPolicyQuestionsComponent as ɵbx, WorkflowSurveyFormComponent as ɵby, LogAnIssueComponent as ɵbz, AuthService as ɵc, LogIssueService as ɵca, FilterPipe as ɵcb, CheckboxListComponent as ɵcc, RadioListComponent as ɵcd, ListMapperPipe as ɵce, CreateDocumentsComponent as ɵcf, SearchPipe$1 as ɵcg, UserFilterPipe as ɵch, FrameworkListComponent as ɵci, ParentTableComponent as ɵcj, DataTypePipe as ɵck, CheckpointFloatingBarComponent as ɵcl, FormatAndEvidenceComponent as ɵcm, RiskClassificationComponent as ɵcn, DragDropDirective as ɵco, AutofocusDirective as ɵcp, ScrollInViewDirective as ɵcq, ShortMergePipe as ɵcr, SpaceBreakerPipe as ɵcs, FormatHtmlPipe as ɵct, WithinDataPipe as ɵcu, ResponsibilityRiskSelectorComponent as ɵcv, ConditionalFocusDirective as ɵcw, ListLoaderComponent as ɵcx, ArrayFilterPipe as ɵcy, AuditCategoryListComponent as ɵcz, TokenDecoderService as ɵd, DocumentSectionComponent as ɵda, WorkflowAssessmentComponent as ɵdb, AssessmentService$2 as ɵdc, ImportAnAssessmentComponent as ɵdd, AssessmentListComponent as ɵde, AssessmentService$1 as ɵdf, RadioListWithPaginationComponent as ɵdg, LinkTreatmentLoaderComponent as ɵdh, AssessmentListLoaderComponent as ɵdi, AssessmentListSubLoaderComponent as ɵdj, UncategorizedFilterPipe as ɵdk, ProgramListingComponent as ɵdl, WorkflowProgramComponent as ɵdm, ProgramsService as ɵdn, RolesListComponent as ɵdo, CreateAssessmentModule as ɵdp, CreateAssessmentContainerComponent as ɵdq, EditorService as ɵdr, DialogService as ɵds, DialogModule as ɵdt, DialogComponent as ɵdu, InsertionDirective as ɵdv, DialogRef as ɵdw, DialogConfig as ɵdx, QuestionTypeComponent as ɵdy, AddPageDetailsComponent as ɵdz, Configurations as ɵe, AssessmentSettingsComponent as ɵea, ResultCriteriaService as ɵeb, AddSegmentPopupComponent as ɵec, AddResponseSetPopupComponent as ɵed, EditorWrapperComponent as ɵee, ValidatorService as ɵef, QuickSettingsComponent as ɵeg, SingleLineEditorComponent as ɵeh, ResponseSelectorComponent as ɵei, MoveComponent as ɵej, LogicComponent as ɵek, AddLogicComponent as ɵel, ToolkitComponent as ɵem, ErrorMessagePipe as ɵen, QuestionFilterPipe as ɵeo, QuestionParserPipe as ɵep, FormatterPipe as ɵeq, SettingAnonymousComponent as ɵer, SettingResponseSegmentComponent as ɵes, PageHeaderComponent as ɵet, WelcomeThankyouComponent as ɵeu, CurrentPageQuestionPipe as ɵev, QuestionPageFilterPipe as ɵew, TypeOfPipe as ɵex, TooltipModule as ɵey, ToolTipDirective as ɵez, WorkflowRiskComponent as ɵf, PopoverModule as ɵfa, PopoverComponent as ɵfb, PopoverService as ɵfc, PopoverDirective as ɵfd, PopoverEventDirective as ɵfe, PopoverLongpressDirective as ɵff, FormgroupModule$1 as ɵfg, CsCheckboxComponent$1 as ɵfh, CsRadioComponent$1 as ɵfi, CsSwitchComponent$1 as ɵfj, CsRadioGroupComponent$1 as ɵfk, CsSelectComponent$2 as ɵfl, PascalPipe$1 as ɵfm, CsCheckboxIndeterminateComponent$1 as ɵfn, NoDataModule$1 as ɵfo, NoDataComponent$1 as ɵfp, BuildModule as ɵfq, MultipleChoiceComponent as ɵfr, CheckboxComponent$1 as ɵfs, ImageChoiceComponent as ɵft, StarRatingComponent as ɵfu, MatrixDropdownComponent as ɵfv, DropdownComponent as ɵfw, MatrixRatingScaleComponent as ɵfx, RankingComponent as ɵfy, SliderComponent as ɵfz, AddRiskService as ɵg, MultipleTextboxComponent as ɵga, DateTimeComponent as ɵgb, ChoiceSettingsPanelComponent as ɵgc, WelcomeComponent$1 as ɵgd, ThankYouComponent$1 as ɵge, WeightageSelectorComponent as ɵgf, FormgroupModule as ɵgg, CsCheckboxComponent as ɵgh, CsRadioComponent as ɵgi, CsSwitchComponent as ɵgj, CsRadioGroupComponent as ɵgk, CsSelectComponent as ɵgl, PascalPipe as ɵgm, SearchMultiSelectPipe as ɵgn, ClickOutsideDirective as ɵgo, CsCheckboxIndeterminateComponent as ɵgp, PreviewModule as ɵgq, PreviewWrapperComponent as ɵgr, PreviewMultipleChoiceComponent as ɵgs, PreviewCheckboxComponent as ɵgt, PreviewImageChoiceComponent as ɵgu, PreviewStarRatingComponent as ɵgv, PreviewSingleTextboxComponent as ɵgw, PreviewCommentBoxComponent as ɵgx, PreviewMatrixDropdownComponent as ɵgy, PreviewDropdownComponent as ɵgz, WorkflowComplianceComponent as ɵh, PreviewMatrixRatingScaleComponent as ɵha, PreviewRankingComponent as ɵhb, PreviewSliderComponent as ɵhc, PreviewMultipleTextboxComponent as ɵhd, PreviewDateTimeComponent as ɵhe, PreviewFileUploadComponent as ɵhf, WelcomeComponent as ɵhg, ThankYouComponent as ɵhh, SelectModule as ɵhi, CsSelectComponent$1 as ɵhj, SelectService as ɵhk, CsOptionComponent as ɵhl, AssessmentPreviewModule as ɵhm, CheckboxQuestionComponent as ɵhn, DateTimeComponent$1 as ɵho, DeviceComponent as ɵhp, FileUploadComponent as ɵhq, PreviewComponent as ɵhr, PreviewContainerComponent as ɵhs, QuickSettingsComponent$1 as ɵht, RadioQuestionComponent as ɵhu, SelectQuestionComponent as ɵhv, SingleTextboxComponent as ɵhw, PageHeaderComponent$1 as ɵhx, WelcomeComponent$2 as ɵhy, LogicQuestionsModule as ɵhz, ResponsibilityService as ɵi, LogicMultipleChoiceComponent as ɵia, LogicCheckboxComponent as ɵib, LogicImageChoiceComponent as ɵic, LogicStarRatingComponent as ɵid, LogicSingleTextboxComponent as ɵie, LogicCommentBoxComponent as ɵif, LogicDropdownComponent as ɵig, LogicRankingComponent as ɵih, LogicSliderComponent as ɵii, LogicMultipleTextboxComponent as ɵij, LogicDateTimeComponent as ɵik, EditorLoaderModule as ɵil, EditorLoaderComponent as ɵim, LineLoaderModule as ɵin, LineLoaderComponent as ɵio, VLoaderModule as ɵip, LoaderComponent$1 as ɵiq, LoaderInlineComponent as ɵir, SmileyDialogModule as ɵis, SmileyDialogComponent as ɵit, SnackBarModule as ɵiu, SnackBarComponent as ɵiv, SmileyDialogInlineModule as ɵiw, SmileyDialogInlineComponent as ɵix, ClickOutsideModule as ɵiy, ClickOutsideDirective$1 as ɵiz, FrequencyService as ɵj, PopoverHoverModule as ɵja, PopoverHoverComponent as ɵjb, PopoverHoverService as ɵjc, PopoverHoverDirective as ɵjd, PaginationModule$1 as ɵje, PaginationComponent$1 as ɵjf, ActionDialogModule as ɵjg, DeleteComponent as ɵjh, DeactivateComponent as ɵji, ActiveComponent as ɵjj, DuplicateComponent as ɵjk, CreateProgramUiModule as ɵjl, TabSelector as ɵjm, TickMarkComponent as ɵjn, FormFieldComponent as ɵjo, FilePillComponent as ɵjp, InputWithPillComponent as ɵjq, SwitchComponent as ɵjr, InputTrimDirective as ɵjs, RoleListComponent as ɵjt, CheckboxComponent as ɵju, VuiFloatingBarComponent as ɵjv, SearchPipe as ɵjw, UserGroupListComponent as ɵjx, ListToIdPipe as ɵjy, RefDisconnectPipe as ɵjz, WorkflowPolicyComponent as ɵk, AssessmentPickerComponent as ɵka, AssessmentService as ɵkb, AssessmentLoaderComponent as ɵkc, AssessmentSubLoaderComponent as ɵkd, Pagination as ɵke, DefineFrameworkListingComponent as ɵkf, FrameworkService as ɵkg, CustomFieldComponent as ɵkh, LoaderComponent as ɵki, LoaderFrameworkComponent as ɵkj, PagerPipe as ɵkk, CategoryAllSelectPipe as ɵkl, SubCatIndeterPipe as ɵkm, SearchNewPipe as ɵkn, SelectedAssessmentPipe as ɵko, AssessmentResolverPipe as ɵkp, PaginationModule as ɵkq, PaginationComponent as ɵkr, NoDataModule as ɵks, NoDataComponent as ɵkt, PolicyService as ɵl, MoreOptionComponent as ɵm, OwnerListComponent as ɵn, UserRadioListComponent as ɵo, CategoryListComponent as ɵp, CategoryMultiSelectComponent as ɵq, FloatingBarComponent as ɵr, ResponsibilityCentersListComponent as ɵs, WorkflowPaginationComponent as ɵt, AddMultipleRiskComponent as ɵu, BulkViewComponent as ɵv, CheckpointsComponent as ɵw, ConfirmationAlertComponent as ɵx, CheckpointsQuestionsComponent as ɵy, CheckpointsListComponent as ɵz };
26440
26437
  //# sourceMappingURL=vcomply-workflow-engine.js.map