@sunbird-cb/consumption 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/bundles/sunbird-cb-consumption.umd.js +171 -30
  2. package/bundles/sunbird-cb-consumption.umd.js.map +1 -1
  3. package/bundles/sunbird-cb-consumption.umd.min.js +1 -1
  4. package/bundles/sunbird-cb-consumption.umd.min.js.map +1 -1
  5. package/esm2015/lib/_common/announcements/announcements.component.js +2 -2
  6. package/esm2015/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.js +128 -0
  7. package/esm2015/lib/_common/cards/cards.module.js +12 -3
  8. package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +3 -3
  9. package/esm2015/lib/_common/data-points/data-points.component.js +3 -3
  10. package/esm2015/lib/_common/pills/pills.component.js +1 -1
  11. package/esm2015/lib/_common/user-content-rating/user-content-rating-lib.component.js +7 -1
  12. package/esm2015/sunbird-cb-consumption.js +23 -22
  13. package/esm5/lib/_common/announcements/announcements.component.js +2 -2
  14. package/esm5/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.js +131 -0
  15. package/esm5/lib/_common/cards/cards.module.js +12 -3
  16. package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +3 -3
  17. package/esm5/lib/_common/data-points/data-points.component.js +3 -3
  18. package/esm5/lib/_common/pills/pills.component.js +1 -1
  19. package/esm5/lib/_common/user-content-rating/user-content-rating-lib.component.js +7 -1
  20. package/esm5/sunbird-cb-consumption.js +23 -22
  21. package/fesm2015/sunbird-cb-consumption.js +148 -10
  22. package/fesm2015/sunbird-cb-consumption.js.map +1 -1
  23. package/fesm5/sunbird-cb-consumption.js +150 -10
  24. package/fesm5/sunbird-cb-consumption.js.map +1 -1
  25. package/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.d.ts +19 -0
  26. package/package.json +1 -1
  27. package/sunbird-cb-consumption.d.ts +22 -21
  28. package/sunbird-cb-consumption.metadata.json +1 -1
@@ -5555,7 +5555,7 @@
5555
5555
  // console.log('calling after - response, ', response)
5556
5556
  if (response && response.results) {
5557
5557
  // console.log('calling after-- ')
5558
- if (response.results.result.content) {
5558
+ if (response.results.result.content && response.results.result.content.length) {
5559
5559
  this.processStrip(strip, this.transformContentsToWidgets(response.results.result.content, strip), 'done', calculateParentStatus, response.viewMoreUrl);
5560
5560
  }
5561
5561
  else {
@@ -5611,7 +5611,7 @@
5611
5611
  // console.log('calling after - response, ', response)
5612
5612
  if (response && response.results) {
5613
5613
  // console.log('calling after-- ')
5614
- if (response.results.result.content) {
5614
+ if (response.results.result.content && response.results.result.content.length) {
5615
5615
  this.processStrip(strip, this.transformContentsToWidgets(response.results.result.content, strip), 'done', calculateParentStatus, response.viewMoreUrl);
5616
5616
  }
5617
5617
  else {
@@ -6542,8 +6542,8 @@
6542
6542
  DataPointsComponent.decorators = [
6543
6543
  { type: core.Component, args: [{
6544
6544
  selector: 'sb-uic-data-points',
6545
- template: "<div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && !isDataLoading\">\n <div *ngFor=\"let obj of objectData; let last = last\" class=\"\">\n <div class=\"element-div\" [ngClass]=\"{'linebreak': obj?.linebreak }\">\n <div class=\"flex flex-row gap-3 items-top\">\n <div>\n <img class=\"objIcon\" [src]=\"obj.icon\" [style.color]=\"obj?.iconColor\">\n </div>\n <div>\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"(obj && obj.value)\">\n {{obj.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"objDescription\">{{obj?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow'\">\n <div class=\"flex gap-4\">\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\n <div class=\"melement-div {{obj?.background}} flex-item\">\n <div class=\"flex flex-row gap-3\">\n <div>\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon\" [src]=\"obj.icon\">\n </div>\n <div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\n {{obj?.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">{{obj?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n </div> \n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\n <div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\n <div class=\"top-container\">\n <div class=\"flex-container\" *ngFor=\"let chunk of customArray\">\n <div *ngFor=\"let item of chunk\">\n <div class=\"flex-item\">\n <div class=\"flex flex-row gap-5 infra-element-div\">\n <div>\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"!(item && item.value)\">0</div>\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"(item && item.value)\">\n {{item?.value | number: item.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"item?.labelColor\" class=\"custom-opacity infra-objDescription padding-top-s\">{{item?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n\n </div>\n </div>\n </div> \n</div>\n\n\n<!-- skeleton loaders -->\n\n<ng-container>\n <div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && isDataLoading\">\n <div *ngFor=\"let obj of [0,1,2,3]\" class=\"\">\n <div class=\"element-div linebreak\" >\n <div class=\"flex flex-row gap-3 items-top\">\n <div>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'32px'\"\n [height]=\"'32px'\"></sb-uic-skeleton-loader>\n </div>\n <div>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'150px'\"\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\n </div>\n </div>\n </div>\n </div>\n </div>\n</ng-container>\n",
6546
- styles: [".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)}.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}.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}@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}}"]
6545
+ template: "<div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && !isDataLoading\">\n <div *ngFor=\"let obj of objectData; let last = last\" class=\"\">\n <div class=\"element-div\" [ngClass]=\"{'linebreak': obj?.linebreak && !last}\">\n <div class=\"flex flex-row gap-3 items-top\">\n <div>\n <img class=\"objIcon\" [src]=\"obj.icon\" [style.color]=\"obj?.iconColor\">\n </div>\n <div>\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\n <div [style.color]=\"obj?.valueColor\" class=\"objHeader pb-1\" *ngIf=\"(obj && obj.value)\">\n {{obj.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"objDescription\">{{obj?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleRow'\">\n <div class=\"flex gap-4\">\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\n <div class=\"melement-div {{obj?.background}} flex-item\" [style.background]=\"obj?.background\" >\n <div class=\"flex flex-row gap-3\">\n <div>\n <img [style.color]=\"obj?.iconColor\" class=\"mobjIcon\" [src]=\"obj.icon\">\n </div>\n <div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">0</div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\n {{obj?.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">{{obj?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n </div> \n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\n <div class=\"w-full\" *ngIf=\"layoutType === 'gridLayout'\">\n <div class=\"top-container\">\n <div class=\"flex-container\" *ngFor=\"let chunk of customArray\">\n <div *ngFor=\"let item of chunk\">\n <div class=\"flex-item\">\n <div class=\"flex flex-row gap-5 infra-element-div\">\n <div>\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"!(item && item.value)\">0</div>\n <div [style.color]=\"item?.valueColor\" class=\"infra-objHeader\" *ngIf=\"(item && item.value)\">\n {{item?.value | number: item.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"item?.labelColor\" class=\"custom-opacity infra-objDescription padding-top-s\">{{item?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n\n </div>\n </div>\n </div> \n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'singleFlexeRow'\">\n <div class=\"flex\">\n <div *ngFor=\"let obj of objectData\" class=\"flex-container\">\n <div class=\"singleFlexeRow-div flex-item\">\n <div class=\"flex flex-row gap-3\">\n <div>\n <img [style.color]=\"obj?.iconColor\" class=\"singleFlexeRowIcon\" [src]=\"obj.icon\">\n </div>\n <div class=\"flex flex-col\">\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">0</div>\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\n {{obj?.value | number: obj.value % 1 === 0 ? '1.0-0' : '1.1-2'}}\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">{{obj?.label}}</div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n\n<!-- skeleton loaders -->\n\n<ng-container>\n <div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'multipleRows' && isDataLoading\">\n <div *ngFor=\"let obj of [0,1,2,3]\" class=\"\">\n <div class=\"element-div linebreak\" >\n <div class=\"flex flex-row gap-3 items-top\">\n <div>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'32px'\"\n [height]=\"'32px'\"></sb-uic-skeleton-loader>\n </div>\n <div>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'100px'\"\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded mb-1'\" [width]=\"'150px'\"\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\n </div>\n </div>\n </div>\n </div>\n </div>\n</ng-container>\n",
6546
+ styles: [".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-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}.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}@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}}"]
6547
6547
  }] }
6548
6548
  ];
6549
6549
  /** @nocollapse */
@@ -8019,7 +8019,7 @@
8019
8019
  AnnouncementsComponent.decorators = [
8020
8020
  { type: core.Component, args: [{
8021
8021
  selector: 'sb-uic-announcements',
8022
- template: "<p>announcements works!</p>\n<div class=\"w-full\">\n <div class=\"flex item-center key-logo\">\n <img class=\"\" [src]=\"objectData?.logoUrl\">\n </div>\n <div class=\"flex item-center key-logo \">\n <div class=\"key-heading\"\n [style.backgroundColor]=\"objectData?.header?.background\"\n [style.color]=\"objectData?.header?.color\">\n {{objectData?.title}}\n </div>\n </div>\n <div class=\"key-list-container\"\n [style.borderColor]=\"objectData?.panelborder\"\n [style.backgroundColor]=\"objectData?.panelBackground\">\n <div class=\"key-list\">\n <div *ngFor=\"let item of objectData?.list; let i = index\">\n <div class=\"key-list-item mb-{{ objectData?.list?.length === (i+1) ? '' : '4'}}\" \n [style.borderColor]=\"objectData?.listItem?.border\"\n [style.backgroundColor]=\"objectData?.listItem?.background\">\n <div class=\"key-list-item-content {{item?.value?.length > 152 && !item?.expanded ? 'expand' : 'un-expand'}}\" [innerHTML]=\"item?.value\"></div>\n <div class=\"more-or-less\" *ngIf=\"item?.value?.length > 152\" [style.color]=\"objectData?.panelborder\">\n <div class=\"cursor-pointer\" (click)=\"viewMoreOrLess(item)\" *ngIf=\"!item?.expanded\">View more</div>\n <div class=\"cursor-pointer\" (click)=\"viewMoreOrLess(item)\" *ngIf=\"item?.expanded\">View less</div>\n </div>\n </div>\n </div> \n </div> \n </div>\n</div>",
8022
+ template: "<div class=\"w-full\">\n <div class=\"flex item-center key-logo\">\n <img class=\"\" [src]=\"objectData?.logoUrl\">\n </div>\n <div class=\"flex item-center key-logo \">\n <div class=\"key-heading\"\n [style.backgroundColor]=\"objectData?.header?.background\"\n [style.color]=\"objectData?.header?.color\">\n {{objectData?.title}}\n </div>\n </div>\n <div class=\"key-list-container\"\n [style.borderColor]=\"objectData?.panelborder\"\n [style.backgroundColor]=\"objectData?.panelBackground\">\n <div class=\"key-list\">\n <div *ngFor=\"let item of objectData?.list; let i = index\">\n <div class=\"key-list-item mb-{{ objectData?.list?.length === (i+1) ? '' : '4'}}\" \n [style.borderColor]=\"objectData?.listItem?.border\"\n [style.backgroundColor]=\"objectData?.listItem?.background\">\n <div class=\"key-list-item-content {{item?.value?.length > 152 && !item?.expanded ? 'expand' : 'un-expand'}}\" [innerHTML]=\"item?.value\"></div>\n <div class=\"more-or-less\" *ngIf=\"item?.value?.length > 152\" [style.color]=\"objectData?.panelborder\">\n <div class=\"cursor-pointer\" (click)=\"viewMoreOrLess(item)\" *ngIf=\"!item?.expanded\">View more</div>\n <div class=\"cursor-pointer\" (click)=\"viewMoreOrLess(item)\" *ngIf=\"item?.expanded\">View less</div>\n </div>\n </div>\n </div> \n </div> \n </div>\n</div>",
8023
8023
  styles: [".key-logo{align-items:center;justify-content:center}.key-list-container{border:1px solid #ccc;padding:45px 15px 15px;border-radius:12px;margin-top:-20px}.key-list{max-height:600px;overflow:auto}.key-list::-webkit-scrollbar{display:none}.key-list-item{padding:16px;border:1px solid #ccc;border-radius:12px;min-height:56px}::ng-deep .key-list-item-content a{color:#1b4ca1!important}.key-list-item-content{font-family:Lato;font-size:14px;font-weight:400;line-height:20px;text-align:left;white-space:initial;position:relative;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.expand{-webkit-line-clamp:3}.un-expand{-webkit-line-clamp:0}.more-or-less{font-family:Lato;font-size:14px;line-height:20px;font-weight:600}.key-heading{font-family:Montserrat;font-size:16px;font-weight:600;line-height:19.5px;text-align:center;padding:10px 50px;border-radius:20px;margin-top:-3px;animation:.9s infinite paddingAnimation}@keyframes paddingAnimation{0%,100%{padding:10px 50px}25%,75%{padding:10px 55px}50%{padding:10px 60px}}"]
8024
8024
  }] }
8025
8025
  ];
@@ -9383,6 +9383,132 @@
9383
9383
  CardWideComponent.prototype.configSvc;
9384
9384
  }
9385
9385
 
9386
+ /**
9387
+ * @fileoverview added by tsickle
9388
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
9389
+ */
9390
+ var CardMDOChannelComponent = /** @class */ (function () {
9391
+ function CardMDOChannelComponent(events, translate, langtranslations, configSvc) {
9392
+ var _this = this;
9393
+ this.events = events;
9394
+ this.translate = translate;
9395
+ this.langtranslations = langtranslations;
9396
+ this.configSvc = configSvc;
9397
+ this.userData = new core.EventEmitter();
9398
+ this.widgetType = '';
9399
+ this.widgetSubType = '';
9400
+ this.langtranslations.languageSelectedObservable.subscribe((/**
9401
+ * @return {?}
9402
+ */
9403
+ function () {
9404
+ if (localStorage.getItem('websiteLanguage')) {
9405
+ _this.translate.setDefaultLang('en');
9406
+ /** @type {?} */
9407
+ var lang = (/** @type {?} */ (localStorage.getItem('websiteLanguage')));
9408
+ _this.translate.use(lang);
9409
+ }
9410
+ }));
9411
+ }
9412
+ /**
9413
+ * @return {?}
9414
+ */
9415
+ CardMDOChannelComponent.prototype.ngOnInit = /**
9416
+ * @return {?}
9417
+ */
9418
+ function () {
9419
+ /** @type {?} */
9420
+ var instanceConfig = this.configSvc.instanceConfig;
9421
+ if (instanceConfig) {
9422
+ this.defaultThumbnail = instanceConfig.logos.defaultContent || '';
9423
+ this.sourceLogos = instanceConfig.sources;
9424
+ this.defaultSLogo = instanceConfig.logos.defaultSourceLogo || '';
9425
+ }
9426
+ else {
9427
+ this.defaultThumbnail = '/assets/instances/eagle/app_logos/default.png';
9428
+ this.defaultSLogo = '/assets/instances/eagle/app_logos/KarmayogiBharat_Logo.svg';
9429
+ }
9430
+ };
9431
+ /**
9432
+ * @return {?}
9433
+ */
9434
+ CardMDOChannelComponent.prototype.raiseTelemetry = /**
9435
+ * @return {?}
9436
+ */
9437
+ function () {
9438
+ // if(this.forPreview){
9439
+ // return
9440
+ // }
9441
+ this.events.raiseInteractTelemetry({
9442
+ type: 'click',
9443
+ subType: this.widgetType + "-" + this.widgetSubType,
9444
+ id: lodash.camelCase(this.widgetData.content.userId) + "-card",
9445
+ }, {
9446
+ id: this.widgetData.content.userId,
9447
+ // type: this.widgetData.user.primaryCategory,
9448
+ //context: this.widgetData.context,
9449
+ rollup: {},
9450
+ }, {
9451
+ pageIdExt: lodash.camelCase('user') + "-card",
9452
+ module: lodash.camelCase('user'),
9453
+ });
9454
+ };
9455
+ CardMDOChannelComponent.decorators = [
9456
+ { type: core.Component, args: [{
9457
+ selector: 'sb-uic-card-mdo-channel',
9458
+ template: "<mat-card class=\"channels-card card-channels-container mr-5 padding-remove cursor-pointer\">\n <div class=\"display-contents\">\n <ng-container *ngIf=\"widgetData.content\">\n <a (click)=\"raiseTelemetry();$event.stopPropagation()\" role=\"link\"\n i18n-aria-label>\n <ng-container>\n <mat-card-content class=\"min-top\">\n <div class=\"flex flex-col h-full\">\n <div class=\"image-container\">\n <ng-container *ngIf=\"widgetData.content.posterImage\">\n <img mat-card-image [src]=\"widgetData.content.posterImage | pipePublicURL\" loading=\"lazy\"\n class=\"card-img ws-mat-primary-lite-background margin-remove\" [wsUtilsDefaultThumbnail]=\"defaultThumbnail\"\n [alt]=\"widgetData.content.name\" />\n </ng-container>\n <ng-container *ngIf=\"!widgetData.content.posterImage\">\n <ng-container *ngIf=\"widgetData.content.appIcon; else defaultImg\">\n <img mat-card-image [src]=\"widgetData.content.appIcon | pipePublicURL\" loading=\"lazy\"\n class=\"card-img ws-mat-primary-lite-background margin-remove\" [wsUtilsDefaultThumbnail]=\"defaultThumbnail\"\n [alt]=\"widgetData.content.name\" />\n </ng-container>\n <ng-template #defaultImg>\n <img mat-card-image [src]=\"defaultThumbnail\" loading=\"lazy\"\n class=\"card-img ws-mat-primary-lite-background margin-remove\"\n [alt]=\"widgetData.content.name\" />\n </ng-template>\n </ng-container>\n </div>\n <div class=\"flex title-container px-2\">\n <div [id]=\"'m-c-'+ widgetData.content?.identifier\"\n class=\"flex-1 text-center mat-subheading-2 title-text ws-mat-black-text\">\n {{ widgetData.content.name }}\n </div>\n </div>\n </div>\n </mat-card-content>\n </ng-container>\n </a>\n </ng-container>\n </div>\n</mat-card>",
9459
+ styles: [".card-channels-container{position:relative;width:282px;box-sizing:border-box;box-shadow:0 10px 30px rgba(153,153,153,.2);overflow:hidden;min-height:156px;height:156px;max-height:156px;margin:16px 8px;background:#7faeff!important;border-radius:12px;padding:4px!important}.card-channels-container .min-top{background:inherit;margin-bottom:0;height:inherit}.card-channels-container .image-container{background-color:#fff;width:inherit;height:86px;max-height:86px;overflow:hidden;display:flex;align-items:center;justify-content:center;border-radius:12px}.card-channels-container .card-img{max-height:62px;min-height:62px;display:block;-o-object-fit:fill;object-fit:contain}.card-channels-container .mat-subheading-1{font:600 14px/24px Montserrat}.card-channels-container .title-container{background:inherit}.card-channels-container .description-text{position:relative;overflow:hidden;height:51px}.card-channels-container .title-text{word-break:break-all;white-space:initial;margin:8px 0;position:relative;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;min-height:48px}"]
9460
+ }] }
9461
+ ];
9462
+ /** @nocollapse */
9463
+ CardMDOChannelComponent.ctorParameters = function () { return [
9464
+ { type: utilsV2.EventService },
9465
+ { type: core$1.TranslateService },
9466
+ { type: utilsV2.MultilingualTranslationsService },
9467
+ { type: utilsV2.ConfigurationsService }
9468
+ ]; };
9469
+ CardMDOChannelComponent.propDecorators = {
9470
+ widgetData: [{ type: core.Input }],
9471
+ userData: [{ type: core.Output }]
9472
+ };
9473
+ return CardMDOChannelComponent;
9474
+ }());
9475
+ if (false) {
9476
+ /** @type {?} */
9477
+ CardMDOChannelComponent.prototype.widgetData;
9478
+ /** @type {?} */
9479
+ CardMDOChannelComponent.prototype.userData;
9480
+ /** @type {?} */
9481
+ CardMDOChannelComponent.prototype.defaultThumbnail;
9482
+ /** @type {?} */
9483
+ CardMDOChannelComponent.prototype.sourceLogos;
9484
+ /** @type {?} */
9485
+ CardMDOChannelComponent.prototype.defaultSLogo;
9486
+ /** @type {?} */
9487
+ CardMDOChannelComponent.prototype.widgetType;
9488
+ /** @type {?} */
9489
+ CardMDOChannelComponent.prototype.widgetSubType;
9490
+ /**
9491
+ * @type {?}
9492
+ * @private
9493
+ */
9494
+ CardMDOChannelComponent.prototype.events;
9495
+ /**
9496
+ * @type {?}
9497
+ * @private
9498
+ */
9499
+ CardMDOChannelComponent.prototype.translate;
9500
+ /**
9501
+ * @type {?}
9502
+ * @private
9503
+ */
9504
+ CardMDOChannelComponent.prototype.langtranslations;
9505
+ /**
9506
+ * @type {?}
9507
+ * @private
9508
+ */
9509
+ CardMDOChannelComponent.prototype.configSvc;
9510
+ }
9511
+
9386
9512
  /**
9387
9513
  * @fileoverview added by tsickle
9388
9514
  * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
@@ -9392,7 +9518,14 @@
9392
9518
  }
9393
9519
  CardsModule.decorators = [
9394
9520
  { type: core.NgModule, args: [{
9395
- declarations: [CardResourceComponent, CardsComponent, CardPortraitComponent, CardUserComponent, CardLandscapeComponent, CardWideComponent],
9521
+ declarations: [
9522
+ CardResourceComponent,
9523
+ CardsComponent, CardPortraitComponent,
9524
+ CardUserComponent,
9525
+ CardLandscapeComponent,
9526
+ CardWideComponent,
9527
+ CardMDOChannelComponent
9528
+ ],
9396
9529
  imports: [
9397
9530
  common.CommonModule,
9398
9531
  material.MatCardModule,
@@ -9413,7 +9546,8 @@
9413
9546
  CardPortraitComponent,
9414
9547
  CardLandscapeComponent,
9415
9548
  CardUserComponent,
9416
- CardWideComponent
9549
+ CardWideComponent,
9550
+ CardMDOChannelComponent
9417
9551
  ],
9418
9552
  },] }
9419
9553
  ];
@@ -9925,7 +10059,7 @@
9925
10059
  { type: core.Component, args: [{
9926
10060
  selector: 'sb-uic-pills',
9927
10061
  template: "<ng-container *ngIf=\"!isLoading\">\n <mat-chip-list >\n <ng-container *ngFor=\"let pill of pillsData\">\n <mat-chip class=\"competency-chip\" (click)=\"selectedPill(pill)\" \n [ngClass]=\"{'active': selectedValue === pill?.name}\">\n <span class=\"pill-name\">{{pill?.name | titlecase}} <span *ngIf=\"pill?.count\">({{pill?.count}})</span></span>\n </mat-chip>\n </ng-container>\n </mat-chip-list>\n</ng-container>\n<ng-container *ngIf=\"isLoading\">\n <div class=\"flex gap-4\">\n <ng-container *ngFor=\"let pill of [0,1,2]\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded'\" [width]=\"'100px'\"\n [height]=\"'24px'\"></sb-uic-skeleton-loader>\n </ng-container>\n </div>\n</ng-container>\n",
9928
- styles: [".competency-chip{padding:12px 16px;border-radius:50px;border:1px solid #fff;font-family:Lato;font-size:14px;font-weight:700;line-height:16.8px;text-align:center;background-color:transparent!important;cursor:pointer}.competency-chip .pill-name{color:#fff!important}.active{background-color:#1b4ca1!important}"]
10062
+ styles: [".competency-chip{z-index:99999;padding:12px 16px;border-radius:50px;border:1px solid #fff;font-family:Lato;font-size:14px;font-weight:700;line-height:16.8px;text-align:center;background-color:transparent!important;cursor:pointer}.competency-chip .pill-name{color:#fff!important}.active{background-color:#1b4ca1!important}"]
9929
10063
  }] }
9930
10064
  ];
9931
10065
  /** @nocollapse */
@@ -10346,6 +10480,12 @@
10346
10480
  else {
10347
10481
  _this.emptyResponse.emit(true);
10348
10482
  }
10483
+ }), (/**
10484
+ * @param {?} _error
10485
+ * @return {?}
10486
+ */
10487
+ function (_error) {
10488
+ _this.emptyResponse.emit(true);
10349
10489
  }));
10350
10490
  };
10351
10491
  /**
@@ -10992,28 +11132,29 @@
10992
11132
  exports.WIDGET_REGISTRATION_LIB_CONFIG = WIDGET_REGISTRATION_LIB_CONFIG;
10993
11133
  exports.ɵa = ContentStripWithTabsLibComponent;
10994
11134
  exports.ɵb = WidgetContentService;
10995
- exports.ɵba = PipePublicURLModule;
10996
- exports.ɵbb = PipePublicURL;
10997
- exports.ɵbc = DisplayContentTypeLibModule;
10998
- exports.ɵbd = DisplayContentTypeLibComponent;
10999
- exports.ɵbe = DefaultThumbnailModule;
11000
- exports.ɵbf = DefaultThumbnailDirective;
11001
- exports.ɵbg = PipeDurationTransformModule;
11002
- exports.ɵbh = PipeDurationTransformPipe;
11003
- exports.ɵbi = CompetencyPassbookComponent;
11004
- exports.ɵbj = CompetencyPassbookService;
11005
- exports.ɵbk = PillsModule;
11006
- exports.ɵbl = PillsComponent;
11007
- exports.ɵbm = UserContentRatingLibComponent;
11008
- exports.ɵbn = ScrollableItemDirective;
11009
- exports.ɵbo = RatingService;
11010
- exports.ɵbp = UserContentRatingLibService;
11011
- exports.ɵbq = AvatarPhotoLibModule;
11012
- exports.ɵbr = AvatarPhotoLibComponent;
11013
- exports.ɵbs = MyHammerConfig$1;
11014
- exports.ɵbt = SlidersNgContentLibModule;
11015
- exports.ɵbu = SlidersNgContentLibComponent;
11016
- exports.ɵbv = ScrollableItemModule;
11135
+ exports.ɵba = CardMDOChannelComponent;
11136
+ exports.ɵbb = PipePublicURLModule;
11137
+ exports.ɵbc = PipePublicURL;
11138
+ exports.ɵbd = DisplayContentTypeLibModule;
11139
+ exports.ɵbe = DisplayContentTypeLibComponent;
11140
+ exports.ɵbf = DefaultThumbnailModule;
11141
+ exports.ɵbg = DefaultThumbnailDirective;
11142
+ exports.ɵbh = PipeDurationTransformModule;
11143
+ exports.ɵbi = PipeDurationTransformPipe;
11144
+ exports.ɵbj = CompetencyPassbookComponent;
11145
+ exports.ɵbk = CompetencyPassbookService;
11146
+ exports.ɵbl = PillsModule;
11147
+ exports.ɵbm = PillsComponent;
11148
+ exports.ɵbn = UserContentRatingLibComponent;
11149
+ exports.ɵbo = ScrollableItemDirective;
11150
+ exports.ɵbp = RatingService;
11151
+ exports.ɵbq = UserContentRatingLibService;
11152
+ exports.ɵbr = AvatarPhotoLibModule;
11153
+ exports.ɵbs = AvatarPhotoLibComponent;
11154
+ exports.ɵbt = MyHammerConfig$1;
11155
+ exports.ɵbu = SlidersNgContentLibModule;
11156
+ exports.ɵbv = SlidersNgContentLibComponent;
11157
+ exports.ɵbw = ScrollableItemModule;
11017
11158
  exports.ɵc = WidgetUserService;
11018
11159
  exports.ɵd = MultilingualTranslationsService;
11019
11160
  exports.ɵe = ConfigurationsService;