@sunbird-cb/consumption 0.0.65 → 0.0.67

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.
@@ -124,7 +124,7 @@ var DataPointsComponent = /** @class */ (function () {
124
124
  DataPointsComponent.decorators = [
125
125
  { type: Component, args: [{
126
126
  selector: 'sb-uic-data-points',
127
- template: "<div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && !isDataLoading\">\r\n <div *ngFor=\"let obj of objectData; let last = last\" class=\"\">\r\n <div class=\"element-div\" [ngClass]=\"{'linebreak': obj?.linebreak && !last}\">\r\n <div class=\"flex flex-row gap-3 items-top\">\r\n <div>\r\n <img class=\"objIcon\" [src]=\"obj.icon\" [style.color]=\"obj?.iconColor\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{obj.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"objDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full customdiv\" *ngIf=\"layoutType === 'multipleRows-V2' && !isDataLoading\">\r\n <div class=\"logodiv margin-bottom-s\">\r\n <img alt=\"Application Logo\" class=\"logoimg\" src=\"/assets/instances/eagle/app_logos/KarmayogiBharat_Logo_Horizontal.svg\">\r\n </div>\r\n <div *ngFor=\"let obj of objectData; let i = index\">\r\n <div class=\"flex flex-row gap-3 {{(i+1 === objectData.length ? '' : 'pb-5')}}\">\r\n <div class=\"v2-icons-div\">\r\n <div class=\"v2-icon-contaier\"\r\n [style.background]=\"obj?.iconBackgroupColorV2\"\r\n [style.borderColor]=\"obj?.valueColor\">\r\n <img class=\"v2-objIcon\" [src]=\"obj.icon\" />\r\n </div>\r\n </div>\r\n <div class=\"v2-content-div\">\r\n <div class=\"flex flex-col\">\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColorV2\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColorV2\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div class=\"v2-label\" [style.color]=\"obj?.labelColorV2\">\r\n {{obj?.label}}\r\n </div>\r\n <div class=\"flex flex-row dot-container\" *ngIf=\"i+1 !== objectData.length\">\r\n <div class=\"v2-dot\"\r\n [style.background]=\"obj?.valueColorV2\"\r\n [style.borderColor]=\"obj?.labelColorV2\"></div>\r\n <div class=\"v2-border\" [style.background]=\"obj?.labelColorV2\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow-v2' && !isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div flex-item\" [style.background]=\"obj?.backgroundV2\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div class=\"mob-image-container-v2\" [style.borderColor]=\"obj?.valueColorV2\">\r\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon-v2\" [src]=\"obj.icon\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColorMobV2\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColorMobV2\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColorV2\" class=\"mobjDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow' && !isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div {{obj?.background}} flex-item\" [style.background]=\"obj?.background\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon\" [src]=\"obj.icon\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{obj?.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\r\n <div class=\"top-container\">\r\n <div class=\"flex-container\" *ngFor=\"let chunk of customArray\">\r\n <div *ngFor=\"let item of chunk\">\r\n <div class=\"flex-item\">\r\n <div class=\"flex flex-row gap-5 infra-element-div\">\r\n <div>\r\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"!(item && item.value)\">0</div>\r\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"(item && item.value)\">\r\n {{item?.value | number: item.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"item?.labelColor\" class=\"custom-opacity infra-objDescription padding-top-s\">{{item?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n </div> \r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleFlexeRow' && !isDataLoading\">\r\n <div class=\"flex space-around\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"singleFlexeRow-div singleFlexeRow flex-item\">\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <img [style.color]=\"obj?.iconColor\" class=\"singleFlexeRowIcon\" [src]=\"obj.icon\">\r\n </div>\r\n <div class=\"flex flex-col\">\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- skeleton loaders -->\r\n\r\n<ng-container>\r\n <div class=\"w-full metrics-web customdiv\" *ngIf=\"layoutType === 'multipleRows-V2' && isDataLoading\">\r\n <div *ngFor=\"let obj of [1,2,3,4]l let i = index\">\r\n <div class=\"flex flex-row gap-4 {{(i+1 === objectData.length ? '' : 'pb-5')}}\">\r\n <div class=\"v2-icons-div\">\r\n <div class=\"v2-icon-contaier\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'55px'\"\r\n [height]=\"'55px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n <div class=\"v2-content-div\">\r\n <div class=\"flex flex-col\">\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColor\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n <div class=\"v2-label\" [style.color]=\"obj?.labelColor\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'16px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container>\r\n <div class=\"w-full metrics-web customdiv\" *ngIf=\"layoutType === 'multipleRows' && isDataLoading\">\r\n <div *ngFor=\"let obj of [0,1,2,3]\" class=\"\">\r\n <div class=\"element-div linebreak\" >\r\n <div class=\"flex flex-row gap-3 items-top\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'32px'\"\r\n [height]=\"'32px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'150px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'singleFlexeRow' && isDataLoading\">\r\n <div class=\"flex\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"singleFlexeRow-div flex-item\">\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div class=\"flex flex-col\">\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'20px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'singleRow' && isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div {{obj?.background}} flex-item\" [style.background]=\"obj?.background\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'20px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'18px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'singleRow-v2' && isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div flex-item\" [style.background]=\"obj?.backgroundV2\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'18px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n",
127
+ template: "<div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && !isDataLoading\">\r\n <div *ngFor=\"let obj of objectData; let last = last\" class=\"\">\r\n <div class=\"element-div\" [ngClass]=\"{'linebreak': obj?.linebreak && !last}\">\r\n <div class=\"flex flex-row gap-3 items-top\">\r\n <div>\r\n <img class=\"objIcon\" [src]=\"obj.icon\" [style.color]=\"obj?.iconColor\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{obj.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"objDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full customdiv\" *ngIf=\"layoutType === 'multipleRows-V2' && !isDataLoading\">\r\n <div class=\"logodiv margin-bottom-s\">\r\n <img alt=\"Application Logo\" class=\"logoimg\" src=\"/assets/instances/eagle/app_logos/KarmayogiBharat_Logo_Horizontal.svg\">\r\n </div>\r\n <div *ngFor=\"let obj of objectData; let i = index\">\r\n <div class=\"flex flex-row gap-3 {{(i+1 === objectData.length ? '' : 'pb-5')}}\">\r\n <div class=\"v2-icons-div\">\r\n <div class=\"v2-icon-contaier\"\r\n [style.background]=\"obj?.iconBackgroupColorV2\"\r\n [style.borderColor]=\"obj?.valueColorV2\">\r\n <img class=\"v2-objIcon\" [src]=\"obj.icon\" />\r\n </div>\r\n </div>\r\n <div class=\"v2-content-div\">\r\n <div class=\"flex flex-col\">\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColorV2\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColorV2\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div class=\"v2-label\" [style.color]=\"obj?.labelColorV2\">\r\n {{obj?.label}}\r\n </div>\r\n <div class=\"flex flex-row dot-container\" *ngIf=\"i+1 !== objectData.length\">\r\n <div class=\"v2-dot\"\r\n [style.background]=\"obj?.valueColorV2\"\r\n [style.borderColor]=\"obj?.labelColorV2\"></div>\r\n <div class=\"v2-border\" [style.background]=\"obj?.labelColorV2\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow-v2' && !isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div flex-item\" [style.background]=\"obj?.backgroundV2\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div class=\"mob-image-container-v2\" [style.borderColor]=\"obj?.valueColorV2\">\r\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon-v2\" [src]=\"obj.icon\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColorMobV2\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColorMobV2\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColorV2\" class=\"mobjDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow' && !isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div {{obj?.background}} flex-item\" [style.background]=\"obj?.background\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon\" [src]=\"obj.icon\">\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n {{obj?.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\r\n <div class=\"top-container\">\r\n <div class=\"flex-container\" *ngFor=\"let chunk of customArray\">\r\n <div *ngFor=\"let item of chunk\">\r\n <div class=\"flex-item\">\r\n <div class=\"flex flex-row gap-5 infra-element-div\">\r\n <div>\r\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"!(item && item.value)\">0</div>\r\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"(item && item.value)\">\r\n {{item?.value | number: item.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\r\n </div>\r\n <div [style.color]=\"item?.labelColor\" class=\"custom-opacity infra-objDescription padding-top-s\">{{item?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n </div> \r\n</div>\r\n\r\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleFlexeRow' && !isDataLoading\">\r\n <div class=\"flex space-around\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"singleFlexeRow-div singleFlexeRow flex-item\">\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <img [style.color]=\"obj?.iconColor\" class=\"singleFlexeRowIcon\" [src]=\"obj.icon\">\r\n </div>\r\n <div class=\"flex flex-col\">\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">0</div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\r\n {{converToIndianSystem(obj?.value)}}\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">{{obj?.label}}</div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- skeleton loaders -->\r\n\r\n<ng-container>\r\n <div class=\"w-full metrics-web customdiv\" *ngIf=\"layoutType === 'multipleRows-V2' && isDataLoading\">\r\n <div *ngFor=\"let obj of [1,2,3,4]l let i = index\">\r\n <div class=\"flex flex-row gap-4 {{(i+1 === objectData.length ? '' : 'pb-5')}}\">\r\n <div class=\"v2-icons-div\">\r\n <div class=\"v2-icon-contaier\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'55px'\"\r\n [height]=\"'55px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n <div class=\"v2-content-div\">\r\n <div class=\"flex flex-col\">\r\n <div class=\"v2-value\" [style.color]=\"obj?.valueColor\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n <div class=\"v2-label\" [style.color]=\"obj?.labelColor\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'16px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n</ng-container>\r\n\r\n<ng-container>\r\n <div class=\"w-full metrics-web customdiv\" *ngIf=\"layoutType === 'multipleRows' && isDataLoading\">\r\n <div *ngFor=\"let obj of [0,1,2,3]\" class=\"\">\r\n <div class=\"element-div linebreak\" >\r\n <div class=\"flex flex-row gap-3 items-top\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'32px'\"\r\n [height]=\"'32px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'150px'\"\r\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'singleFlexeRow' && isDataLoading\">\r\n <div class=\"flex\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"singleFlexeRow-div flex-item\">\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div class=\"flex flex-col\">\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'20px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'singleRow' && isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div {{obj?.background}} flex-item\" [style.background]=\"obj?.background\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'20px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'18px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"w-full\" *ngIf=\"layoutType === 'singleRow-v2' && isDataLoading\">\r\n <div class=\"flex gap-4\">\r\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\r\n <div class=\"melement-div flex-item\" [style.background]=\"obj?.backgroundV2\" >\r\n <div class=\"flex flex-row gap-3\">\r\n <div>\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">\r\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'18px'\">\r\n </sb-uic-skeleton-loader>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n",
128
128
  styles: ["@font-face{font-family:Poppins;src:url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-400-normal.woff2) format('woff2'),url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-400-normal.woff) format('woff')}.mob-image-container-v2{height:28px;width:28px;background:#fff;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid #fff}.mobjIcon-v2{width:18px;height:18px}.v2-icon-contaier{height:45px;width:45px;border:1px solid #fff;border-radius:50%;align-items:center;display:flex;justify-content:center}.v2-value{font-family:Poppins;font-size:20px;font-weight:600;line-height:20px;text-align:left;padding-bottom:5px;padding-left:10px}.v2-label{font-family:Poppins;font-size:12px;font-weight:400;line-height:18px;text-align:left;padding-bottom:5px;padding-left:10px}.dot-container{align-items:center}.v2-dot{width:9px;height:9px;border:2px solid #fff;border-radius:50%}.v2-border{height:1px;width:182px}.white{color:#fff}.custom-opacity{opacity:.7}.black{color:#000}.objIcon{width:32px;height:32px}.mobjIcon{width:24px;height:24px}.objHeader{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left}.mobjHeader{font-family:Montserrat;font-size:16px;font-weight:600;line-height:19.5px;text-align:left}.objDescription{font-family:Lato;font-size:16px;font-weight:400;line-height:19.2px;text-align:left}.mobjDescription{font-family:Lato;font-size:14px;font-weight:400;line-height:16.8px;text-align:left}.metrics-web{height:inherit;overflow-y:auto}.element-div{padding:25px 0;margin:0 25px}.linebreak{border-bottom:1px solid rgba(0,0,0,.16)}.singleFlexeRow-flex-item{flex:0 0 auto;white-space:nowrap}.singleFlexeRow-div{padding:16px;border-radius:15px}.singleFlexeRowHeader{font-family:Montserrat;font-size:20px;font-weight:600;line-height:24.38px;text-align:left}.singleFlexeRowDescription{font-family:Lato;font-size:14px;font-weight:400;line-height:16.8px;text-align:left}.singleFlexeRowIcon{width:24px;height:24px}.melement-div{padding:16px;border-radius:15px;width:249px}.banner-metrics{background:linear-gradient(180deg,#f9cb97 -107.59%,#ef951e 110.74%)}.infra-element-div{min-width:325px;padding:25px 0;align-items:baseline}.infra-objIcon{width:32px;height:32px}.infra-objHeader{font-family:Montserrat;font-size:36px;font-weight:600;line-height:29.26px;text-align:left}.infra-objDescription{font-family:Lato;font-size:16px;font-weight:400;line-height:19.2px;text-align:left;width:230px;text-overflow:ellipsis;overflow:hidden}.flex-container{display:flex}.top-container{overflow-x:auto;width:100%}::-webkit-scrollbar{height:4px}::-webkit-scrollbar-track{border-radius:10px;background:#000}::-webkit-scrollbar-thumb{background:#cccc;border-radius:10px}.flex-item{flex:0 0 auto;white-space:nowrap;min-width:200px}.space-around{justify-content:space-evenly}@media screen and (max-width:768px){.infra-objIcon{width:24px;height:24px}.infra-objHeader{font-size:24px}.infra-element-div{min-width:250px;padding:15px 0 25px}}@media screen and (min-width:1280px){.customdiv{margin-left:24%}}@media screen and (min-width:1690px){.customdiv{margin-left:34%}}@media screen and (min-width:1904px){.customdiv{margin-left:44%}}.logodiv{background:#fff;width:150px;border-radius:45px;text-align:center;padding:8px 0 2px}.logoimg{width:114px}"]
129
129
  }] }
130
130
  ];
@@ -160,4 +160,4 @@ if (false) {
160
160
  /** @type {?} */
161
161
  DataPointsComponent.prototype.insightSvc;
162
162
  }
163
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1wb2ludHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHN1bmJpcmQtY2IvY29uc3VtcHRpb24vIiwic291cmNlcyI6WyJsaWIvX2NvbW1vbi9kYXRhLXBvaW50cy9kYXRhLXBvaW50cy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUV4RTtJQWNFLDZCQUFtQixVQUE2QjtRQUE3QixlQUFVLEdBQVYsVUFBVSxDQUFtQjtRQVB2QyxlQUFVLEdBQVcsRUFBRSxDQUFBO1FBQ3ZCLHFCQUFnQixHQUFZLEtBQUssQ0FBQTtRQUNqQyxlQUFVLEdBQVMsRUFBRSxDQUFBO1FBQ3JCLGVBQVUsR0FBUSxFQUFFLENBQUE7UUFDN0IsZ0JBQVcsR0FBWSxFQUFFLENBQUE7UUFDekIsa0JBQWEsR0FBWSxLQUFLLENBQUE7SUFFc0IsQ0FBQzs7OztJQUVyRCxzQ0FBUTs7O0lBQVI7UUFDRSxJQUFJLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxZQUFZLEVBQUU7WUFDdkQsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsQ0FBQTtTQUNuRTtRQUNELElBQUcsSUFBSSxDQUFDLGdCQUFnQixFQUFFO1lBQ3hCLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFBO1lBQ3pCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQTtTQUNyQjtJQUNILENBQUM7Ozs7O0lBRUQsK0NBQWlCOzs7O0lBQWpCLFVBQWtCLEdBQVU7O1lBQ3BCLElBQUksR0FBWSxFQUFFO1FBQ3hCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLENBQUMs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eUNBQWdDOztJQUNoQywrQ0FBMEM7O0lBQzFDLHlDQUE4Qjs7SUFDOUIseUNBQTZCOztJQUM3QiwwQ0FBeUI7O0lBQ3pCLDRDQUE4Qjs7SUFFbEIseUNBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEluc2l0ZURhdGFTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vX3NlcnZpY2VzL2luc2l0ZS1kYXRhLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdzYi11aWMtZGF0YS1wb2ludHMnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRhLXBvaW50cy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZGF0YS1wb2ludHMuY29tcG9uZW50LmNzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBEYXRhUG9pbnRzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKSBvYmplY3REYXRhOiBhbnlcclxuICBASW5wdXQoKSBsYXlvdXRUeXBlOiBzdHJpbmcgPSAnJ1xyXG4gIEBJbnB1dCgpIGZldGNoRGF0YUZyb21BcGk6IGJvb2xlYW4gPSBmYWxzZVxyXG4gIEBJbnB1dCgpIHByb3ZpZGVySWQgOiBhbnkgPSAnJ1xyXG4gIEBJbnB1dCgpIHBhZ2VMYXlvdXQ6IGFueSA9ICcnXHJcbiAgY3VzdG9tQXJyYXk6IGFueVtdW10gPSBbXVxyXG4gIGlzRGF0YUxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZVxyXG4gIFxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBpbnNpZ2h0U3ZjOiBJbnNpdGVEYXRhU2VydmljZSkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCkge1xyXG4gICAgaWYgKHRoaXMub2JqZWN0RGF0YSAmJiB0aGlzLmxheW91dFR5cGUgPT09ICdncmlkTGF5b3V0Jykge1xyXG4gICAgICB0aGlzLmN1c3RvbUFycmF5ID0gdGhpcy5jcmVhdGVDdXN0b21BcnJheSh0aGlzLm9iamVjdERhdGEubWV0cmljcylcclxuICAgIH1cclxuICAgIGlmKHRoaXMuZmV0Y2hEYXRhRnJvbUFwaSkge1xyXG4gICAgICB0aGlzLmlzRGF0YUxvYWRpbmcgPSB0cnVlXHJcbiAgICAgIHRoaXMuZ2V0SW5zaXRlRGF0YSgpXHJcbiAgICB9XHJcbiAgfSAgXHJcblxyXG4gIGNyZWF0ZUN1c3RvbUFycmF5KGFycjogYW55W10pOiBhbnlbXVtdIHtcclxuICAgIGNvbnN0IG5CeW46IGFueVtdW10gPSBbXVxyXG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCBhcnIubGVuZ3RoOyBpICs9IHRoaXMub2JqZWN0RGF0YS5kYXRhQ29sU3Bhbikge1xyXG4gICAgICBuQnluLnB1c2goYXJyLnNsaWNlKGksIGkgKyB0aGlzLm9iamVjdERhdGEuZGF0YUNvbFNwYW4pKVxyXG4gICAgfVxyXG4gICAgcmV0dXJuIG5CeW4gICBcclxuICB9XHJcblxyXG4gIGdldEluc2l0ZURhdGEoKXtcclxuICAgIGxldCByZXF1ZXN0OiBhbnkgPSB7fVxyXG4gICAgcmVxdWVzdCAgPSB7XHJcbiAgICAgIFwicmVxdWVzdFwiOiB7XHJcbiAgICAgICAgICBcImZpbHRlcnNcIjoge1xyXG4gICAgICAgICAgICAgIFwib3JnYW5pc2F0aW9uc1wiOiBbXHJcbiAgICAgICAgICAgICAgICAgIHRoaXMucHJvdmlkZXJJZFxyXG4gICAgICAgICAgICAgIF1cclxuICAgICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgfVxyXG4gICAgaWYgKHRoaXMucGFnZUxheW91dCAmJiB0aGlzLnBhZ2VMYXlvdXQgPT09ICdtZG8nKSB7XHJcbiAgICAgIHJlcXVlc3QgID0ge1xyXG4gICAgICAgIFwicmVxdWVzdFwiOiB7XHJcbiAgICAgICAgICAgIFwiZmlsdGVyc1wiOiB7XHJcbiAgICAgICAgICAgICAgXCJyZXF1ZXN0VHlwZVwiOiBcIk1ET19JTlNJR0hUXCIsXHJcbiAgICAgICAgICAgICAgICBcIm9yZ2FuaXNhdGlvbnNcIjogW1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMucHJvdmlkZXJJZFxyXG4gICAgICAgICAgICAgICAgXVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgICB0aGlzLmluc2lnaHRTdmMuZmV0Y2hTZWFyY2hEYXRhKHJlcXVlc3QpLnN1YnNjcmliZSgocmVzOiBhbnkpPT4ge1xyXG4gICAgICBpZihyZXMgJiYgcmVzLnJlc3VsdCAmJiByZXMucmVzdWx0LnJlc3BvbnNlICYmIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzICYmIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzLmxlbmd0aCkge1xyXG4gICAgICAgIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzLmZvckVhY2goKG51ZGdlRGF0YTogYW55KSA9PiB7XHJcbiAgICAgICAgICBpZih0aGlzLnByb3ZpZGVySWQgJiYgdGhpcy5wcm92aWRlcklkID09PSBudWRnZURhdGEub3JnSWQpIHtcclxuICAgICAgICAgICAgdGhpcy5vYmplY3REYXRhID0gbnVkZ2VEYXRhLmRhdGFcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICB9XHJcbiAgICAgIHRoaXMuaXNEYXRhTG9hZGluZyA9IGZhbHNlXHJcbiAgICB9KVxyXG5cclxuICB9XHJcblxyXG4gIGNvbnZlclRvSW5kaWFuU3lzdGVtKHZhbHVlOiBhbnkpIHtcclxuICAgIGxldCBudW1TdHIgPSB2YWx1ZS50b1N0cmluZygpXHJcbiAgICBsZXQgW2ludGVnZXJQYXJ0LCBkZWNpbWFsUGFydF0gPSBudW1TdHIuc3BsaXQoJy4nKVxyXG4gICAgbGV0IGxhc3RUaHJlZSA9IGludGVnZXJQYXJ0LnNsaWNlKC0zKTtcclxuICAgIGxldCBvdGhlck51bWJlcnMgPSBpbnRlZ2VyUGFydC5zbGljZSgwLCAtMyk7XHJcbiAgICBpZiAob3RoZXJOdW1iZXJzICE9PSAnJykge1xyXG4gICAgICBsYXN0VGhyZWUgPSAnLCcgKyBsYXN0VGhyZWU7XHJcbiAgICB9XHJcbiAgICBsZXQgZm9ybWF0dGVkSW50ZWdlclBhcnQgPSBvdGhlck51bWJlcnMucmVwbGFjZSgvXFxCKD89KFxcZHsyfSkrKD8hXFxkKSkvZywgJywnKSArIGxhc3RUaHJlZTtcclxuICAgIGNvbnN0IHJlc3VsdCA9IGRlY2ltYWxQYXJ0ID8gYCR7Zm9ybWF0dGVkSW50ZWdlclBhcnR9LiR7ZGVjaW1hbFBhcnQuc3Vic3RyKDAsMil9YCA6IGZvcm1hdHRlZEludGVnZXJQYXJ0O1xyXG4gICAgcmV0dXJuIHJlc3VsdFxyXG4gIH1cclxufVxyXG4iXX0=
163
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS1wb2ludHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQHN1bmJpcmQtY2IvY29uc3VtcHRpb24vIiwic291cmNlcyI6WyJsaWIvX2NvbW1vbi9kYXRhLXBvaW50cy9kYXRhLXBvaW50cy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUV4RTtJQWNFLDZCQUFtQixVQUE2QjtRQUE3QixlQUFVLEdBQVYsVUFBVSxDQUFtQjtRQVB2QyxlQUFVLEdBQVcsRUFBRSxDQUFBO1FBQ3ZCLHFCQUFnQixHQUFZLEtBQUssQ0FBQTtRQUNqQyxlQUFVLEdBQVMsRUFBRSxDQUFBO1FBQ3JCLGVBQVUsR0FBUSxFQUFFLENBQUE7UUFDN0IsZ0JBQVcsR0FBWSxFQUFFLENBQUE7UUFDekIsa0JBQWEsR0FBWSxLQUFLLENBQUE7SUFFc0IsQ0FBQzs7OztJQUVyRCxzQ0FBUTs7O0lBQVI7UUFDRSxJQUFJLElBQUksQ0FBQyxVQUFVLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxZQUFZLEVBQUU7WUFDdkQsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsQ0FBQTtTQUNuRTtRQUNELElBQUcsSUFBSSxDQUFDLGdCQUFnQixFQUFFO1lBQ3hCLElBQUksQ0FBQyxhQUFhLEdBQUcsSUFBSSxDQUFBO1lBQ3pCLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQTtTQUNyQjtJQUNILENBQUM7Ozs7O0lBRUQsK0NBQWlCOzs7O0lBQWpCLFVBQWtCLEdBQVU7O1lBQ3BCLElBQUksR0FBWSxFQUFFO1FBQ3hCLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLENBQUMs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eUNBQWdDOztJQUNoQywrQ0FBMEM7O0lBQzFDLHlDQUE4Qjs7SUFDOUIseUNBQTZCOztJQUM3QiwwQ0FBeUI7O0lBQ3pCLDRDQUE4Qjs7SUFFbEIseUNBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEluc2l0ZURhdGFTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vX3NlcnZpY2VzL2luc2l0ZS1kYXRhLnNlcnZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdzYi11aWMtZGF0YS1wb2ludHMnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRhLXBvaW50cy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZGF0YS1wb2ludHMuY29tcG9uZW50LmNzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBEYXRhUG9pbnRzQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKSBvYmplY3REYXRhOiBhbnlcclxuICBASW5wdXQoKSBsYXlvdXRUeXBlOiBzdHJpbmcgPSAnJ1xyXG4gIEBJbnB1dCgpIGZldGNoRGF0YUZyb21BcGk6IGJvb2xlYW4gPSBmYWxzZVxyXG4gIEBJbnB1dCgpIHByb3ZpZGVySWQgOiBhbnkgPSAnJ1xyXG4gIEBJbnB1dCgpIHBhZ2VMYXlvdXQ6IGFueSA9ICcnXHJcbiAgY3VzdG9tQXJyYXk6IGFueVtdW10gPSBbXVxyXG4gIGlzRGF0YUxvYWRpbmc6IGJvb2xlYW4gPSBmYWxzZVxyXG4gIFxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBpbnNpZ2h0U3ZjOiBJbnNpdGVEYXRhU2VydmljZSkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCkge1xyXG4gICAgaWYgKHRoaXMub2JqZWN0RGF0YSAmJiB0aGlzLmxheW91dFR5cGUgPT09ICdncmlkTGF5b3V0Jykge1xyXG4gICAgICB0aGlzLmN1c3RvbUFycmF5ID0gdGhpcy5jcmVhdGVDdXN0b21BcnJheSh0aGlzLm9iamVjdERhdGEubWV0cmljcylcclxuICAgIH1cclxuICAgIGlmKHRoaXMuZmV0Y2hEYXRhRnJvbUFwaSkge1xyXG4gICAgICB0aGlzLmlzRGF0YUxvYWRpbmcgPSB0cnVlXHJcbiAgICAgIHRoaXMuZ2V0SW5zaXRlRGF0YSgpXHJcbiAgICB9XHJcbiAgfSAgXHJcblxyXG4gIGNyZWF0ZUN1c3RvbUFycmF5KGFycjogYW55W10pOiBhbnlbXVtdIHtcclxuICAgIGNvbnN0IG5CeW46IGFueVtdW10gPSBbXVxyXG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCBhcnIubGVuZ3RoOyBpICs9IHRoaXMub2JqZWN0RGF0YS5kYXRhQ29sU3Bhbikge1xyXG4gICAgICBuQnluLnB1c2goYXJyLnNsaWNlKGksIGkgKyB0aGlzLm9iamVjdERhdGEuZGF0YUNvbFNwYW4pKVxyXG4gICAgfVxyXG4gICAgcmV0dXJuIG5CeW4gICBcclxuICB9XHJcblxyXG4gIGdldEluc2l0ZURhdGEoKXtcclxuICAgIGxldCByZXF1ZXN0OiBhbnkgPSB7fVxyXG4gICAgcmVxdWVzdCAgPSB7XHJcbiAgICAgIFwicmVxdWVzdFwiOiB7XHJcbiAgICAgICAgICBcImZpbHRlcnNcIjoge1xyXG4gICAgICAgICAgICAgIFwib3JnYW5pc2F0aW9uc1wiOiBbXHJcbiAgICAgICAgICAgICAgICAgIHRoaXMucHJvdmlkZXJJZFxyXG4gICAgICAgICAgICAgIF1cclxuICAgICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgfVxyXG4gICAgaWYgKHRoaXMucGFnZUxheW91dCAmJiB0aGlzLnBhZ2VMYXlvdXQgPT09ICdtZG8nKSB7XHJcbiAgICAgIHJlcXVlc3QgID0ge1xyXG4gICAgICAgIFwicmVxdWVzdFwiOiB7XHJcbiAgICAgICAgICAgIFwiZmlsdGVyc1wiOiB7XHJcbiAgICAgICAgICAgICAgXCJyZXF1ZXN0VHlwZVwiOiBcIk1ET19JTlNJR0hUXCIsXHJcbiAgICAgICAgICAgICAgICBcIm9yZ2FuaXNhdGlvbnNcIjogW1xyXG4gICAgICAgICAgICAgICAgICAgIHRoaXMucHJvdmlkZXJJZFxyXG4gICAgICAgICAgICAgICAgXVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfVxyXG4gICAgICB9XHJcbiAgICB9XHJcbiAgICB0aGlzLmluc2lnaHRTdmMuZmV0Y2hTZWFyY2hEYXRhKHJlcXVlc3QpLnN1YnNjcmliZSgocmVzOiBhbnkpPT4ge1xyXG4gICAgICBpZihyZXMgJiYgcmVzLnJlc3VsdCAmJiByZXMucmVzdWx0LnJlc3BvbnNlICYmIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzICYmIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzLmxlbmd0aCkge1xyXG4gICAgICAgIHJlcy5yZXN1bHQucmVzcG9uc2UubnVkZ2VzLmZvckVhY2goKG51ZGdlRGF0YTogYW55KSA9PiB7XHJcbiAgICAgICAgICBpZih0aGlzLnByb3ZpZGVySWQgJiYgdGhpcy5wcm92aWRlcklkID09PSBudWRnZURhdGEub3JnSWQpIHtcclxuICAgICAgICAgICAgdGhpcy5vYmplY3REYXRhID0gbnVkZ2VEYXRhLmRhdGFcclxuICAgICAgICAgIH1cclxuICAgICAgICB9KVxyXG4gICAgICB9XHJcbiAgICAgIHRoaXMuaXNEYXRhTG9hZGluZyA9IGZhbHNlXHJcbiAgICB9KVxyXG5cclxuICB9XHJcblxyXG4gIGNvbnZlclRvSW5kaWFuU3lzdGVtKHZhbHVlOiBhbnkpIHtcclxuICAgIGxldCBudW1TdHIgPSB2YWx1ZS50b1N0cmluZygpXHJcbiAgICBsZXQgW2ludGVnZXJQYXJ0LCBkZWNpbWFsUGFydF0gPSBudW1TdHIuc3BsaXQoJy4nKVxyXG4gICAgbGV0IGxhc3RUaHJlZSA9IGludGVnZXJQYXJ0LnNsaWNlKC0zKTtcclxuICAgIGxldCBvdGhlck51bWJlcnMgPSBpbnRlZ2VyUGFydC5zbGljZSgwLCAtMyk7XHJcbiAgICBpZiAob3RoZXJOdW1iZXJzICE9PSAnJykge1xyXG4gICAgICBsYXN0VGhyZWUgPSAnLCcgKyBsYXN0VGhyZWU7XHJcbiAgICB9XHJcbiAgICBsZXQgZm9ybWF0dGVkSW50ZWdlclBhcnQgPSBvdGhlck51bWJlcnMucmVwbGFjZSgvXFxCKD89KFxcZHsyfSkrKD8hXFxkKSkvZywgJywnKSArIGxhc3RUaHJlZTtcclxuICAgIGNvbnN0IHJlc3VsdCA9IGRlY2ltYWxQYXJ0ID8gYCR7Zm9ybWF0dGVkSW50ZWdlclBhcnR9LiR7ZGVjaW1hbFBhcnQuc3Vic3RyKDAsMil9YCA6IGZvcm1hdHRlZEludGVnZXJQYXJ0O1xyXG4gICAgcmV0dXJuIHJlc3VsdFxyXG4gIH1cclxufVxyXG4iXX0=
@@ -256,7 +256,7 @@ var ProvidersV2Component = /** @class */ (function () {
256
256
  { type: Component, args: [{
257
257
  selector: 'sb-uic-providers-v2',
258
258
  template: "<ws-widget-btn-page-back [widgetData]=\"{ url: 'home', titles: titles }\">\r\n</ws-widget-btn-page-back>\r\n<div class=\"container-fluid\" id=\"section-micro-sites\">\r\n <div class=\"flex flex-col flex-1\">\r\n <ng-container *ngIf=\"sectionList?.length\">\r\n <ng-container *ngFor=\"let section of sectionList\">\r\n <ng-container *ngIf=\"section?.enabled\">\r\n <section id=\"{{section?.key}}\" class=\"w-full grid grid-cols-12 gap-4\">\r\n <ng-container *ngFor=\"let column of section.column\">\r\n <div id=\"{{column?.key}}\" class=\"col-span-{{column.colspan || 12}} \">\r\n <ng-container *ngIf=\"column?.enabled\" [ngSwitch]=\"column?.key\">\r\n <ng-container *ngSwitchCase=\"'topSection'\" [ngTemplateOutlet]=\"topSection\"\r\n [ngTemplateOutletContext]=\"{data: column?.data}\"></ng-container>\r\n <ng-container *ngSwitchCase=\"'trainingCalendar'\" [ngTemplateOutlet]=\"trainingCalendar\"\r\n [ngTemplateOutletContext]=\"{trainingCalendar: column.data}\"></ng-container>\r\n <ng-container *ngSwitchCase=\"'contributors'\" [ngTemplateOutlet]=\"contributors\"\r\n [ngTemplateOutletContext]=\"{data: column?.data}\"></ng-container>\r\n <ng-container *ngSwitchCase=\"'infra'\" [ngTemplateOutlet]=\"infra\"\r\n [ngTemplateOutletContext]=\"{infra: column?.data}\"></ng-container>\r\n <ng-container *ngSwitchCase=\"'contentFeaturedStrip'\" [ngTemplateOutlet]=\"contentStrip\"\r\n [ngTemplateOutletContext]=\"{contentStrip: column?.data}\"></ng-container>\r\n <ng-container *ngSwitchCase=\"'contentTopStrip'\" [ngTemplateOutlet]=\"contentStrip\"\r\n [ngTemplateOutletContext]=\"{contentStrip: column?.data}\"></ng-container> \r\n <ng-container *ngSwitchCase=\"'competency'\" [ngTemplateOutlet]=\"competency\"\r\n [ngTemplateOutletContext]=\"{competency: column}\"></ng-container> \r\n <ng-container *ngSwitchCase=\"'learnerReview'\" [ngTemplateOutlet]=\"learnerReviewBlock\"\r\n [ngTemplateOutletContext]=\"{data: column?.data}\"></ng-container> \r\n </ng-container>\r\n </div>\r\n </ng-container>\r\n </section>\r\n </ng-container>\r\n </ng-container>\r\n </ng-container>\r\n </div>\r\n</div>\r\n<div class=\"container-fluid\" *ngIf=\"navList?.length\">\r\n <div class=\"flex sticky-navigator gap-4\">\r\n <mat-icon class=\"nav-up-arrow cursor-pointer\" (click)=\"scrollToSection('section-micro-sites')\">arrow_upwards</mat-icon>\r\n <ng-container *ngFor=\"let section of navList\">\r\n <ng-container *ngIf=\"section.navigation\">\r\n <div class=\"nav-button\" (click)=\"scrollToSection(section?.key); raiseNavTelemetry(section?.title)\">{{section?.title}}</div>\r\n </ng-container>\r\n </ng-container>\r\n </div>\r\n</div>\r\n\r\n<ng-template #topSection let-data=\"data\">\r\n <!-- <div class=\"w-full grid grid-cols-12 gap-4\"> -->\r\n <div class=\"col-span-12 \">\r\n <div class=\"grid grid-cols-12\">\r\n <div class=\"hidden md:block p-5 custombgsection\">\r\n <sb-uic-data-points [providerId]=\"providerId\" [fetchDataFromApi]=\"true\" [objectData]=\"data?.metrics?.data\" [layoutType]=\"'multipleRows-V2'\"></sb-uic-data-points>\r\n </div>\r\n <div class=\"col-span-3\"></div>\r\n <div class=\"col-span-12 md:col-span-9\">\r\n <div class=\"slider h-full\" *ngIf=\"data?.sliderData?.sliders\">\r\n <sb-uic-sliders [title]=\"providerName\" [widgetData]=\"data?.sliderData?.sliders\" [styleData]=\"data?.sliderData?.styleData\" [type]=\"'atictitop'\"></sb-uic-sliders>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-span-12 title-section px-5 md:py-5 mob-container\">\r\n <div class=\"container flex flex-col md:flex-row\">\r\n <div class=\"mr-4 logo-box-container\">\r\n <div class=\"flex logo-box-rounded top mr-4\">\r\n <img alt=\"Application Logo\" class=\"logo-img\" [src]=\"data?.logo\">\r\n </div>\r\n </div>\r\n <div class=\"w-full md:w-9/12 flex-1 flex flex-col\">\r\n <h1 class=\" txt-ellipsis-2 break-words\">{{data?.title || providerName}}</h1>\r\n <p>{{data?.description | slice:0:descriptionMaxLength}}\r\n <span *ngIf=\"data?.description?.length > descriptionMaxLength\">...</span>\r\n </p>\r\n <div class=\"block md:hidden overflow-y-auto mb-3\">\r\n <sb-uic-data-points [providerId]=\"providerId\" [fetchDataFromApi]=\"true\" [objectData]=\"data?.metrics?.data\" [layoutType]=\"'singleRow-v2'\"></sb-uic-data-points>\r\n </div>\r\n <button\r\n (click)=\"raiseTelemetry(data?.contentButton?.title)\"\r\n [routerLink]=\"[data?.contentButton?.redirectUrl, providerName, providerId, 'all-CBP']\"\r\n [queryParams]=\"{pageDetails: true}\" mat-button type=\"button\"\r\n class=\"view-btn margin-left-xs margin-right-xs small-button blue-border flex-auto-display\">\r\n <span class=\"mat-heading-1 bold ws-mat-default-text\" i18n>\r\n {{data?.contentButton?.title}}\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <!-- </div> -->\r\n</ng-template>\r\n\r\n<ng-template #contentStrip let-contentStrip=\"contentStrip\">\r\n <ng-container *ngIf=\"!contentStrip?.hideSection\">\r\n <div class=\"flex justify-center relative mt-8 mb-8\">\r\n <img class=\"absolute {{contentStrip?.sectionImagePosition}}\" src=\"{{contentStrip?.sectionImage}}\" alt=\"\">\r\n <div class=\"container \">\r\n <div class=\"w-full\">\r\n <sb-uic-content-strip-with-tabs\r\n [emitViewAll]=\"true\"\r\n (viewAllResponse)=\"showAllContent($event,contentStrip)\"\r\n (emptyResponse)=\"hideContentStrip($event, contentStrip)\"\r\n (telemtryResponse)=\"raiseTelemetryInteratEvent($event)\"\r\n [providerId]=\"providerId\"\r\n [widgetData]=\"contentStrip\">\r\n </sb-uic-content-strip-with-tabs>\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n</ng-template>\r\n\r\n<ng-template #contributors let-data=\"data\">\r\n <div class=\"contributors-background px-5 py-5\" [style.background]=\"data?.background\">\r\n <div class=\"container\">\r\n <div class=\"grid grid-cols-12 gap-4 padding-top-l mb-6\">\r\n <div class=\"col-span-12 md:col-span-3 contributor-desc\">\r\n <div class=\"infra-box flex flex-col\">\r\n <div class=\"infra-title-v2 hidden md:block\">\r\n {{data.detaulTitle}}<span class=\"infra-title2-v2\">{{data.defaultTitle1}}</span>\r\n </div>\r\n <div class=\"infra-title-v2 hidden md:block\">\r\n {{data.myTitle}}<span class=\"infra-title2-v2\">{{data.myTitle1}}</span>\r\n </div>\r\n <div class=\"block md:hidden\">\r\n <span class=\"infra-title-v2\">{{data.detaulTitle}}</span>\r\n <span class=\"infra-title2-v2\">{{data.defaultTitle1}}</span>\r\n <span class=\"infra-title-v2\"> {{data.myTitle}}</span>\r\n <span class=\"infra-title2-v2\">{{data.myTitle1}}</span>\r\n </div>\r\n <div class=\"infra-description padding-top-s\">\r\n {{data.description}}\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-span-12 md:col-span-9\">\r\n <sb-uic-common-strip [widgetData]=\"data\"></sb-uic-common-strip>\r\n </div>\r\n </div>\r\n <div class=\"w-full section-divider pt-6\">\r\n </div>\r\n </div>\r\n </div>\r\n</ng-template>\r\n\r\n<ng-template #infra let-infra=\"infra\">\r\n <div class=\"infra-background px-5\" [style.background]=\"infra?.background\">\r\n <div class=\"container\">\r\n <div class=\"grid grid-cols-12 gap-4 infra-sec margin-bottom-xl\">\r\n <div class=\"col-span-12 md:col-span-4 infra-sec-desc margin-bottom-xl\">\r\n <div class=\"infra-box flex flex-col\">\r\n <div class=\"infra-title2 hidden md:block\">\r\n {{infra?.detaulTitle}}\r\n </div>\r\n <div class=\"block md:hidden\">\r\n <span class=\"infra-title2\">{{infra?.detaulTitle}}</span>\r\n </div>\r\n <div class=\"infra-description padding-top-s\">\r\n {{infra?.description}}\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-span-12 md:col-span-8 margin-bottom-xl\">\r\n <sb-uic-data-points [objectData]=\"infra\" [layoutType]=\"'gridLayout'\"></sb-uic-data-points>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"infra-background slider-background\" [style.background]=\"infra?.background\">\r\n </div>\r\n <div class=\"slider-background1 mb-8\">\r\n <div class=\"container-balanced w-full slider-background-2\">\r\n <div class=\"info-slider\">\r\n <sb-uic-sliders class=\"infobanner\" [widgetData]=\"infra?.sliderData?.sliders\" [styleData]=\"infra?.sliderData?.styleData\"></sb-uic-sliders>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-template>\r\n\r\n<!-- Start Competencies -->\r\n<ng-template #competency let-competency=\"competency\">\r\n <div class=\"padding-top-l padding-bottom-l relative\" [style.background]=\"competency?.background\" *ngIf=\"!hideCompetencyBlock\">\r\n <div class=\"w-full container-balanced\">\r\n <div class=\"pl-4 pr-4 md:pl-0 md:pr-0\">\r\n <sb-uic-competency-passbook\r\n (emptyResponse)=\"hideCompetency($event, competency)\"\r\n (temeletryResponse)=\"raiseCompetencyTelemetry($event)\"\r\n [objectData]=\"competency\"\r\n [providerId]=\"providerId\">\r\n </sb-uic-competency-passbook>\r\n </div>\r\n </div>\r\n <img class=\"absolute comp-back-img\" src=\"assets/icons/microsite/competency.svg\" alt=\"\">\r\n </div>\r\n</ng-template>\r\n<!-- End Competencies -->\r\n\r\n<ng-template #trainingCalendar let-trainingCalendar=\"trainingCalendar\">\r\n <div class=\"hidden md:block\">\r\n <div class=\"col-span-12 px-8 py-8\" [style.background]=\"trainingCalendar?.background\">\r\n <div class=\"container-balanced flex flex-col\">\r\n <div class=\"col-span-12 mat-subheading-1 margin-remove\">{{trainingCalendar?.title}}: {{currentMonthAndYear}}</div>\r\n <sb-uic-calender\r\n [objectData]=\"trainingCalendar\"\r\n [fetchDataFromApi]=\"true\"\r\n [layoutType]=\"'grid'\"\r\n [defaultDays]=\"trainingCalendar?.defaultDays\"\r\n [providerId]=\"providerId\">\r\n </sb-uic-calender>\r\n </div>\r\n <div class=\"flex item-center justify-center\">\r\n <button mat-button type=\"button\"\r\n (click)=\"raiseTelemetry(trainingCalendar?.contentButton?.title)\"\r\n [routerLink]=\"[trainingCalendar?.contentButton?.redirectUrl, providerName, providerId, 'training-calendar']\"\r\n class=\"view-btn margin-left-xs margin-right-xs small-button blue-border flex-auto-display\">\r\n <span class=\"mat-heading-1 bold ws-mat-default-text\" i18n>\r\n {{trainingCalendar?.contentButton?.title}}\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"block md:hidden\">\r\n <div class=\"col-span-12 px-5 py-3 mob-header\">{{trainingCalendar?.title}}: {{currentMonthAndYear}}</div>\r\n <div class=\"col-span-12\">\r\n <sb-uic-calender\r\n [objectData]=\"trainingCalendar\"\r\n [fetchDataFromApi]=\"true\"\r\n [layoutType]=\"'row'\"\r\n [defaultDays]=\"trainingCalendar?.defaultDays\"\r\n [providerId]=\"providerId\">\r\n </sb-uic-calender>\r\n </div>\r\n <div class=\"col-span-12 flex item-center justify-center\">\r\n <button mat-button type=\"button\"\r\n (click)=\"raiseTelemetry(trainingCalendar?.contentButton?.title)\"\r\n [routerLink]=\"[trainingCalendar?.contentButton?.redirectUrl, providerName, providerId, 'training-calendar']\"\r\n class=\"view-btn margin-left-xs margin-right-xs small-button blue-border flex-auto-display\">\r\n <span class=\"mat-heading-1 bold ws-mat-default-text\" i18n>\r\n {{trainingCalendar?.contentButton?.title}}\r\n </span>\r\n </button>\r\n </div>\r\n </div>\r\n</ng-template>\r\n<ng-template #learnerReviewBlock let-data=\"data\">\r\n <div class=\"contributors-background px-5 py-5\" [style.background]=\"data?.background\" *ngIf=\"!data?.hideSection\">\r\n <div class=\"container\">\r\n <div class=\"grid grid-cols-12 gap-4 padding-top-l mb-6\">\r\n <div class=\"col-span-12 md:col-span-4 contributor-desc\">\r\n <div class=\"infra-box-review flex flex-col\">\r\n <div class=\"learner-title hidden md:block\">\r\n {{data?.detaulTitle}}\r\n </div>\r\n <div class=\"infra-title2 hidden md:block\">\r\n {{data?.myTitle}}\r\n </div>\r\n <div class=\"block md:hidden\">\r\n <span class=\"learner-title\">{{data?.detaulTitle}}</span> <span class=\"infra-title2\"> {{data?.myTitle}}</span>\r\n </div> \r\n </div> \r\n </div>\r\n <div class=\"col-span-12 md:col-span-8\">\r\n <sb-uic-user-content-rating (emptyResponse)=\"hideLearnerReview($event, data)\" [formData]=\"data\" [providerId]=\"providerId\"></sb-uic-user-content-rating>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-template>\r\n",
259
- styles: [".container-balanced{max-width:1202px;margin-left:auto!important;margin-right:auto!important}.container{max-width:1200px}.section-divider{border-bottom:1px solid rgba(0,0,0,.16)}.banner-container{align-items:center;background:#eee;padding:16px;gap:2.5rem;justify-content:center}.logo-box{vertical-align:middle;max-width:250px;background:#f5fdf1;padding:8px;border:1px solid rgba(0,0,0,.5)}.title-section{position:relative;display:flex;justify-content:center;background-color:#fff}.logo-box-container{width:180px;position:relative}@media only screen and (max-width:599px){.logo-box-container{width:112px;height:72px}}.view-btn{width:160px;background:#fff;padding:0 16px;border-radius:49px;border:1px solid #1b4ca9;font-weight:700!important;font-size:14px;margin-top:4px;margin-bottom:4px;line-height:36px;cursor:pointer}.logo-box-rounded{height:180px;width:180px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px 0 rgba(0,0,0,.06)}.logo-box-rounded .logo-img{max-width:122px}@media only screen and (max-width:599px){.view-btn{margin-top:12px;margin-bottom:16px}.logo-box-rounded{width:112px;height:112px}.logo-box-rounded .logo-img{max-width:84px}}.slider-box{max-width:30%}.stats-container{justify-content:space-around;display:flex;flex-wrap:wrap}.stats-item{display:flex;align-items:center;flex-wrap:nowrap;padding:8px 16px;margin-bottom:16px}.banner-metrics{background:linear-gradient(180deg,#f9cb97 -107.59%,#ef951e 110.74%)}.infra-sec-desc{padding-top:32px}.contributors-background,.infra-background{align-items:center;justify-content:center;display:flex}.contributor-desc{align-items:center;display:inline-flex;margin-top:-24px}.infra-box{width:256px}.infra-box-review{width:100%}.infra-title-v2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#fff}.infra-title2-v2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#ef951e}.infra-title{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#fff}.infra-title2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#ef951e}.infra-description{font-family:Lato;font-size:14px;font-weight:400;line-height:16.8px;text-align:left;color:#fff;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}.overlay{position:absolute;top:-20px}.slider-background{height:160px}.slider-background1{height:195px}.slider-background-2{position:relative}.info-slider{position:absolute;top:-12em;left:50%;transform:translateX(-50%)}.sticky-navigator{padding:15px 5px;background-color:#fdead5;align-items:center;overflow:auto;position:fixed;left:0;bottom:0;width:100%;z-index:1002;justify-content:center}.nav-button{padding:12px 16px;border-radius:40px;border:1px solid #000;text-align:center;font-family:Lato;font-size:14px;font-weight:700;line-height:16.8px;cursor:pointer;min-width:140px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.nav-up-arrow{height:28px}.img-left{left:0}.img-right{right:0}.learner-title{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#000}@media screen and (max-width:1201px){.img-left,.img-right{display:none}}@media screen and (max-width:768px){.infra-sec{padding:0}.infra-box,.infra-box-review{width:99%;height:auto}.infra-sec-desc{padding-top:0}.mob-container{background-image:url(https://portal.karmayogiqa.nic.in/content-store/orgStore/0135071359030722569/1720693634596_MDOChannel_RightGraphic%202.svg);background-position:bottom 0 right 0;background-repeat:no-repeat}.infra-title,.infra-title-v2,.infra-title2,.infra-title2-v2{font-family:Montserrat;font-size:16px;font-weight:600;line-height:19.5px;text-align:left}.slider-background,.slider-background1{height:150px}.info-slider{position:absolute;top:-155px;width:94%}.sticky-navigator{align-items:center;justify-content:left;bottom:63px}.logo-box-rounded.top{position:absolute;top:-50px}.learner-title{font-size:16px}::ng-deep.featuredContents .mat-tab-header{padding-left:20px}::ng-deep.topContents .mat-tab-header{padding-left:20px}}.competencies-backgroud{background-color:#1b2133}.txt-ellipsis-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.comp-back-img{bottom:0;left:0;right:0;margin-left:auto;margin-right:auto;width:50%;filter:brightness(100)}.mob-header{font-family:Lato;font-size:16px;font-weight:600}.custombgsection{background:url(https://portal.karmayogiqa.nic.in/content-store/orgStore/0135071359030722569/1721377495600_test%2011.svg) 0 0/cover no-repeat;width:40%;position:absolute;z-index:99;left:0;height:21.3em}@media screen and (min-width:769px){.custombgsection{width:30%}}@media screen and (min-width:1014px){.info-slider{width:1014px!important}}@media screen and (min-width:1280px){.custombgsection{width:38%}.infobanner.banner-container{width:1014px!important}}"]
259
+ styles: [".container-balanced{max-width:1202px;margin-left:auto!important;margin-right:auto!important}.container{max-width:1200px}.section-divider{border-bottom:1px solid rgba(0,0,0,.16)}.banner-container{align-items:center;background:#eee;padding:16px;gap:2.5rem;justify-content:center}.logo-box{vertical-align:middle;max-width:250px;background:#f5fdf1;padding:8px;border:1px solid rgba(0,0,0,.5)}.title-section{position:relative;display:flex;justify-content:center;background-color:#fff}.logo-box-container{width:180px;position:relative}@media only screen and (max-width:599px){.logo-box-container{width:112px;height:72px}}.view-btn{width:160px;background:#fff;padding:0 16px;border-radius:49px;border:1px solid #1b4ca9;font-weight:700!important;font-size:14px;margin-top:4px;margin-bottom:4px;line-height:36px;cursor:pointer}.logo-box-rounded{height:180px;width:180px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px 0 rgba(0,0,0,.06)}.logo-box-rounded .logo-img{max-width:122px}@media only screen and (max-width:599px){.view-btn{margin-top:12px;margin-bottom:16px}.logo-box-rounded{width:112px;height:112px}.logo-box-rounded .logo-img{max-width:84px}}.slider-box{max-width:30%}.stats-container{justify-content:space-around;display:flex;flex-wrap:wrap}.stats-item{display:flex;align-items:center;flex-wrap:nowrap;padding:8px 16px;margin-bottom:16px}.banner-metrics{background:linear-gradient(180deg,#f9cb97 -107.59%,#ef951e 110.74%)}.infra-sec-desc{padding-top:32px}.contributors-background,.infra-background{align-items:center;justify-content:center;display:flex}.contributor-desc{align-items:center;display:inline-flex;margin-top:-24px}.infra-box{width:256px}.infra-box-review{width:100%}.infra-title-v2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#fff}.infra-title2-v2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#ef951e}.infra-title{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#fff}.infra-title2{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#ef951e}.infra-description{font-family:Lato;font-size:14px;font-weight:400;line-height:16.8px;text-align:left;color:#fff;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}.overlay{position:absolute;top:-20px}.slider-background{height:160px}.slider-background1{height:195px}.slider-background-2{position:relative}.info-slider{position:absolute;top:-12em;left:50%;transform:translateX(-50%)}.sticky-navigator{padding:15px 5px;background-color:#fdead5;align-items:center;overflow:auto;position:fixed;left:0;bottom:0;width:100%;z-index:1002;justify-content:center}.nav-button{padding:12px 16px;border-radius:40px;border:1px solid #000;text-align:center;font-family:Lato;font-size:14px;font-weight:700;line-height:16.8px;cursor:pointer;min-width:140px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.nav-up-arrow{height:28px}.img-left{left:0}.img-right{right:0}.learner-title{font-family:Montserrat;font-size:24px;font-weight:600;line-height:29.26px;text-align:left;color:#000}@media screen and (max-width:1201px){.img-left,.img-right{display:none}}@media screen and (max-width:768px){.infra-sec{padding:0}.infra-box,.infra-box-review{width:99%;height:auto}.infra-sec-desc{padding-top:0}.mob-container{background-image:url(https://portal.karmayogiqa.nic.in/content-store/orgStore/0135071359030722569/1720693634596_MDOChannel_RightGraphic%202.svg);background-position:bottom 0 right 0;background-repeat:no-repeat}.infra-title,.infra-title-v2,.infra-title2,.infra-title2-v2{font-family:Montserrat;font-size:16px;font-weight:600;line-height:19.5px;text-align:left}.slider-background,.slider-background1{height:150px}.info-slider{position:absolute;top:-155px;width:94%}.sticky-navigator{align-items:center;justify-content:left;bottom:63px}.logo-box-rounded.top{position:absolute;top:-50px}.learner-title{font-size:16px}::ng-deep.featuredContents .mat-tab-header{padding-left:20px}::ng-deep.topContents .mat-tab-header{padding-left:20px}}.competencies-backgroud{background-color:#1b2133}.txt-ellipsis-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.comp-back-img{bottom:0;left:0;right:0;margin-left:auto;margin-right:auto;width:50%;z-index:-1;filter:brightness(100)}.mob-header{font-family:Lato;font-size:16px;font-weight:600}.custombgsection{background:url(https://portal.karmayogiqa.nic.in/content-store/orgStore/0135071359030722569/1721911475656_new.png) 0 0/cover no-repeat;width:40%;position:absolute;z-index:99;left:0;height:21.3em}@media screen and (min-width:769px){.custombgsection{width:30%}}@media screen and (min-width:1014px){.info-slider{width:1014px!important}}@media screen and (min-width:1280px){.custombgsection{width:38%}.infobanner.banner-container{width:1014px!important}}"]
260
260
  }] }
261
261
  ];
262
262
  /** @nocollapse */
@@ -158,7 +158,7 @@ var SlidersLibComponent = /** @class */ (function (_super) {
158
158
  { type: Component, args: [{
159
159
  selector: 'sb-uic-sliders',
160
160
  template: "<div class=\"banner-container {{isMobile? styleData?.responsive?.bannerMetaClass : styleData?.bannerMetaClass}} {{type === 'atictitop' ? 'atictitopbanner' : ''}}\" (swipeleft)=\"slideTo(currentIndex + 1)\" (swiperight)=\"slideTo(currentIndex - 1)\"\r\n *ngIf=\"widgetData?.length > 1\" [style.height]=\"isMobile? styleData?.responsive?.customHeight : styleData?.customHeight\"\r\n [ngStyle]=\"{'border-radius': styleData?.borderRadius || '12px'}\">\r\n <a (click)=\"raiseTelemetry(widgetData[currentIndex].redirectUrl)\"\r\n class=\"banner-overlay {{widgetData[currentIndex] && widgetData[currentIndex].redirectUrl ? '' : 'pointer-events-none'}}\"\r\n [routerLink]=\" !isOpenInNewTab && widgetData[currentIndex].redirectUrl? widgetData[currentIndex].redirectUrl : null\"\r\n [ngClass]=\"{'cursor-auto': !widgetData[currentIndex].redirectUrl}\">\r\n <div class=\"banner WidgetInstanceId\" \r\n *ngFor=\"let slide of widgetData; let i = index\" \r\n [hidden]=\"i !== currentIndex\" \r\n [ngStyle]=\"{\r\n 'border-width': isMobile? styleData?.responsive?.imageBorderWidth : styleData?.imageBorderWidth,\r\n 'border-color': isMobile? styleData?.responsive?.imageBorderColor : styleData?.imageBorderColor,\r\n 'border-style': isMobile? styleData?.responsive?.imageBorderStyle: styleData?.imageBorderStyle}\">\r\n <img i18n-alt alt=\"Page Banner\" [src]=\"slide.banners\" wsUtilsImageResponsive class=\"{{type === 'atictitopbanner' ? 'banner-image' : 'bannerimage-mdo'}}\" />\r\n </div>\r\n </a>\r\n <ng-container *ngIf=\"isMobile && styleData?.responsive?.dots !== 'hidden' || !isMobile && styleData?.dots !== 'hidden'\">\r\n <div class=\"banner-meta {{isMobile? styleData?.responsive?.bannerMetaAlign : styleData?.bannerMetaAlign}}\">\r\n <a [routerLink]=\" !isOpenInNewTab && widgetData[currentIndex].redirectUrl? widgetData[currentIndex].redirectUrl : null\"\r\n class=\"banner-title text-truncate {{widgetData[currentIndex] && widgetData[currentIndex].redirectUrl ? '' : 'pointer-events-none'}}\"\r\n *ngIf=\"widgetData[currentIndex].title\" [title]=\"widgetData[currentIndex].title\">\r\n {{ widgetData[currentIndex].title }}\r\n </a>\r\n <div class=\"dots-container\" *ngIf=\"widgetData?.length > 1\">\r\n <span class=\"dot\" [ngClass]=\"{ active: j === currentIndex }\" *ngFor=\"let slide of widgetData; let j = index\"\r\n (click)=\"slideTo(j)\"></span>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <div class=\"navigation {{isMobile? styleData?.responsive?.arrowsPlacement : styleData?.arrowsPlacement}}\" \r\n *ngIf=\"isMobile && styleData?.responsive?.navigationArrows !== 'hidden' || !isMobile && styleData?.navigationArrows !== 'hidden'\">\r\n <a *ngIf=\"widgetData?.length > 1\" role=\"button\" class=\"prev\" (click)=\"slideTo(currentIndex - 1)\">&#10094;</a>\r\n <a *ngIf=\"widgetData?.length > 1\" role=\"button\" class=\"next\" (click)=\"slideTo(currentIndex + 1)\">&#10095;</a>\r\n </div>\r\n</div>\r\n<div class=\"banner-container-solo {{type === 'atictitop' ? 'atictitopbanner' : ''}}\" [style.height]=\"isMobile? styleData?.responsive?.customHeight : styleData?.customHeight\" *ngIf=\"widgetData?.length == 1\">\r\n <img i18n-alt alt=\"Page Banner\" width=\"100%\" height=\"100%\" [src]=\"widgetData[0].banners\" wsUtilsImageResponsive class=\"banner-image-solo\" />\r\n</div>\r\n<!-- <div class=\"banner-container\" (swipeleft)=\"slideTo(currentIndex + 1)\" (swiperight)=\"slideTo(currentIndex - 1)\"\r\n *ngIf=\"widgetData?.length\">\r\n <a (click)=\"raiseTelemetry(widgetData[currentIndex].redirectUrl)\"\r\n [queryParams]=\"widgetData[currentIndex].queryParams || {}\"\r\n [routerLink]=\"!isOpenInNewTab ? widgetData[currentIndex].redirectUrl : './'\" class=\"banner-overlay\"\r\n [ngClass]=\"{ 'cursor-auto': !widgetData[currentIndex].redirectUrl }\"></a>\r\n <div class=\"banner WidgetInstanceId\" *ngFor=\"let slide of widgetData; let i = index\" [hidden]=\"i !== currentIndex\">\r\n <img i18n-alt alt=\"Page Banner\" [src]=\"slide.banners\" wsUtilsImageResponsive class=\"banner-image\" />\r\n </div>\r\n <div class=\"banner-meta\">\r\n <a [routerLink]=\"!isOpenInNewTab ? widgetData[currentIndex].redirectUrl : './'\" class=\"banner-title text-truncate\"\r\n *ngIf=\"widgetData[currentIndex].title\" [title]=\"widgetData[currentIndex].title\">\r\n {{ widgetData[currentIndex].title }}\r\n </a>\r\n <div class=\"dots-container\" *ngIf=\"widgetData?.length > 1\">\r\n <span class=\"dot\" [ngClass]=\"{ active: j === currentIndex }\" *ngFor=\"let slide of widgetData; let j = index\"\r\n (click)=\"slideTo(j)\"></span>\r\n </div>\r\n </div>\r\n <button *ngIf=\"widgetData?.length > 1\" class=\"prev\" aria-label=\"Previous slide\" (click)=\"slideTo(currentIndex - 1)\">\r\n <a *ngIf=\"widgetData?.length > 1\" role=\"button\">&#10094;</a>\r\n </button>\r\n <button *ngIf=\"widgetData?.length > 1\" class=\"next\" (click)=\"slideTo(currentIndex + 1)\" aria-label=\"Next slide\">\r\n <a *ngIf=\"widgetData?.length > 1\" role=\"button\" class=\"next\">&#10095;</a>\r\n </button>\r\n\r\n</div> -->\r\n<ng-container *ngIf=\"!widgetData?.length\">\r\n <div class=\"slider default-slider h-full\">\r\n <div class=\"relative h-full\">\r\n <img class=\"h-full\" src=\"assets/icons/home/default-slider-image.svg\" alt=\"\">\r\n <div class=\"default-title rounded-full\">\r\n <p class=\"mat-h1\">{{title}}</p>\r\n </div>\r\n </div>\r\n </div>\r\n</ng-container>\r\n",
161
- styles: [".banner-container{min-height:243px;position:relative;margin:auto;padding-bottom:40px}.banner-container.inline-meta{padding-bottom:0!important}.banner-container.flat .banner .banner-image{border-radius:0!important}@media screen and (min-width:769px){.atictitopbanner{height:380px!important}}.banner-overlay{z-index:1;top:0;left:0;width:100%;height:100%;background:linear-gradient(to left,rgba(0,0,0,.25) 0,rgba(0,0,0,0) 15%,rgba(0,0,0,0) 85%,rgba(0,0,0,.25) 100%);border-radius:inherit}.banner{-webkit-animation-name:fade;-webkit-animation-duration:1.5s;animation-name:fade;animation-duration:1.5s;border-radius:inherit;height:inherit}.banner .banner-image{width:100%;min-height:380px;display:block;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.banner .bannerimage-mdo{width:100%;display:block;height:inherit;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.banner-meta{text-align:center;z-index:2;padding:8px 12px;position:absolute;bottom:0;left:50%;border-radius:12px;transform:translateX(-50%);box-sizing:border-box}.banner-meta.left{left:0;transform:translateX(0)}.banner-meta.right{left:100%;transform:translateX(-100%)}.banner-meta .banner-title{color:#f2f2f2;margin-bottom:8px;font-size:1.1rem}@media only screen and (max-width:599px){.banner-meta .banner-title{display:none}}.banner-meta .dots-container{padding:8px;display:flex;align-items:center;justify-content:center}.banner-meta .dots-container .dot{cursor:pointer;height:6px;width:6px;margin:0 4px;background-color:rgba(0,0,0,.4);border-radius:50%;display:inline-block;transition:background-color .5s!important}@media only screen and (max-width:599px){.banner-meta .dots-container .dot{height:8px;width:8px;margin:0 4px}}.banner-meta .dots-container .dot.active{border-radius:4px;background-color:#f3962f;width:16px}@keyframes fade{from{opacity:.25}to{opacity:1}}.next,.prev{cursor:pointer;position:absolute;top:50%;transform:translateY(-50%);color:#fff;font-weight:700;background-color:#1b2133!important;border-radius:50%;z-index:999;height:32px!important;width:32px!important;display:flex;align-items:center;margin-top:-16px;justify-content:center}.prev{left:0;margin-left:-16px}.next{right:0;margin-right:-16px}.navigation.bottom-right .prev{left:unset;right:45px;bottom:-15px;top:unset}.navigation.bottom-right .next{left:unset;right:15px;bottom:-15px;top:unset}.navigation.bottom-center .prev{left:calc(50% - 20px);right:unset;bottom:-15px;top:unset}.navigation.bottom-center .next{left:calc(50% + 20px);right:unset;bottom:-15px;top:unset}.navigation.bottom-left .prev{left:15px;right:unset;bottom:-15px;top:unset}.navigation.bottom-left .next{left:60px;right:unset;bottom:-15px;top:unset}.navigation.middle-inline .prev{left:30px}.navigation.middle-inline .next{right:30px}.banner-container-solo{overflow:hidden;margin:auto;border-radius:12px}.banner-image-solo{width:100%;display:block;border-radius:12px;background:#f5f6fa;-o-object-fit:scale-down;object-fit:scale-down;height:inherit}.default-slider{height:100%;background:#d4e2fb}.default-slider .default-title{text-align:center;position:absolute;top:50%;left:0;right:0;margin:auto;transform:translateY(-50%);z-index:999;background:#e6efff;padding:32px;width:500px}.default-slider .default-title p{word-break:break-word;margin:0!important;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;text-transform:uppercase}@media screen and (max-width:768px){.default-slider{height:384px;width:100%}.default-slider .default-title{width:unset!important}}@media screen and (min-width:769px){.navigation.middle-inline .prev{left:18%!important}.navigation.middle-inline .next{right:6%!important}}"]
161
+ styles: [".banner-container{min-height:243px;position:relative;margin:auto;padding-bottom:40px}.banner-container.inline-meta{padding-bottom:0!important}.banner-container.flat .banner .banner-image{border-radius:0!important}@media screen and (min-width:769px){.atictitopbanner{height:380px!important}}.banner-overlay{z-index:1;top:0;left:0;width:100%;height:100%;background:linear-gradient(to left,rgba(0,0,0,.25) 0,rgba(0,0,0,0) 15%,rgba(0,0,0,0) 85%,rgba(0,0,0,.25) 100%);border-radius:inherit}.banner{-webkit-animation-name:fade;-webkit-animation-duration:1.5s;animation-name:fade;animation-duration:1.5s;border-radius:inherit;height:inherit}.banner .banner-image{width:100%;min-height:380px;display:block;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.banner .bannerimage-mdo{width:100%;display:block;height:inherit;border-radius:inherit;-o-object-fit:cover;object-fit:cover}.banner-meta{text-align:center;z-index:2;padding:8px 12px;position:absolute;bottom:0;left:50%;border-radius:12px;transform:translateX(-50%);box-sizing:border-box}.banner-meta.left{left:0;transform:translateX(0)}.banner-meta.right{left:100%;transform:translateX(-100%)}.banner-meta .banner-title{color:#f2f2f2;margin-bottom:8px;font-size:1.1rem}@media only screen and (max-width:599px){.banner-meta .banner-title{display:none}}.banner-meta .dots-container{padding:8px;display:flex;align-items:center;justify-content:center}.banner-meta .dots-container .dot{cursor:pointer;height:6px;width:6px;margin:0 4px;background-color:rgba(0,0,0,.4);border-radius:50%;display:inline-block;transition:background-color .5s!important}@media only screen and (max-width:599px){.banner-meta .dots-container .dot{height:8px;width:8px;margin:0 4px}}.banner-meta .dots-container .dot.active{border-radius:4px;background-color:#f3962f;width:16px}@keyframes fade{from{opacity:.25}to{opacity:1}}.next,.prev{cursor:pointer;position:absolute;top:50%;transform:translateY(-50%);color:#fff;font-weight:700;background-color:#1b2133!important;border-radius:50%;z-index:999;height:32px!important;width:32px!important;display:flex;align-items:center;margin-top:-16px;justify-content:center}.prev{left:0;margin-left:-16px}.next{right:0;margin-right:-16px}.navigation.bottom-right .prev{left:unset;right:45px;bottom:-15px;top:unset}.navigation.bottom-right .next{left:unset;right:15px;bottom:-15px;top:unset}.navigation.bottom-center .prev{left:calc(50% - 20px);right:unset;bottom:-15px;top:unset}.navigation.bottom-center .next{left:calc(50% + 20px);right:unset;bottom:-15px;top:unset}.navigation.bottom-left .prev{left:15px;right:unset;bottom:-15px;top:unset}.navigation.bottom-left .next{left:60px;right:unset;bottom:-15px;top:unset}.navigation.middle-inline .prev{left:30px}.navigation.middle-inline .next{right:30px}.banner-container-solo{overflow:hidden;margin:auto;border-radius:12px}.banner-image-solo{width:100%;display:block;border-radius:12px;background:#f5f6fa;-o-object-fit:cover;object-fit:cover;height:inherit}.default-slider{height:100%;background:#d4e2fb}.default-slider .default-title{text-align:center;position:absolute;top:50%;left:0;right:0;margin:auto;transform:translateY(-50%);z-index:999;background:#e6efff;padding:32px;width:500px}.default-slider .default-title p{word-break:break-word;margin:0!important;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;text-transform:uppercase}@media screen and (max-width:768px){.default-slider{height:384px;width:100%}.default-slider .default-title{width:unset!important}}@media screen and (min-width:769px){.navigation.middle-inline .prev{left:18%!important}.navigation.middle-inline .next{right:6%!important}}"]
162
162
  }] }
163
163
  ];
164
164
  /** @nocollapse */