@sunbird-cb/consumption 0.0.53 → 0.0.55
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 +2282 -933
- package/bundles/sunbird-cb-consumption.umd.js.map +1 -1
- package/bundles/sunbird-cb-consumption.umd.min.js +2 -2
- package/bundles/sunbird-cb-consumption.umd.min.js.map +1 -1
- package/esm2015/lib/_common/announcements/announcements.component.js +18 -3
- package/esm2015/lib/_common/cards/card-wide/card-wide.component.js +1 -1
- package/esm2015/lib/_common/cbp-plan/cbp-plan.component.js +166 -0
- package/esm2015/lib/_common/cbp-plan/cbp-plan.module.js +27 -0
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +209 -33
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +3 -1
- package/esm2015/lib/_common/data-points/data-points.component.js +24 -3
- package/esm2015/lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component.js +23 -0
- package/esm2015/lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component.js +255 -0
- package/esm2015/lib/_common/microsites/mdo-channels/mdo-channel.module.js +52 -0
- package/esm2015/lib/_common/microsites/providers/providers-v2/providers-v2.component.js +269 -0
- package/esm2015/lib/_common/microsites/providers/providers.module.js +51 -0
- package/esm2015/lib/_common/top-learners/top-learners.component.js +155 -0
- package/esm2015/lib/_common/top-learners/top-learners.module.js +21 -0
- package/esm2015/lib/_common/user-content-rating/user-content-rating-lib.component.js +3 -3
- package/esm2015/lib/_services/insite-data.service.js +9 -2
- package/esm2015/lib/consumption.module.js +7 -3
- package/esm2015/public-api.js +5 -1
- package/esm2015/sunbird-cb-consumption.js +52 -47
- package/esm5/lib/_common/announcements/announcements.component.js +21 -3
- package/esm5/lib/_common/cards/card-wide/card-wide.component.js +1 -1
- package/esm5/lib/_common/cbp-plan/cbp-plan.component.js +185 -0
- package/esm5/lib/_common/cbp-plan/cbp-plan.module.js +31 -0
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +204 -16
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +3 -1
- package/esm5/lib/_common/data-points/data-points.component.js +29 -3
- package/esm5/lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component.js +29 -0
- package/esm5/lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component.js +292 -0
- package/esm5/lib/_common/microsites/mdo-channels/mdo-channel.module.js +56 -0
- package/esm5/lib/_common/microsites/providers/providers-v2/providers-v2.component.js +312 -0
- package/esm5/lib/_common/microsites/providers/providers.module.js +55 -0
- package/esm5/lib/_common/top-learners/top-learners.component.js +172 -0
- package/esm5/lib/_common/top-learners/top-learners.module.js +25 -0
- package/esm5/lib/_common/user-content-rating/user-content-rating-lib.component.js +3 -3
- package/esm5/lib/_services/insite-data.service.js +12 -2
- package/esm5/lib/consumption.module.js +7 -3
- package/esm5/public-api.js +5 -1
- package/esm5/sunbird-cb-consumption.js +52 -47
- package/fesm2015/sunbird-cb-consumption.js +1520 -331
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +2226 -886
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/announcements/announcements.component.d.ts +3 -0
- package/lib/_common/cbp-plan/cbp-plan.component.d.ts +25 -0
- package/lib/_common/cbp-plan/cbp-plan.module.d.ts +2 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.d.ts +3 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.d.ts +1 -0
- package/lib/_common/data-points/data-points.component.d.ts +1 -0
- package/lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component.d.ts +5 -0
- package/lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component.d.ts +39 -0
- package/lib/_common/microsites/mdo-channels/mdo-channel.module.d.ts +2 -0
- package/lib/_common/microsites/providers/providers-v2/providers-v2.component.d.ts +36 -0
- package/lib/_common/microsites/providers/providers.module.d.ts +2 -0
- package/lib/_common/top-learners/top-learners.component.d.ts +18 -0
- package/lib/_common/top-learners/top-learners.module.d.ts +2 -0
- package/lib/_services/insite-data.service.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
- package/sunbird-cb-consumption.d.ts +50 -45
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -10,9 +10,12 @@ export declare class AnnouncementsComponent implements OnInit {
|
|
|
10
10
|
openDialog: EventEmitter<any>;
|
|
11
11
|
isLoading: boolean;
|
|
12
12
|
announcements: any;
|
|
13
|
+
expand: boolean;
|
|
14
|
+
expanded: boolean;
|
|
13
15
|
constructor(insightSvc: InsiteDataService);
|
|
14
16
|
ngOnInit(): void;
|
|
15
17
|
fetchData(): void;
|
|
16
18
|
viewMoreOrLess(item: any): void;
|
|
17
19
|
openAnnouncements(): void;
|
|
20
|
+
showMoreOrLess(): void;
|
|
18
21
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
|
+
import { ScrollableItemDirective } from '../../_directives/scrollable-item/scrollable-item.directive';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { MultilingualTranslationsService } from '../../_services/multilingual-translations.service';
|
|
5
|
+
export declare class CbpPlanComponent implements OnInit {
|
|
6
|
+
private translate;
|
|
7
|
+
private langtranslations;
|
|
8
|
+
objectData: any;
|
|
9
|
+
layoutType: any;
|
|
10
|
+
mobileHeight: boolean;
|
|
11
|
+
fetchDataFromApi: boolean;
|
|
12
|
+
channelId: any;
|
|
13
|
+
openDialog: EventEmitter<any>;
|
|
14
|
+
isLoading: boolean;
|
|
15
|
+
currentIndex: number;
|
|
16
|
+
styleData: any;
|
|
17
|
+
contentdata: any;
|
|
18
|
+
scrollableItems: QueryList<ScrollableItemDirective>;
|
|
19
|
+
constructor(translate: TranslateService, langtranslations: MultilingualTranslationsService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
getCurrentIndex(indexValue: any): void;
|
|
22
|
+
getFileName(item: any): any;
|
|
23
|
+
translateLabels(label: string, type: any): any;
|
|
24
|
+
downloadCBPPlan(item: any): void;
|
|
25
|
+
}
|
|
@@ -32,6 +32,7 @@ interface IStripUnitContentData {
|
|
|
32
32
|
cerificateCardMargin?: boolean;
|
|
33
33
|
};
|
|
34
34
|
stripConfig: any;
|
|
35
|
+
tabsType?: string;
|
|
35
36
|
tabs?: NsContentStripWithTabs.IContentStripTab[] | undefined;
|
|
36
37
|
stripName?: string;
|
|
37
38
|
stripLogo?: string;
|
|
@@ -183,6 +184,7 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
183
184
|
tracker(index: number, item: any): any;
|
|
184
185
|
fetchAllTopContent(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
185
186
|
fetchAllFeaturedContent(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
187
|
+
getTabDataByNewReqTopContent(strip: NsContentStripWithTabs.IContentStripUnit, tabIndex: number, currentTab: NsContentStripWithTabs.IContentStripTab, calculateParentStatus: boolean): Promise<void>;
|
|
186
188
|
raiseTelemetry(stripData: any): void;
|
|
187
189
|
postRequestMethod(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
|
|
188
190
|
getRequestMethod(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
|
|
@@ -193,6 +195,7 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
193
195
|
private transformAllContentsToWidgets;
|
|
194
196
|
fetchAllPlaylistSearch(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
195
197
|
fetchPlaylistReadData(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
198
|
+
getTabDataByNewReqPlaylistReadContent(strip: NsContentStripWithTabs.IContentStripUnit, tabIndex: number, currentTab: NsContentStripWithTabs.IContentStripTab, calculateParentStatus: boolean): Promise<void>;
|
|
196
199
|
fetchCiosContentData(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
197
200
|
}
|
|
198
201
|
export {};
|
|
@@ -37,6 +37,7 @@ export declare namespace NsContentStripWithTabs {
|
|
|
37
37
|
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
|
+
tabsType?: string;
|
|
40
41
|
tabs?: NsContentStripWithTabs.IContentStripTab[] | undefined;
|
|
41
42
|
titleDescription?: string;
|
|
42
43
|
name?: string;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatTabChangeEvent } from '@angular/material';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { EventService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
6
|
+
import { MultilingualTranslationsService } from '@sunbird-cb/utils-v2';
|
|
7
|
+
export declare class MdoChannelV2Component implements OnInit {
|
|
8
|
+
private route;
|
|
9
|
+
private router;
|
|
10
|
+
private eventSvc;
|
|
11
|
+
private translate;
|
|
12
|
+
private langtranslations;
|
|
13
|
+
sectionList: any;
|
|
14
|
+
channnelName: string;
|
|
15
|
+
orgId: string;
|
|
16
|
+
selectedIndex: number;
|
|
17
|
+
hideCompetencyBlock: boolean;
|
|
18
|
+
contentTabEmptyResponseCount: number;
|
|
19
|
+
titles: {
|
|
20
|
+
title: string;
|
|
21
|
+
url: string;
|
|
22
|
+
icon: string;
|
|
23
|
+
disableTranslate: boolean;
|
|
24
|
+
}[];
|
|
25
|
+
showModal: boolean;
|
|
26
|
+
descriptionMaxLength: number;
|
|
27
|
+
isTelemetryRaised: boolean;
|
|
28
|
+
constructor(route: ActivatedRoute, router: Router, eventSvc: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
tabClicked(tabEvent: MatTabChangeEvent): void;
|
|
31
|
+
hideContentStrip(event: any, contentStripData: any): void;
|
|
32
|
+
triggerOpenDialog(event: boolean): void;
|
|
33
|
+
onClose(): void;
|
|
34
|
+
raiseTelemetryInteratEvent(event: any): void;
|
|
35
|
+
raiseCompetencyTelemetry(name: string): void;
|
|
36
|
+
raiseTelemetry(name: string): void;
|
|
37
|
+
hideCompetency(event: any): void;
|
|
38
|
+
showAllContent(_stripData: any, contentStrip: any): void;
|
|
39
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { DatePipe } from '@angular/common';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { EventService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
export declare class ProvidersV2Component implements OnInit {
|
|
6
|
+
private route;
|
|
7
|
+
router: Router;
|
|
8
|
+
private datePipe;
|
|
9
|
+
private events;
|
|
10
|
+
sectionList: any;
|
|
11
|
+
providerName: string;
|
|
12
|
+
providerId: string;
|
|
13
|
+
navList: any;
|
|
14
|
+
hideCompetencyBlock: boolean;
|
|
15
|
+
currentMonthAndYear: any;
|
|
16
|
+
titles: {
|
|
17
|
+
title: string;
|
|
18
|
+
url: string;
|
|
19
|
+
icon: string;
|
|
20
|
+
disableTranslate: boolean;
|
|
21
|
+
}[];
|
|
22
|
+
descriptionMaxLength: number;
|
|
23
|
+
isTelemetryRaised: boolean;
|
|
24
|
+
constructor(route: ActivatedRoute, router: Router, datePipe: DatePipe, events: EventService);
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
getNavitems(): void;
|
|
27
|
+
scrollToSection(name: string): void;
|
|
28
|
+
hideCompetency(event: any, columnData: any): void;
|
|
29
|
+
hideContentStrip(event: any, contentStripData: any): void;
|
|
30
|
+
hideLearnerReview(event: any, learnerReview: any): void;
|
|
31
|
+
showAllContent(_stripData: any, contentStrip: any): void;
|
|
32
|
+
raiseTelemetryInteratEvent(event: any): void;
|
|
33
|
+
raiseCompetencyTelemetry(name: string): void;
|
|
34
|
+
raiseTelemetry(name: string): void;
|
|
35
|
+
raiseNavTelemetry(name: string): void;
|
|
36
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { InsiteDataService } from '../../_services/insite-data.service';
|
|
3
|
+
export declare class TopLearnersComponent implements OnInit {
|
|
4
|
+
insightSvc: InsiteDataService;
|
|
5
|
+
objectData: any;
|
|
6
|
+
channelId: any;
|
|
7
|
+
channnelName: any;
|
|
8
|
+
loading: boolean;
|
|
9
|
+
month: string;
|
|
10
|
+
results: any;
|
|
11
|
+
colors: any;
|
|
12
|
+
constructor(insightSvc: InsiteDataService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
getData(): void;
|
|
15
|
+
getRank(rank: number): string;
|
|
16
|
+
getColor(): string;
|
|
17
|
+
createInititals(name: string): string;
|
|
18
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,5 +15,9 @@ export * from './lib/_common/calender/calender.module';
|
|
|
15
15
|
export * from './lib/_common/user-content-rating/user-content-rating-lib.module';
|
|
16
16
|
export * from './lib/_common/announcements/announcements.module';
|
|
17
17
|
export * from './lib/_common/content-progress/content-progress.module';
|
|
18
|
+
export * from './lib/_common/microsites/mdo-channels/mdo-channel.module';
|
|
19
|
+
export * from './lib/_common/microsites/providers/providers.module';
|
|
18
20
|
export * from './lib/_services/widget-content.service';
|
|
19
21
|
export * from './lib/_services/common-methods.service';
|
|
22
|
+
export * from './lib/_common/top-learners/top-learners.module';
|
|
23
|
+
export * from './lib/_common/cbp-plan/cbp-plan.module';
|
|
@@ -3,66 +3,71 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
5
|
export { AnnouncementsComponent as ɵs } from './lib/_common/announcements/announcements.component';
|
|
6
|
-
export { AvatarPhotoLibComponent as
|
|
7
|
-
export { AvatarPhotoLibModule as
|
|
6
|
+
export { AvatarPhotoLibComponent as ɵce } from './lib/_common/avatar-photo-lib/avatar-photo-lib.component';
|
|
7
|
+
export { AvatarPhotoLibModule as ɵcd } from './lib/_common/avatar-photo-lib/avatar-photo-lib.module';
|
|
8
8
|
export { CalenderDayComponent as ɵq } from './lib/_common/calender/calender-day/calender-day.component';
|
|
9
9
|
export { CalenderComponent as ɵp } from './lib/_common/calender/calender.component';
|
|
10
|
-
export { CardAssessmentComponent as
|
|
11
|
-
export { CardKarmaProgramsV2Component as
|
|
12
|
-
export { CardKarmaProgramsComponent as
|
|
13
|
-
export { CardLandscapeComponent as
|
|
14
|
-
export { CardMdoChannelV1Component as
|
|
15
|
-
export { CardMDOChannelComponent as
|
|
16
|
-
export { CardPortraitExtComponent as
|
|
17
|
-
export { CardPortraitComponent as
|
|
18
|
-
export { CardProgressPortraitLibComponent as
|
|
19
|
-
export { CardResourceComponent as
|
|
20
|
-
export { CardUserComponent as
|
|
21
|
-
export { CardWideV2Component as
|
|
22
|
-
export { CardWideComponent as
|
|
23
|
-
export { CardsComponent as
|
|
24
|
-
export { ProviderCardComponent as
|
|
10
|
+
export { CardAssessmentComponent as ɵbm } from './lib/_common/cards/card-assessment/card-assessment/card-assessment.component';
|
|
11
|
+
export { CardKarmaProgramsV2Component as ɵbj } from './lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component';
|
|
12
|
+
export { CardKarmaProgramsComponent as ɵbi } from './lib/_common/cards/card-karma-programs/card-karma-programs.component';
|
|
13
|
+
export { CardLandscapeComponent as ɵbe } from './lib/_common/cards/card-landscape/card-landscape.component';
|
|
14
|
+
export { CardMdoChannelV1Component as ɵbp } from './lib/_common/cards/card-mdo-channel-v1/card-mdo-channel-v1.component';
|
|
15
|
+
export { CardMDOChannelComponent as ɵbg } from './lib/_common/cards/card-mdo-channel/card-mdo-channel.component';
|
|
16
|
+
export { CardPortraitExtComponent as ɵbl } from './lib/_common/cards/card-portrait-ext/card-portrait-ext.component';
|
|
17
|
+
export { CardPortraitComponent as ɵbc } from './lib/_common/cards/card-portrait/card-portrait.component';
|
|
18
|
+
export { CardProgressPortraitLibComponent as ɵbn } from './lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component';
|
|
19
|
+
export { CardResourceComponent as ɵba } from './lib/_common/cards/card-resource/card-resource.component';
|
|
20
|
+
export { CardUserComponent as ɵbd } from './lib/_common/cards/card-user/card-user.component';
|
|
21
|
+
export { CardWideV2Component as ɵbh } from './lib/_common/cards/card-wide-v2/card-wide-v2.component';
|
|
22
|
+
export { CardWideComponent as ɵbf } from './lib/_common/cards/card-wide/card-wide.component';
|
|
23
|
+
export { CardsComponent as ɵbb } from './lib/_common/cards/cards.component';
|
|
24
|
+
export { ProviderCardComponent as ɵbk } from './lib/_common/cards/provider-card/provider-card.component';
|
|
25
|
+
export { CbpPlanComponent as ɵu } from './lib/_common/cbp-plan/cbp-plan.component';
|
|
25
26
|
export { CommonStripComponent as ɵr } from './lib/_common/common-strip/common-strip.component';
|
|
26
|
-
export { CompetencyPassbookMdoComponent as
|
|
27
|
-
export { CompetencyPassbookMdoService as
|
|
28
|
-
export { CompetencyPassbookComponent as
|
|
29
|
-
export { CompetencyPassbookService as
|
|
30
|
-
export { ContentProgressComponent as
|
|
27
|
+
export { CompetencyPassbookMdoComponent as ɵck } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.component';
|
|
28
|
+
export { CompetencyPassbookMdoService as ɵcl } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.service';
|
|
29
|
+
export { CompetencyPassbookComponent as ɵcg } from './lib/_common/competency-passbook/competency-passbook.component';
|
|
30
|
+
export { CompetencyPassbookService as ɵch } from './lib/_common/competency-passbook/competency-passbook.service';
|
|
31
|
+
export { ContentProgressComponent as ɵca } from './lib/_common/content-progress/content-progress.component';
|
|
31
32
|
export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
|
|
32
33
|
export { DataPointsComponent as ɵl } from './lib/_common/data-points/data-points.component';
|
|
33
|
-
export { CertificateDialogComponent as
|
|
34
|
-
export { DialogComponentsModule as
|
|
35
|
-
export { DisplayContentTypeLibComponent as
|
|
36
|
-
export { DisplayContentTypeLibModule as
|
|
34
|
+
export { CertificateDialogComponent as ɵcc } from './lib/_common/dialog-components/certificate-dialog/certificate-dialog.component';
|
|
35
|
+
export { DialogComponentsModule as ɵcb } from './lib/_common/dialog-components/dialog-components.module';
|
|
36
|
+
export { DisplayContentTypeLibComponent as ɵbv } from './lib/_common/display-content-type-lib/display-content-type-lib.component';
|
|
37
|
+
export { DisplayContentTypeLibModule as ɵbu } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
|
|
37
38
|
export { HorizontalScrollerV2Component as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
|
|
38
39
|
export { HorizontalScrollerV2Module as ɵe } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
40
|
+
export { MdoChannelV1Component as ɵcp } from './lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component';
|
|
41
|
+
export { MdoChannelV2Component as ɵcq } from './lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component';
|
|
42
|
+
export { ProvidersV2Component as ɵcr } from './lib/_common/microsites/providers/providers-v2/providers-v2.component';
|
|
43
|
+
export { PillsComponent as ɵcj } from './lib/_common/pills/pills.component';
|
|
44
|
+
export { PillsModule as ɵci } from './lib/_common/pills/pills.module';
|
|
41
45
|
export { SkeletonLoaderLibComponent as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
|
|
42
46
|
export { SkeletonLoaderLibModule as ɵn } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
|
|
43
|
-
export { SlidersNgContentLibComponent as
|
|
44
|
-
export { MyHammerConfig as
|
|
47
|
+
export { SlidersNgContentLibComponent as ɵz } from './lib/_common/sliders-ng-content/sliders-ng-content.component';
|
|
48
|
+
export { MyHammerConfig as ɵx, SlidersNgContentLibModule as ɵy } from './lib/_common/sliders-ng-content/sliders-ng-content.module';
|
|
45
49
|
export { SlidersLibComponent as ɵg } from './lib/_common/sliders/sliders.component';
|
|
46
|
-
export { ContentStripWithTabsPillsComponent as
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
49
|
-
export {
|
|
50
|
-
export {
|
|
50
|
+
export { ContentStripWithTabsPillsComponent as ɵcf } from './lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component';
|
|
51
|
+
export { TopLearnersComponent as ɵt } from './lib/_common/top-learners/top-learners.component';
|
|
52
|
+
export { UserContentRatingLibComponent as ɵcm } from './lib/_common/user-content-rating/user-content-rating-lib.component';
|
|
53
|
+
export { UserContentRatingLibService as ɵco } from './lib/_common/user-content-rating/user-content-rating-lib.service';
|
|
54
|
+
export { DefaultThumbnailDirective as ɵbx } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
|
|
55
|
+
export { DefaultThumbnailModule as ɵbw } from './lib/_directives/default-thumbnail/default-thumbnail.module';
|
|
51
56
|
export { ImageResponsiveDirective as ɵk } from './lib/_directives/image-responsive/image-responsive.directive';
|
|
52
57
|
export { ImageResponsiveModule as ɵj } from './lib/_directives/image-responsive/image-responsive.module';
|
|
53
58
|
export { NavigationDirective as ɵi } from './lib/_directives/navigation/navigation.directive';
|
|
54
59
|
export { NavigationModule as ɵh } from './lib/_directives/navigation/navigation.module';
|
|
55
|
-
export { ScrollableItemDirective as
|
|
56
|
-
export { ScrollableItemModule as
|
|
57
|
-
export { ObjectToArrayPipe as
|
|
58
|
-
export { ObjectToArrayPipeModule as
|
|
59
|
-
export { PipeDurationTransformModule as
|
|
60
|
-
export { PipeDurationTransformPipe as
|
|
61
|
-
export { PipePublicURLModule as
|
|
62
|
-
export { PipePublicURL as
|
|
63
|
-
export { CertificateService as
|
|
60
|
+
export { ScrollableItemDirective as ɵv } from './lib/_directives/scrollable-item/scrollable-item.directive';
|
|
61
|
+
export { ScrollableItemModule as ɵw } from './lib/_directives/scrollable-item/scrollable-item.module';
|
|
62
|
+
export { ObjectToArrayPipe as ɵbt } from './lib/_pipes/object-to-array/object-to-array.pipe';
|
|
63
|
+
export { ObjectToArrayPipeModule as ɵbs } from './lib/_pipes/object-to-array/object-to-array.pipe.module';
|
|
64
|
+
export { PipeDurationTransformModule as ɵby } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.module';
|
|
65
|
+
export { PipeDurationTransformPipe as ɵbz } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe';
|
|
66
|
+
export { PipePublicURLModule as ɵbq } from './lib/_pipes/pipe-public-URL/pipe-public-URL.module';
|
|
67
|
+
export { PipePublicURL as ɵbr } from './lib/_pipes/pipe-public-URL/pipe-public-URL.pipe';
|
|
68
|
+
export { CertificateService as ɵbo } from './lib/_services/certificate.service';
|
|
64
69
|
export { ConfigurationsService as ɵd } from './lib/_services/configurations.service';
|
|
65
70
|
export { InsiteDataService as ɵm } from './lib/_services/insite-data.service';
|
|
66
71
|
export { MultilingualTranslationsService as ɵc } from './lib/_services/multilingual-translations.service';
|
|
67
|
-
export { RatingService as
|
|
72
|
+
export { RatingService as ɵcn } from './lib/_services/rating.service';
|
|
68
73
|
export { WidgetUserService as ɵb } from './lib/_services/widget-user.service';
|