@sunbird-cb/consumption 0.0.85 → 0.0.87

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 (37) hide show
  1. package/bundles/sunbird-cb-consumption.umd.js +1786 -62
  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/events/events.component.js +2 -2
  6. package/esm2015/lib/_common/events/events.module.js +3 -1
  7. package/esm2015/lib/_common/microsites/national-learning-week/national-learning/national-learning.component.js +2 -2
  8. package/esm2015/lib/_common/microsites/national-learning-week/national-learning.module.js +4 -2
  9. package/esm2015/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.component.js +1224 -0
  10. package/esm2015/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.model.js +231 -0
  11. package/esm2015/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.module.js +65 -0
  12. package/esm2015/lib/_common/user-progress/user-progress.component.js +7 -6
  13. package/esm2015/lib/consumption.module.js +2 -2
  14. package/esm2015/public-api.js +2 -1
  15. package/esm2015/sunbird-cb-consumption.js +24 -23
  16. package/esm5/lib/_common/events/events.component.js +2 -2
  17. package/esm5/lib/_common/events/events.module.js +3 -1
  18. package/esm5/lib/_common/microsites/national-learning-week/national-learning/national-learning.component.js +2 -2
  19. package/esm5/lib/_common/microsites/national-learning-week/national-learning.module.js +4 -2
  20. package/esm5/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.component.js +1450 -0
  21. package/esm5/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.model.js +231 -0
  22. package/esm5/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.module.js +69 -0
  23. package/esm5/lib/_common/user-progress/user-progress.component.js +7 -6
  24. package/esm5/lib/consumption.module.js +2 -2
  25. package/esm5/public-api.js +2 -1
  26. package/esm5/sunbird-cb-consumption.js +24 -23
  27. package/fesm2015/sunbird-cb-consumption.js +1537 -43
  28. package/fesm2015/sunbird-cb-consumption.js.map +1 -1
  29. package/fesm5/sunbird-cb-consumption.js +1765 -43
  30. package/fesm5/sunbird-cb-consumption.js.map +1 -1
  31. package/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.component.d.ts +131 -0
  32. package/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.model.d.ts +157 -0
  33. package/lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.module.d.ts +2 -0
  34. package/package.json +1 -1
  35. package/public-api.d.ts +1 -0
  36. package/sunbird-cb-consumption.d.ts +22 -21
  37. package/sunbird-cb-consumption.metadata.json +1 -1
@@ -0,0 +1,131 @@
1
+ import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
+ import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
3
+ import { NsContentStripWithFacets } from './content-strip-facet-filter.model';
4
+ import { WidgetContentService } from '../../../_services/widget-content.service';
5
+ import { MultilingualTranslationsService } from '../../../_services/multilingual-translations.service';
6
+ import { LoggerService, EventService, ConfigurationsService, UtilityService } from '@sunbird-cb/utils-v2';
7
+ import { Subscription } from 'rxjs';
8
+ import { WidgetUserService } from '../../../_services/widget-user.service';
9
+ import { MatTabChangeEvent } from '@angular/material';
10
+ import { TranslateService } from '@ngx-translate/core';
11
+ import { Router } from '@angular/router';
12
+ import { FormBuilder } from '@angular/forms';
13
+ interface IStripUnitContentData {
14
+ key: string;
15
+ canHideStrip: boolean;
16
+ mode?: string;
17
+ showStrip: boolean;
18
+ disableTranslate: boolean;
19
+ widgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
20
+ stripTitle: string;
21
+ hideViewMoreUrl?: boolean;
22
+ stripTitleLink?: {
23
+ link: {
24
+ queryParams: string;
25
+ };
26
+ icon: string;
27
+ queryParams: string;
28
+ };
29
+ sliderConfig?: {
30
+ showNavs: boolean;
31
+ showDots: boolean;
32
+ maxWidgets?: number;
33
+ cerificateCardMargin?: boolean;
34
+ };
35
+ stripConfig: any;
36
+ tabs?: NsContentStripWithFacets.IContentStripTab[] | undefined;
37
+ stripName?: string;
38
+ stripLogo?: string;
39
+ description?: string;
40
+ stripInfo?: NsContentStripWithFacets.IStripInfo;
41
+ noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
42
+ errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
43
+ showOnNoData: boolean;
44
+ showOnLoader: boolean;
45
+ showOnError: boolean;
46
+ loaderWidgets?: any;
47
+ stripBackground?: string;
48
+ secondaryHeading?: any;
49
+ viewMoreUrl: any;
50
+ request?: any;
51
+ }
52
+ export declare class ContentStripFacetFilterComponent extends WidgetBaseComponent implements OnInit, OnDestroy, NsWidgetResolver.IWidgetData<NsContentStripWithFacets.IContentStripMultiple> {
53
+ private contentSvc;
54
+ private loggerSvc;
55
+ private eventSvc;
56
+ private configSvc;
57
+ utilitySvc: UtilityService;
58
+ router: Router;
59
+ private userSvc;
60
+ private translate;
61
+ private langtranslations;
62
+ private _fb;
63
+ widgetData: NsContentStripWithFacets.IContentStripMultiple;
64
+ emptyResponse: EventEmitter<any>;
65
+ viewAllResponse: EventEmitter<any>;
66
+ telemtryResponse: EventEmitter<any>;
67
+ providerId: any;
68
+ emitViewAll: boolean;
69
+ channnelName: any;
70
+ id: string;
71
+ stripsResultDataMap: {
72
+ [key: string]: IStripUnitContentData;
73
+ };
74
+ stripsKeyOrder: string[];
75
+ showAccordionData: boolean;
76
+ showParentLoader: boolean;
77
+ showParentError: boolean;
78
+ showParentNoData: boolean;
79
+ errorDataCount: number;
80
+ noDataCount: number;
81
+ successDataCount: number;
82
+ contentAvailable: boolean;
83
+ baseUrl: string;
84
+ veifiedKarmayogi: boolean;
85
+ environment: any;
86
+ changeEventSubscription: Subscription | null;
87
+ defaultMaxWidgets: number;
88
+ enrollInterval: any;
89
+ todaysEvents: any;
90
+ enrollmentMapData: any;
91
+ facetForm: any;
92
+ constructor(environment: any, contentSvc: WidgetContentService, loggerSvc: LoggerService, eventSvc: EventService, configSvc: ConfigurationsService, utilitySvc: UtilityService, router: Router, userSvc: WidgetUserService, translate: TranslateService, langtranslations: MultilingualTranslationsService, _fb: FormBuilder);
93
+ ngOnDestroy(): void;
94
+ ngOnInit(): void;
95
+ private initData;
96
+ private fetchStripFromKey;
97
+ private fetchStripFromRequestData;
98
+ private transformSkeletonToWidgets;
99
+ private processStrip;
100
+ private checkParentStatus;
101
+ checkForEmptyWidget(strip: NsContentStripWithFacets.IContentStripUnit): boolean;
102
+ toggleInfo(data: IStripUnitContentData): void;
103
+ raiseTelemetry(stripData: any): void;
104
+ setHiddenForStrip(key: string): void;
105
+ getSelectedPillIndex(tabdata: any, tabIndex: any): any;
106
+ getdata(data: IStripUnitContentData): {};
107
+ tabClicked(tabEvent: MatTabChangeEvent, pillIndex: any, stripMap: IStripUnitContentData, stripKey: string): void;
108
+ pillClicked(event: any, stripMap: IStripUnitContentData, stripKey: any, pillIndex: any, tabIndex: any): void;
109
+ resetSelectedPill(pillData: any): void;
110
+ getTabDataByfilter(strip: NsContentStripWithFacets.IContentStripUnit, currentTab: NsContentStripWithFacets.IContentStripTab, calculateParentStatus: boolean): void;
111
+ private getIfStripHidden;
112
+ translateLabels(label: string, type: any): any;
113
+ redirectViewAll(stripData: any, path: string, queryParamsData: any): void;
114
+ identify(index: number, item: any): any;
115
+ tracker(index: number, item: any): any;
116
+ getContineuLearningLenth(data: IStripUnitContentData): number;
117
+ showAccordion(key: string): boolean;
118
+ checkCondition(wData: NsContentStripWithFacets.IContentStripMultiple, data: IStripUnitContentData): boolean;
119
+ checkVisible(data: IStripUnitContentData): boolean;
120
+ getSelectedIndex(stripsResultDataMap: any, key: any): number;
121
+ getLength(data: IStripUnitContentData): any;
122
+ isStripShowing(data: any): any;
123
+ readonly isMobile: boolean;
124
+ postRequestMethod(strip: NsContentStripWithFacets.IContentStripUnit, request: NsContentStripWithFacets.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
125
+ fetchFromSearch(strip: NsContentStripWithFacets.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
126
+ mapAllDataWithFacets(strip: any, content: any, facets: any, calculateParentStatus: any): void;
127
+ private transformContentsToWidgets;
128
+ getorgData(eventData: any, stripMap: any, tabIndex: any): void;
129
+ resetFilter(stripMap: any, tabIndex: any, pillIndex: any): void;
130
+ }
131
+ export {};
@@ -0,0 +1,157 @@
1
+ import { NsWidgetResolver } from '@sunbird-cb/resolver-v2';
2
+ import { NSSearch } from '../../../_models/widget-search.model';
3
+ import { NsContent } from '../../../_models/widget-content.model';
4
+ import { NsCardContent } from '../../../_models/card-content.model';
5
+ export declare namespace NsContentStripWithFacets {
6
+ interface IContentStripMultiple {
7
+ errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
8
+ loader?: boolean;
9
+ noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
10
+ strips: IContentStripUnit[];
11
+ isChannelStrip?: boolean;
12
+ }
13
+ interface IContentStripUnit {
14
+ stripRequestFor?: string;
15
+ onTabClickRequest?: boolean;
16
+ hideViewMoreUrl?: boolean;
17
+ type: string;
18
+ disableTranslate?: any;
19
+ key: string;
20
+ title: string;
21
+ customeClass?: string;
22
+ nodataMsg?: string;
23
+ stripTitleLink?: {
24
+ link: {
25
+ queryParams: string;
26
+ };
27
+ icon: string;
28
+ queryParams: string;
29
+ };
30
+ sliderConfig?: {
31
+ showNavs: boolean;
32
+ showDots: boolean;
33
+ maxWidgets?: number;
34
+ cerificateCardMargin?: boolean;
35
+ dotsAlign?: "right" | "left";
36
+ arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
37
+ responsive?: {
38
+ showNavs: boolean;
39
+ showDots: boolean;
40
+ dotsAlign?: "right" | "left";
41
+ arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
42
+ };
43
+ };
44
+ tabs?: NsContentStripWithFacets.IContentStripTab[] | undefined;
45
+ titleDescription?: string;
46
+ name?: string;
47
+ mode?: string | 'accordion';
48
+ info?: IStripInfo;
49
+ logo?: string;
50
+ preWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
51
+ postWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
52
+ stripConfig?: IStripConfig;
53
+ canHideStrip?: boolean;
54
+ showStrip: boolean;
55
+ filters?: any[];
56
+ selectAll?: boolean | null;
57
+ request?: {
58
+ requestBody: any;
59
+ playlistRead: any;
60
+ playlistSearch?: any;
61
+ ciosContent?: any;
62
+ search?: NSSearch.ISearchRequest;
63
+ searchV6?: NSSearch.ISearchV6Request;
64
+ topContent?: any;
65
+ featureContent?: any;
66
+ bookmarkRead?: any;
67
+ enrollmentList?: any;
68
+ cbpList?: any;
69
+ apiUrl: string;
70
+ searchRegionRecommendation?: NSSearch.ISearchOrgRegionRecommendationRequest;
71
+ api?: IStripRequestApi;
72
+ networkApi?: INetworkRequestApi;
73
+ ids?: string[];
74
+ recommendedCourses?: any;
75
+ masterCompetency?: any;
76
+ trendingSearch?: any;
77
+ };
78
+ searchV6Type?: 'KB' | 'Collections' | 'searchQuery' | null;
79
+ stripBackground?: string;
80
+ noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
81
+ loader?: boolean;
82
+ loaderWidgets?: any;
83
+ errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
84
+ refreshEvent?: Record<'eventType' | 'from', string>;
85
+ fetchLikes?: boolean;
86
+ secondaryHeading?: any;
87
+ viewMoreUrl?: {
88
+ queryParams?: any;
89
+ viewMoreText: string;
90
+ path: string;
91
+ };
92
+ data?: [];
93
+ }
94
+ interface IStripRequestApi {
95
+ path: string;
96
+ queryParams?: {
97
+ pageNo?: number;
98
+ pageSize?: number;
99
+ pageState?: string;
100
+ sourceFields?: string;
101
+ };
102
+ }
103
+ interface INetworkRequestApi {
104
+ path: string;
105
+ data?: any;
106
+ }
107
+ interface IStripInfo {
108
+ mode: 'below' | 'popup' | 'modal';
109
+ visibilityMode?: 'hidden' | 'visible';
110
+ icon: {
111
+ icon: string;
112
+ scale: number;
113
+ style?: any;
114
+ };
115
+ widget: NsWidgetResolver.IRenderConfigWithAnyData;
116
+ }
117
+ interface IStripConfig {
118
+ cardSubType: NsCardContent.TCardSubType;
119
+ postCardForSearch?: boolean;
120
+ intranetMode?: 'greyOut' | 'hide';
121
+ deletedMode?: 'greyOut' | 'hide';
122
+ contentTags?: IContentTags;
123
+ hideShowAll?: boolean;
124
+ }
125
+ interface IContentTags {
126
+ daysSpan?: number;
127
+ excludeContentType?: NsContent.EContentTypes[];
128
+ excludeMimeType?: string[];
129
+ tag: string;
130
+ criteriaField: string;
131
+ }
132
+ interface IContentStripResponseApi {
133
+ contents: NsContent.IContent[];
134
+ hasMore?: boolean;
135
+ pageState?: string;
136
+ totalHits?: number;
137
+ }
138
+ interface IContentStripTab {
139
+ pillsData?: any;
140
+ label: string;
141
+ value: string;
142
+ showTabDataCount: boolean;
143
+ requestRequired?: boolean;
144
+ computeDataOnClick?: boolean;
145
+ computeDataOnClickKey?: string;
146
+ request?: any;
147
+ widgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
148
+ maxWidgets?: number;
149
+ fetchTabStatus?: string;
150
+ nodataMsg?: string;
151
+ tabLoading?: boolean;
152
+ facets?: any;
153
+ }
154
+ }
155
+ export declare enum ApiRequestFor {
156
+ SEARCH = "search"
157
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ContentStripFacetFilterModule {
2
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunbird-cb/consumption",
3
- "version": "0.0.85",
3
+ "version": "0.0.87",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^8.2.14",
6
6
  "@angular/core": "^8.2.14",
package/public-api.d.ts CHANGED
@@ -3,6 +3,7 @@ export * from './lib/consumption.component';
3
3
  export * from './lib/consumption.module';
4
4
  export * from './lib/registration-lib.config';
5
5
  export * from './lib/consumption.config';
6
+ export * from './lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.module';
6
7
  export * from './lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.module';
7
8
  export * from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module';
8
9
  export * from './lib/_common/common-strip/common-strip.module';
@@ -24,40 +24,41 @@ export { CardsComponent as ɵbb } from './lib/_common/cards/cards.component';
24
24
  export { ProviderCardComponent as ɵbk } from './lib/_common/cards/provider-card/provider-card.component';
25
25
  export { CbpPlanComponent as ɵu } from './lib/_common/cbp-plan/cbp-plan.component';
26
26
  export { CommonStripComponent as ɵr } from './lib/_common/common-strip/common-strip.component';
27
- export { CompetencyPassbookMdoComponent as ɵcj } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.component';
28
- export { CompetencyPassbookMdoService as ɵck } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.service';
29
- export { CompetencyPassbookComponent as ɵcf } from './lib/_common/competency-passbook/competency-passbook.component';
30
- export { CompetencyPassbookService as ɵcg } from './lib/_common/competency-passbook/competency-passbook.service';
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
31
  export { ContentProgressComponent as ɵca } from './lib/_common/content-progress/content-progress.component';
32
32
  export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
33
33
  export { DataPointsComponent as ɵl } from './lib/_common/data-points/data-points.component';
34
34
  export { CertificateDialogComponent as ɵcb } from './lib/_common/dialog-components/certificate-dialog/certificate-dialog.component';
35
35
  export { DisplayContentTypeLibComponent as ɵbv } from './lib/_common/display-content-type-lib/display-content-type-lib.component';
36
36
  export { DisplayContentTypeLibModule as ɵbu } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
37
- export { EventCardComponent as ɵcu } from './lib/_common/events/event-card/event-card.component';
38
- export { EventsComponent as ɵct } from './lib/_common/events/events.component';
39
- export { HighlightsOfWeekComponent as ɵcw } from './lib/_common/highlights-of-week/highlights-of-week.component';
37
+ export { EventCardComponent as ɵcv } from './lib/_common/events/event-card/event-card.component';
38
+ export { EventsComponent as ɵcu } from './lib/_common/events/events.component';
39
+ export { HighlightsOfWeekComponent as ɵcx } from './lib/_common/highlights-of-week/highlights-of-week.component';
40
40
  export { HorizontalScrollerV2Component as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
41
41
  export { HorizontalScrollerV2Module as ɵe } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
42
- export { KeyHighlightsComponent as ɵcs } from './lib/_common/key-highlights/key-highlights.component';
43
- export { MdoLeaderboardComponent as ɵcv } from './lib/_common/mdo-leaderboard/mdo-leaderboard.component';
44
- export { MdoChannelV1Component as ɵco } from './lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component';
45
- export { MdoChannelV2Component as ɵcp } from './lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component';
46
- export { NationalLearningComponent as ɵcr } from './lib/_common/microsites/national-learning-week/national-learning/national-learning.component';
47
- export { ProvidersV2Component as ɵcq } from './lib/_common/microsites/providers/providers-v2/providers-v2.component';
48
- export { PillsComponent as ɵci } from './lib/_common/pills/pills.component';
49
- export { PillsModule as ɵch } from './lib/_common/pills/pills.module';
42
+ export { KeyHighlightsComponent as ɵct } from './lib/_common/key-highlights/key-highlights.component';
43
+ export { MdoLeaderboardComponent as ɵcw } from './lib/_common/mdo-leaderboard/mdo-leaderboard.component';
44
+ export { MdoChannelV1Component as ɵcp } from './lib/_common/microsites/mdo-channels/mdo-channel-v1/mdo-channel-v1.component';
45
+ export { MdoChannelV2Component as ɵcq } from './lib/_common/microsites/mdo-channels/mdo-channel-v2/mdo-channel-v2.component';
46
+ export { NationalLearningComponent as ɵcs } from './lib/_common/microsites/national-learning-week/national-learning/national-learning.component';
47
+ export { ProvidersV2Component as ɵcr } from './lib/_common/microsites/providers/providers-v2/providers-v2.component';
48
+ export { PillsComponent as ɵcj } from './lib/_common/pills/pills.component';
49
+ export { PillsModule as ɵci } from './lib/_common/pills/pills.module';
50
50
  export { SkeletonLoaderLibComponent as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
51
51
  export { SkeletonLoaderLibModule as ɵn } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
52
52
  export { SlidersNgContentLibComponent as ɵz } from './lib/_common/sliders-ng-content/sliders-ng-content.component';
53
53
  export { MyHammerConfig as ɵx, SlidersNgContentLibModule as ɵy } from './lib/_common/sliders-ng-content/sliders-ng-content.module';
54
54
  export { SlidersLibComponent as ɵg } from './lib/_common/sliders/sliders.component';
55
- export { SpeakersComponent as ɵcx } from './lib/_common/speakers/speakers.component';
56
- export { ContentStripWithTabsPillsComponent as ɵce } from './lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component';
55
+ export { SpeakersComponent as ɵcy } from './lib/_common/speakers/speakers.component';
56
+ export { ContentStripFacetFilterComponent as ɵce } from './lib/_common/strips/content-strip-facet-filter/content-strip-facet-filter.component';
57
+ export { ContentStripWithTabsPillsComponent as ɵcf } from './lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component';
57
58
  export { TopLearnersComponent as ɵt } from './lib/_common/top-learners/top-learners.component';
58
- export { UserContentRatingLibComponent as ɵcl } from './lib/_common/user-content-rating/user-content-rating-lib.component';
59
- export { UserContentRatingLibService as ɵcn } from './lib/_common/user-content-rating/user-content-rating-lib.service';
60
- export { UserProgressComponent as ɵcy } from './lib/_common/user-progress/user-progress.component';
59
+ export { UserContentRatingLibComponent as ɵcm } from './lib/_common/user-content-rating/user-content-rating-lib.component';
60
+ export { UserContentRatingLibService as ɵco } from './lib/_common/user-content-rating/user-content-rating-lib.service';
61
+ export { UserProgressComponent as ɵcz } from './lib/_common/user-progress/user-progress.component';
61
62
  export { DefaultThumbnailDirective as ɵbx } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
62
63
  export { DefaultThumbnailModule as ɵbw } from './lib/_directives/default-thumbnail/default-thumbnail.module';
63
64
  export { ImageResponsiveDirective as ɵk } from './lib/_directives/image-responsive/image-responsive.directive';
@@ -76,5 +77,5 @@ export { CertificateService as ɵbo } from './lib/_services/certificate.service'
76
77
  export { ConfigurationsService as ɵd } from './lib/_services/configurations.service';
77
78
  export { InsiteDataService as ɵm } from './lib/_services/insite-data.service';
78
79
  export { MultilingualTranslationsService as ɵc } from './lib/_services/multilingual-translations.service';
79
- export { RatingService as ɵcm } from './lib/_services/rating.service';
80
+ export { RatingService as ɵcn } from './lib/_services/rating.service';
80
81
  export { WidgetUserService as ɵb } from './lib/_services/widget-user.service';