@sunbird-cb/consumption 0.0.20 → 0.0.22
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.
- package/bundles/sunbird-cb-consumption.umd.js +204 -68
- package/bundles/sunbird-cb-consumption.umd.js.map +1 -1
- package/bundles/sunbird-cb-consumption.umd.min.js +1 -1
- package/bundles/sunbird-cb-consumption.umd.min.js.map +1 -1
- package/esm2015/lib/_common/announcements/announcements.component.js +2 -2
- package/esm2015/lib/_common/cards/card-karma-programs/card-karma-programs.component.js +128 -0
- package/esm2015/lib/_common/cards/card-landscape/card-landscape.component.js +5 -1
- package/esm2015/lib/_common/cards/cards.module.js +6 -3
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +2 -41
- package/esm2015/lib/_common/data-points/data-points.component.js +22 -4
- package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +24 -1
- package/esm2015/sunbird-cb-consumption.js +23 -22
- package/esm5/lib/_common/announcements/announcements.component.js +2 -2
- package/esm5/lib/_common/cards/card-karma-programs/card-karma-programs.component.js +131 -0
- package/esm5/lib/_common/cards/card-landscape/card-landscape.component.js +5 -1
- package/esm5/lib/_common/cards/cards.module.js +6 -3
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +3 -41
- package/esm5/lib/_common/data-points/data-points.component.js +22 -4
- package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +24 -1
- package/esm5/sunbird-cb-consumption.js +23 -22
- package/fesm2015/sunbird-cb-consumption.js +179 -47
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +182 -47
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/cards/card-karma-programs/card-karma-programs.component.d.ts +19 -0
- package/lib/_common/data-points/data-points.component.d.ts +1 -0
- package/package.json +1 -1
- package/sunbird-cb-consumption.d.ts +22 -21
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -187,6 +187,17 @@ var HorizontalScrollerV2Component = /** @class */ (function () {
|
|
|
187
187
|
if (elem.scrollLeft !== 0 && (elem.scrollWidth !== elem.clientWidth + elem.scrollLeft)) {
|
|
188
188
|
this.activeNav -= 1;
|
|
189
189
|
}
|
|
190
|
+
else {
|
|
191
|
+
if (this.sliderConfig.arrowsAlwaysOn) {
|
|
192
|
+
if (this.horizontalScrollElem.nativeElement.scrollLeft === 0) {
|
|
193
|
+
this.horizontalScrollElem.nativeElement.scrollTo({
|
|
194
|
+
left: elem.scrollWidth,
|
|
195
|
+
behavior: 'smooth',
|
|
196
|
+
});
|
|
197
|
+
this.activeNav = this.bottomDotsArray.length - 1;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
190
201
|
}
|
|
191
202
|
};
|
|
192
203
|
/**
|
|
@@ -211,6 +222,17 @@ var HorizontalScrollerV2Component = /** @class */ (function () {
|
|
|
211
222
|
if (elem.scrollLeft !== 0 && (elem.scrollWidth !== elem.clientWidth + elem.scrollLeft)) {
|
|
212
223
|
this.activeNav += 1;
|
|
213
224
|
}
|
|
225
|
+
else {
|
|
226
|
+
if (this.sliderConfig.arrowsAlwaysOn) {
|
|
227
|
+
if (this.horizontalScrollElem.nativeElement.scrollLeft !== 0 && elem.clientWidth + elem.scrollLeft >= elem.scrollWidth) {
|
|
228
|
+
this.horizontalScrollElem.nativeElement.scrollTo({
|
|
229
|
+
left: 0,
|
|
230
|
+
behavior: 'smooth',
|
|
231
|
+
});
|
|
232
|
+
this.activeNav = 0;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
214
236
|
}
|
|
215
237
|
};
|
|
216
238
|
/**
|
|
@@ -224,6 +246,7 @@ var HorizontalScrollerV2Component = /** @class */ (function () {
|
|
|
224
246
|
* @return {?}
|
|
225
247
|
*/
|
|
226
248
|
function (elem) {
|
|
249
|
+
debugger;
|
|
227
250
|
this.enablePrev = true;
|
|
228
251
|
this.enableNext = true;
|
|
229
252
|
if (elem.scrollLeft === 0) {
|
|
@@ -5329,7 +5352,7 @@ var ContentStripWithTabsLibComponent = /** @class */ (function (_super) {
|
|
|
5329
5352
|
function (strip, calculateParentStatus) {
|
|
5330
5353
|
if (calculateParentStatus === void 0) { calculateParentStatus = true; }
|
|
5331
5354
|
return __awaiter(this, void 0, void 0, function () {
|
|
5332
|
-
var originalFilters, response,
|
|
5355
|
+
var originalFilters, response, error_5;
|
|
5333
5356
|
return __generator(this, function (_a) {
|
|
5334
5357
|
switch (_a.label) {
|
|
5335
5358
|
case 0:
|
|
@@ -5352,45 +5375,7 @@ var ContentStripWithTabsLibComponent = /** @class */ (function (_super) {
|
|
|
5352
5375
|
if (response && response.results) {
|
|
5353
5376
|
// console.log('calling after-- ')
|
|
5354
5377
|
if (response.results.result.content && response.results.result.content.length) {
|
|
5355
|
-
|
|
5356
|
-
{
|
|
5357
|
-
// tslint:disable-next-line: max-line-length
|
|
5358
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5359
|
-
appIcon: '',
|
|
5360
|
-
name: 'Ministry of Consumer Affairs, Food and Public Distribution',
|
|
5361
|
-
},
|
|
5362
|
-
{
|
|
5363
|
-
// tslint:disable-next-line: max-line-length
|
|
5364
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5365
|
-
appIcon: '',
|
|
5366
|
-
name: 'Ministry of Railways',
|
|
5367
|
-
},
|
|
5368
|
-
{
|
|
5369
|
-
// tslint:disable-next-line: max-line-length
|
|
5370
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5371
|
-
appIcon: '',
|
|
5372
|
-
name: 'Department of Post',
|
|
5373
|
-
},
|
|
5374
|
-
{
|
|
5375
|
-
// tslint:disable-next-line: max-line-length
|
|
5376
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5377
|
-
appIcon: '',
|
|
5378
|
-
name: 'NLC India Limited',
|
|
5379
|
-
},
|
|
5380
|
-
{
|
|
5381
|
-
// tslint:disable-next-line: max-line-length
|
|
5382
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5383
|
-
appIcon: '',
|
|
5384
|
-
name: 'Mission Karmayogi',
|
|
5385
|
-
},
|
|
5386
|
-
{
|
|
5387
|
-
// tslint:disable-next-line: max-line-length
|
|
5388
|
-
posterImage: 'https://portal.karmayogi.nic.in/content-store/content/do_114051411119235072127/artifact/do_114051411119235072127_1715260168985_default-provider.svg',
|
|
5389
|
-
appIcon: '',
|
|
5390
|
-
name: 'Mission Karmayogi',
|
|
5391
|
-
},
|
|
5392
|
-
];
|
|
5393
|
-
this.processStrip(strip, this.transformContentsToWidgets(allProviders, strip), 'done', calculateParentStatus, response.viewMoreUrl);
|
|
5378
|
+
this.processStrip(strip, this.transformContentsToWidgets(response.results.result.content, strip), 'done', calculateParentStatus, response.viewMoreUrl);
|
|
5394
5379
|
}
|
|
5395
5380
|
else {
|
|
5396
5381
|
this.processStrip(strip, [], 'error', calculateParentStatus, null);
|
|
@@ -6302,6 +6287,7 @@ var DataPointsComponent = /** @class */ (function () {
|
|
|
6302
6287
|
this.layoutType = '';
|
|
6303
6288
|
this.fetchDataFromApi = false;
|
|
6304
6289
|
this.providerId = '';
|
|
6290
|
+
this.pageLayout = '';
|
|
6305
6291
|
this.customArray = [];
|
|
6306
6292
|
this.isDataLoading = false;
|
|
6307
6293
|
}
|
|
@@ -6345,7 +6331,8 @@ var DataPointsComponent = /** @class */ (function () {
|
|
|
6345
6331
|
function () {
|
|
6346
6332
|
var _this = this;
|
|
6347
6333
|
/** @type {?} */
|
|
6348
|
-
var request = {
|
|
6334
|
+
var request = {};
|
|
6335
|
+
request = {
|
|
6349
6336
|
"request": {
|
|
6350
6337
|
"filters": {
|
|
6351
6338
|
"organisations": [
|
|
@@ -6354,6 +6341,19 @@ var DataPointsComponent = /** @class */ (function () {
|
|
|
6354
6341
|
}
|
|
6355
6342
|
}
|
|
6356
6343
|
};
|
|
6344
|
+
if (this.pageLayout && this.pageLayout === 'mdo') {
|
|
6345
|
+
request = {
|
|
6346
|
+
"request": {
|
|
6347
|
+
"filters": {
|
|
6348
|
+
"requestType": "MDO_INSIGHT",
|
|
6349
|
+
"organisations": [
|
|
6350
|
+
//this.providerId
|
|
6351
|
+
"123456"
|
|
6352
|
+
]
|
|
6353
|
+
}
|
|
6354
|
+
}
|
|
6355
|
+
};
|
|
6356
|
+
}
|
|
6357
6357
|
this.insightSvc.fetchSearchData(request).subscribe((/**
|
|
6358
6358
|
* @param {?} res
|
|
6359
6359
|
* @return {?}
|
|
@@ -6376,7 +6376,7 @@ var DataPointsComponent = /** @class */ (function () {
|
|
|
6376
6376
|
DataPointsComponent.decorators = [
|
|
6377
6377
|
{ type: Component, args: [{
|
|
6378
6378
|
selector: 'sb-uic-data-points',
|
|
6379
|
-
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",
|
|
6379
|
+
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' && !isDataLoading\">\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' && !isDataLoading\">\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 <div class=\"w-full metrics-web\" *ngIf=\"layoutType === 'singleFlexeRow' && isDataLoading\">\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 <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div class=\"flex flex-col\">\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"!(obj && obj.value)\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div [style.color]=\"obj?.valueColor\" class=\"singleFlexeRowHeader pb-2\" *ngIf=\"(obj && obj.value)\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'24px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"singleFlexeRowDescription\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'20px'\">\n </sb-uic-skeleton-loader>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class=\"w-full\" *ngIf=\"layoutType === 'singleRow' && isDataLoading\">\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 <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'20px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"!(obj && obj.value)\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div [style.color]=\"obj?.valueColor\" class=\"mobjHeader pb-1\" *ngIf=\"(obj && obj.value)\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'24px'\" [height]=\"'19px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div [style.color]=\"obj?.labelColor\" class=\"mobjDescription\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon'\" [width]=\"'100px'\" [height]=\"'18px'\">\n </sb-uic-skeleton-loader>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</ng-container>\n",
|
|
6380
6380
|
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}}"]
|
|
6381
6381
|
}] }
|
|
6382
6382
|
];
|
|
@@ -6388,7 +6388,8 @@ var DataPointsComponent = /** @class */ (function () {
|
|
|
6388
6388
|
objectData: [{ type: Input }],
|
|
6389
6389
|
layoutType: [{ type: Input }],
|
|
6390
6390
|
fetchDataFromApi: [{ type: Input }],
|
|
6391
|
-
providerId: [{ type: Input }]
|
|
6391
|
+
providerId: [{ type: Input }],
|
|
6392
|
+
pageLayout: [{ type: Input }]
|
|
6392
6393
|
};
|
|
6393
6394
|
return DataPointsComponent;
|
|
6394
6395
|
}());
|
|
@@ -6402,6 +6403,8 @@ if (false) {
|
|
|
6402
6403
|
/** @type {?} */
|
|
6403
6404
|
DataPointsComponent.prototype.providerId;
|
|
6404
6405
|
/** @type {?} */
|
|
6406
|
+
DataPointsComponent.prototype.pageLayout;
|
|
6407
|
+
/** @type {?} */
|
|
6405
6408
|
DataPointsComponent.prototype.customArray;
|
|
6406
6409
|
/** @type {?} */
|
|
6407
6410
|
DataPointsComponent.prototype.isDataLoading;
|
|
@@ -7873,7 +7876,7 @@ var AnnouncementsComponent = /** @class */ (function () {
|
|
|
7873
7876
|
AnnouncementsComponent.decorators = [
|
|
7874
7877
|
{ type: Component, args: [{
|
|
7875
7878
|
selector: 'sb-uic-announcements',
|
|
7876
|
-
template: "<div class=\"w-full\" *ngIf=\"layoutType === 'web' && !isLoading\">\n <div class=\"flex item-center key-logo\">\n <img class=\"\" [src]=\"objectData?.logoUrl\">\n </div>\n <div class=\"flex item-center key-logo
|
|
7879
|
+
template: "<div class=\"w-full\" *ngIf=\"layoutType === 'web' && !isLoading\">\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=\"{{mobileHeight ? 'mob-key-list' : '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>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'mobile'\">\n <div class=\"flex item-center key-logo \">\n <div class=\"mob-key-heading\" (click)=\"openAnnouncements()\"\n [style.backgroundColor]=\"objectData?.header?.background\"\n [style.color]=\"objectData?.header?.color\">\n <div class=\"flex key-button gap-3\">\n <div>\n <img [src]=\"objectData?.mobileIcon\">\n </div>\n <div>{{objectData?.title}}</div> \n <div><mat-icon class=\"key-mob-icon\">arrow_forward_ios</mat-icon></div>\n </div> \n </div>\n </div>\n</div>\n\n<div class=\"w-full\" *ngIf=\"layoutType === 'web' && isLoading\">\n <div class=\"flex item-center key-logo\">\n <img class=\"\" [src]=\"objectData?.logoUrl\">\n </div>\n <div class=\"flex item-center key-logo pt-1\">\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=\"{{mobileHeight ? 'mob-key-list' : 'key-list'}}\" > \n <div class=\"key-list-item mb-4\" \n *ngFor=\"let item of[0,1,2,3,4]; let i = index\"\n [style.borderColor]=\"objectData?.listItem?.border\"\n [style.backgroundColor]=\"objectData?.listItem?.background\">\n <div class=\"key-list-item-content un-expand\">\n <div class=\"py-1\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon '\" [width]=\"'350px'\" [height]=\"'24px'\">\n </sb-uic-skeleton-loader>\n </div>\n <div class=\"py-1\">\n <sb-uic-skeleton-loader [bindingClass]=\"'flex rounded objIcon '\" [width]=\"'350px'\" [height]=\"'24px'\">\n </sb-uic-skeleton-loader>\n </div>\n </div>\n </div>\n </div> \n </div>\n</div>\n",
|
|
7877
7880
|
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}.mob-key-list{height:calc(100vh - 252px);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}.mob-key-heading{font-family:Montserrat;font-size:16px;font-weight:600;line-height:19.5px;text-align:center;padding:7px 25px;border-radius:20px;animation:.9s infinite mobPaddingAnimation;cursor:pointer}.key-mob-icon{font-size:12px;width:12px;height:12px}.key-button{align-items:center;justify-content:center}.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 mobPaddingAnimation{0%,100%{padding:7px 25px}25%,75%{padding:7px 30px}50%{padding:7px 35px}}@keyframes paddingAnimation{0%,100%{padding:10px 50px}25%,75%{padding:10px 55px}50%{padding:10px 60px}}"]
|
|
7878
7881
|
}] }
|
|
7879
7882
|
];
|
|
@@ -8954,6 +8957,10 @@ var CardLandscapeComponent = /** @class */ (function () {
|
|
|
8954
8957
|
this.sourceLogos = instanceConfig.sources;
|
|
8955
8958
|
this.defaultSLogo = instanceConfig.logos.defaultSourceLogo || '';
|
|
8956
8959
|
}
|
|
8960
|
+
else {
|
|
8961
|
+
this.defaultThumbnail = '/assets/instances/eagle/app_logos/default.png';
|
|
8962
|
+
this.defaultSLogo = '/assets/instances/eagle/app_logos/KarmayogiBharat_Logo.svg';
|
|
8963
|
+
}
|
|
8957
8964
|
this.cbPlanInterval = setInterval((/**
|
|
8958
8965
|
* @return {?}
|
|
8959
8966
|
*/
|
|
@@ -9596,6 +9603,132 @@ if (false) {
|
|
|
9596
9603
|
CardWideV2Component.prototype.configSvc;
|
|
9597
9604
|
}
|
|
9598
9605
|
|
|
9606
|
+
/**
|
|
9607
|
+
* @fileoverview added by tsickle
|
|
9608
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
9609
|
+
*/
|
|
9610
|
+
var CardKarmaProgramsComponent = /** @class */ (function () {
|
|
9611
|
+
function CardKarmaProgramsComponent(events, translate, langtranslations, configSvc) {
|
|
9612
|
+
var _this = this;
|
|
9613
|
+
this.events = events;
|
|
9614
|
+
this.translate = translate;
|
|
9615
|
+
this.langtranslations = langtranslations;
|
|
9616
|
+
this.configSvc = configSvc;
|
|
9617
|
+
this.userData = new EventEmitter();
|
|
9618
|
+
this.widgetType = '';
|
|
9619
|
+
this.widgetSubType = '';
|
|
9620
|
+
this.langtranslations.languageSelectedObservable.subscribe((/**
|
|
9621
|
+
* @return {?}
|
|
9622
|
+
*/
|
|
9623
|
+
function () {
|
|
9624
|
+
if (localStorage.getItem('websiteLanguage')) {
|
|
9625
|
+
_this.translate.setDefaultLang('en');
|
|
9626
|
+
/** @type {?} */
|
|
9627
|
+
var lang = (/** @type {?} */ (localStorage.getItem('websiteLanguage')));
|
|
9628
|
+
_this.translate.use(lang);
|
|
9629
|
+
}
|
|
9630
|
+
}));
|
|
9631
|
+
}
|
|
9632
|
+
/**
|
|
9633
|
+
* @return {?}
|
|
9634
|
+
*/
|
|
9635
|
+
CardKarmaProgramsComponent.prototype.ngOnInit = /**
|
|
9636
|
+
* @return {?}
|
|
9637
|
+
*/
|
|
9638
|
+
function () {
|
|
9639
|
+
/** @type {?} */
|
|
9640
|
+
var instanceConfig = this.configSvc.instanceConfig;
|
|
9641
|
+
if (instanceConfig) {
|
|
9642
|
+
this.defaultThumbnail = instanceConfig.logos.defaultContent || '';
|
|
9643
|
+
this.sourceLogos = instanceConfig.sources;
|
|
9644
|
+
this.defaultSLogo = instanceConfig.logos.defaultSourceLogo || '';
|
|
9645
|
+
}
|
|
9646
|
+
else {
|
|
9647
|
+
this.defaultThumbnail = '/assets/instances/eagle/app_logos/default.png';
|
|
9648
|
+
this.defaultSLogo = '/assets/instances/eagle/app_logos/KarmayogiBharat_Logo.svg';
|
|
9649
|
+
}
|
|
9650
|
+
};
|
|
9651
|
+
/**
|
|
9652
|
+
* @return {?}
|
|
9653
|
+
*/
|
|
9654
|
+
CardKarmaProgramsComponent.prototype.raiseTelemetry = /**
|
|
9655
|
+
* @return {?}
|
|
9656
|
+
*/
|
|
9657
|
+
function () {
|
|
9658
|
+
// if(this.forPreview){
|
|
9659
|
+
// return
|
|
9660
|
+
// }
|
|
9661
|
+
this.events.raiseInteractTelemetry({
|
|
9662
|
+
type: 'click',
|
|
9663
|
+
subType: this.widgetType + "-" + this.widgetSubType,
|
|
9664
|
+
id: camelCase(this.widgetData.content.userId) + "-card",
|
|
9665
|
+
}, {
|
|
9666
|
+
id: this.widgetData.content.userId,
|
|
9667
|
+
// type: this.widgetData.user.primaryCategory,
|
|
9668
|
+
//context: this.widgetData.context,
|
|
9669
|
+
rollup: {},
|
|
9670
|
+
}, {
|
|
9671
|
+
pageIdExt: camelCase('user') + "-card",
|
|
9672
|
+
module: camelCase('user'),
|
|
9673
|
+
});
|
|
9674
|
+
};
|
|
9675
|
+
CardKarmaProgramsComponent.decorators = [
|
|
9676
|
+
{ type: Component, args: [{
|
|
9677
|
+
selector: 'sb-uic-card-karma-programs',
|
|
9678
|
+
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()\" \n [routerLink]=\"['/app/learn/karma-programs/asdfghj/123456/micro-sites']\" 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-start mat-subheading-2 title-text ws-mat-white-text\">\n {{ widgetData?.content?.name }}\n </div>\n </div>\n <div class=\"flex title-container px-2\">\n <div [id]=\"'m-c-'+ widgetData?.content?.identifier\"\n class=\"flex-1 text-start mat-subheading-2 title-text ws-mat-white-text\">\n {{ widgetData?.content?.programCount}} Programs\n </div>\n </div>\n </div>\n </mat-card-content>\n </ng-container>\n </a>\n </ng-container>\n </div>\n</mat-card>",
|
|
9679
|
+
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:208px;height:208px;max-height:208px;margin:0 8px;background:#1a4ca1!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:124px;max-height:124px;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:1;-webkit-box-orient:vertical;min-height:24px}"]
|
|
9680
|
+
}] }
|
|
9681
|
+
];
|
|
9682
|
+
/** @nocollapse */
|
|
9683
|
+
CardKarmaProgramsComponent.ctorParameters = function () { return [
|
|
9684
|
+
{ type: EventService },
|
|
9685
|
+
{ type: TranslateService },
|
|
9686
|
+
{ type: MultilingualTranslationsService$1 },
|
|
9687
|
+
{ type: ConfigurationsService$1 }
|
|
9688
|
+
]; };
|
|
9689
|
+
CardKarmaProgramsComponent.propDecorators = {
|
|
9690
|
+
widgetData: [{ type: Input }],
|
|
9691
|
+
userData: [{ type: Output }]
|
|
9692
|
+
};
|
|
9693
|
+
return CardKarmaProgramsComponent;
|
|
9694
|
+
}());
|
|
9695
|
+
if (false) {
|
|
9696
|
+
/** @type {?} */
|
|
9697
|
+
CardKarmaProgramsComponent.prototype.widgetData;
|
|
9698
|
+
/** @type {?} */
|
|
9699
|
+
CardKarmaProgramsComponent.prototype.userData;
|
|
9700
|
+
/** @type {?} */
|
|
9701
|
+
CardKarmaProgramsComponent.prototype.defaultThumbnail;
|
|
9702
|
+
/** @type {?} */
|
|
9703
|
+
CardKarmaProgramsComponent.prototype.sourceLogos;
|
|
9704
|
+
/** @type {?} */
|
|
9705
|
+
CardKarmaProgramsComponent.prototype.defaultSLogo;
|
|
9706
|
+
/** @type {?} */
|
|
9707
|
+
CardKarmaProgramsComponent.prototype.widgetType;
|
|
9708
|
+
/** @type {?} */
|
|
9709
|
+
CardKarmaProgramsComponent.prototype.widgetSubType;
|
|
9710
|
+
/**
|
|
9711
|
+
* @type {?}
|
|
9712
|
+
* @private
|
|
9713
|
+
*/
|
|
9714
|
+
CardKarmaProgramsComponent.prototype.events;
|
|
9715
|
+
/**
|
|
9716
|
+
* @type {?}
|
|
9717
|
+
* @private
|
|
9718
|
+
*/
|
|
9719
|
+
CardKarmaProgramsComponent.prototype.translate;
|
|
9720
|
+
/**
|
|
9721
|
+
* @type {?}
|
|
9722
|
+
* @private
|
|
9723
|
+
*/
|
|
9724
|
+
CardKarmaProgramsComponent.prototype.langtranslations;
|
|
9725
|
+
/**
|
|
9726
|
+
* @type {?}
|
|
9727
|
+
* @private
|
|
9728
|
+
*/
|
|
9729
|
+
CardKarmaProgramsComponent.prototype.configSvc;
|
|
9730
|
+
}
|
|
9731
|
+
|
|
9599
9732
|
/**
|
|
9600
9733
|
* @fileoverview added by tsickle
|
|
9601
9734
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
@@ -9612,7 +9745,8 @@ var CardsModule = /** @class */ (function () {
|
|
|
9612
9745
|
CardLandscapeComponent,
|
|
9613
9746
|
CardWideComponent,
|
|
9614
9747
|
CardMDOChannelComponent,
|
|
9615
|
-
CardWideV2Component
|
|
9748
|
+
CardWideV2Component,
|
|
9749
|
+
CardKarmaProgramsComponent
|
|
9616
9750
|
],
|
|
9617
9751
|
imports: [
|
|
9618
9752
|
CommonModule,
|
|
@@ -9636,7 +9770,8 @@ var CardsModule = /** @class */ (function () {
|
|
|
9636
9770
|
CardUserComponent,
|
|
9637
9771
|
CardWideComponent,
|
|
9638
9772
|
CardMDOChannelComponent,
|
|
9639
|
-
CardWideV2Component
|
|
9773
|
+
CardWideV2Component,
|
|
9774
|
+
CardKarmaProgramsComponent
|
|
9640
9775
|
],
|
|
9641
9776
|
},] }
|
|
9642
9777
|
];
|
|
@@ -11262,5 +11397,5 @@ var UserContentRatingLibModule = /** @class */ (function () {
|
|
|
11262
11397
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
11263
11398
|
*/
|
|
11264
11399
|
|
|
11265
|
-
export { AnnouncementsModule, CalenderModule, CardsModule, CommonMethodsService, CommonStripModule, CompetencyPassbookModule, ConsumptionComponent, ConsumptionModule, ConsumptionService, ContentStripWithTabsLibModule, DataPointsModule, HttpLoaderFactory, MyHammerConfig, ROOT_WIDGET_CONFIG, SlidersLibModule, UserContentRatingLibModule, WIDGET_REGISTERED_LIB_MODULES, WIDGET_REGISTRATION_LIB_CONFIG, WidgetContentService, ContentStripWithTabsLibComponent as ɵa, WidgetUserService as ɵb, CardWideV2Component as ɵba,
|
|
11400
|
+
export { AnnouncementsModule, CalenderModule, CardsModule, CommonMethodsService, CommonStripModule, CompetencyPassbookModule, ConsumptionComponent, ConsumptionModule, ConsumptionService, ContentStripWithTabsLibModule, DataPointsModule, HttpLoaderFactory, MyHammerConfig, ROOT_WIDGET_CONFIG, SlidersLibModule, UserContentRatingLibModule, WIDGET_REGISTERED_LIB_MODULES, WIDGET_REGISTRATION_LIB_CONFIG, WidgetContentService, ContentStripWithTabsLibComponent as ɵa, WidgetUserService as ɵb, CardWideV2Component as ɵba, CardKarmaProgramsComponent as ɵbb, PipePublicURLModule as ɵbc, PipePublicURL as ɵbd, DisplayContentTypeLibModule as ɵbe, DisplayContentTypeLibComponent as ɵbf, DefaultThumbnailModule as ɵbg, DefaultThumbnailDirective as ɵbh, PipeDurationTransformModule as ɵbi, PipeDurationTransformPipe as ɵbj, CompetencyPassbookComponent as ɵbk, CompetencyPassbookService as ɵbl, PillsModule as ɵbm, PillsComponent as ɵbn, UserContentRatingLibComponent as ɵbo, ScrollableItemDirective as ɵbp, RatingService as ɵbq, UserContentRatingLibService as ɵbr, AvatarPhotoLibModule as ɵbs, AvatarPhotoLibComponent as ɵbt, MyHammerConfig$1 as ɵbu, SlidersNgContentLibModule as ɵbv, SlidersNgContentLibComponent as ɵbw, ScrollableItemModule as ɵbx, MultilingualTranslationsService as ɵc, ConfigurationsService as ɵd, HorizontalScrollerV2Module as ɵe, HorizontalScrollerV2Component as ɵf, SlidersLibComponent as ɵg, NavigationModule as ɵh, NavigationDirective as ɵi, ImageResponsiveModule as ɵj, ImageResponsiveDirective as ɵk, DataPointsComponent as ɵl, InsiteDataService as ɵm, SkeletonLoaderLibModule as ɵn, SkeletonLoaderLibComponent as ɵo, CalenderComponent as ɵp, CalenderDayComponent as ɵq, CommonStripComponent as ɵr, AnnouncementsComponent as ɵs, CardResourceComponent as ɵt, CardsComponent as ɵu, CardPortraitComponent as ɵv, CardUserComponent as ɵw, CardLandscapeComponent as ɵx, CardWideComponent as ɵy, CardMDOChannelComponent as ɵz };
|
|
11266
11401
|
//# sourceMappingURL=sunbird-cb-consumption.js.map
|