@sunbird-cb/consumption 0.0.23 → 0.0.24
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 +179 -4
- 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/cards/card-karma-programs/card-karma-programs.component.js +43 -3
- package/esm2015/lib/_common/cards/cards.component.js +2 -2
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +112 -2
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/esm5/lib/_common/cards/card-karma-programs/card-karma-programs.component.js +50 -3
- package/esm5/lib/_common/cards/cards.component.js +2 -2
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +130 -2
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/fesm2015/sunbird-cb-consumption.js +154 -4
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +179 -4
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/cards/card-karma-programs/card-karma-programs.component.d.ts +4 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.d.ts +2 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.d.ts +1 -0
- package/package.json +1 -1
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -7,13 +7,17 @@ export declare class CardKarmaProgramsComponent implements OnInit {
|
|
|
7
7
|
private langtranslations;
|
|
8
8
|
private configSvc;
|
|
9
9
|
widgetData: NsContent.IContent;
|
|
10
|
+
randomColorApply: boolean;
|
|
10
11
|
userData: EventEmitter<any>;
|
|
11
12
|
defaultThumbnail: any;
|
|
12
13
|
sourceLogos: any;
|
|
13
14
|
defaultSLogo: any;
|
|
14
15
|
widgetType: any;
|
|
15
16
|
widgetSubType: any;
|
|
17
|
+
randomColors: any;
|
|
16
18
|
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService);
|
|
17
19
|
ngOnInit(): void;
|
|
20
|
+
setRandomColor(): void;
|
|
18
21
|
raiseTelemetry(): void;
|
|
22
|
+
readonly getRandomColors: any;
|
|
19
23
|
}
|
|
@@ -183,6 +183,8 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
183
183
|
postRequestMethod(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
|
|
184
184
|
postMethodFilters(filters: any): any;
|
|
185
185
|
redirectViewAll(stripData: any, path: string, queryParamsData: any): void;
|
|
186
|
+
fetchAllChannela(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
187
|
+
private transformAllContentsToWidgets;
|
|
186
188
|
raiseTelemetryInteratEvent(event: any): void;
|
|
187
189
|
}
|
|
188
190
|
export {};
|