@sunbird-cb/consumption 0.0.45 → 0.0.47
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 +2004 -47
- 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-assessment/card-assessment/card-assessment.component.js +34 -24
- package/esm2015/lib/_common/cards/card-landscape/card-landscape.component.js +2 -2
- package/esm2015/lib/_common/cards/card-portrait/card-portrait.component.js +2 -2
- package/esm2015/lib/_common/cards/card-portrait-ext/card-portrait-ext.component.js +2 -2
- package/esm2015/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.js +2 -2
- package/esm2015/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component.js +1613 -0
- package/esm2015/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.model.js +218 -0
- package/esm2015/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.module.js +69 -0
- package/esm2015/public-api.js +2 -1
- package/esm2015/sunbird-cb-consumption.js +16 -15
- package/esm5/lib/_common/cards/card-assessment/card-assessment/card-assessment.component.js +46 -30
- package/esm5/lib/_common/cards/card-landscape/card-landscape.component.js +2 -2
- package/esm5/lib/_common/cards/card-portrait/card-portrait.component.js +2 -2
- package/esm5/lib/_common/cards/card-portrait-ext/card-portrait-ext.component.js +2 -2
- package/esm5/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.js +2 -2
- package/esm5/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component.js +1892 -0
- package/esm5/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.model.js +218 -0
- package/esm5/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.module.js +73 -0
- package/esm5/public-api.js +2 -1
- package/esm5/sunbird-cb-consumption.js +16 -15
- package/fesm2015/sunbird-cb-consumption.js +1695 -28
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +1988 -34
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/cards/card-assessment/card-assessment/card-assessment.component.d.ts +4 -3
- package/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component.d.ts +161 -0
- package/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.model.d.ts +149 -0
- package/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.module.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/sunbird-cb-consumption.d.ts +14 -13
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -15,13 +15,14 @@ export declare class CardAssessmentComponent implements OnInit {
|
|
|
15
15
|
defaultSLogo: any;
|
|
16
16
|
daysRemaining: number;
|
|
17
17
|
startDate: any;
|
|
18
|
+
endDate: any;
|
|
18
19
|
daysPending: boolean;
|
|
20
|
+
daysFinish: boolean;
|
|
19
21
|
private intervalId;
|
|
20
22
|
constructor(configSvc: ConfigurationsService, contSvc: WidgetContentService);
|
|
21
23
|
ngOnInit(): void;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
updateCountdown(targetDate: any): void;
|
|
24
|
+
startCountdown(data: any): void;
|
|
25
|
+
updateCountdown(startDate: any, endDate: any): void;
|
|
25
26
|
clearTimer(): void;
|
|
26
27
|
ngOnDestroy(): void;
|
|
27
28
|
getRedirectUrlData(contentData: any): void;
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { NsContentStripWithTabsAndPills } from './content-strip-with-tabs-pills.model';
|
|
4
|
+
import { WidgetContentService } from '../../../_services/widget-content.service';
|
|
5
|
+
import { NsContent } from '../../../_models/widget-content.model';
|
|
6
|
+
import { MultilingualTranslationsService } from '../../../_services/multilingual-translations.service';
|
|
7
|
+
import { LoggerService, EventService, ConfigurationsService, UtilityService } from '@sunbird-cb/utils-v2';
|
|
8
|
+
import { Subscription } from 'rxjs';
|
|
9
|
+
import { WidgetUserService } from '../../../_services/widget-user.service';
|
|
10
|
+
import { MatTabChangeEvent } from '@angular/material';
|
|
11
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
12
|
+
import { Router } from '@angular/router';
|
|
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
|
+
stripTitleLink?: {
|
|
22
|
+
link: {
|
|
23
|
+
queryParams: string;
|
|
24
|
+
};
|
|
25
|
+
icon: string;
|
|
26
|
+
queryParams: string;
|
|
27
|
+
};
|
|
28
|
+
sliderConfig?: {
|
|
29
|
+
showNavs: boolean;
|
|
30
|
+
showDots: boolean;
|
|
31
|
+
maxWidgets?: number;
|
|
32
|
+
cerificateCardMargin?: boolean;
|
|
33
|
+
};
|
|
34
|
+
stripConfig: any;
|
|
35
|
+
tabs?: NsContentStripWithTabsAndPills.IContentStripTab[] | undefined;
|
|
36
|
+
stripName?: string;
|
|
37
|
+
stripLogo?: string;
|
|
38
|
+
description?: string;
|
|
39
|
+
stripInfo?: NsContentStripWithTabsAndPills.IStripInfo;
|
|
40
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
41
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
42
|
+
showOnNoData: boolean;
|
|
43
|
+
showOnLoader: boolean;
|
|
44
|
+
showOnError: boolean;
|
|
45
|
+
loaderWidgets?: any;
|
|
46
|
+
stripBackground?: string;
|
|
47
|
+
secondaryHeading?: any;
|
|
48
|
+
viewMoreUrl: any;
|
|
49
|
+
request?: any;
|
|
50
|
+
}
|
|
51
|
+
export declare class ContentStripWithTabsPillsComponent extends WidgetBaseComponent implements OnInit, OnDestroy, NsWidgetResolver.IWidgetData<NsContentStripWithTabsAndPills.IContentStripMultiple> {
|
|
52
|
+
private contentSvc;
|
|
53
|
+
private loggerSvc;
|
|
54
|
+
private eventSvc;
|
|
55
|
+
private configSvc;
|
|
56
|
+
utilitySvc: UtilityService;
|
|
57
|
+
router: Router;
|
|
58
|
+
private userSvc;
|
|
59
|
+
private translate;
|
|
60
|
+
private langtranslations;
|
|
61
|
+
widgetData: NsContentStripWithTabsAndPills.IContentStripMultiple;
|
|
62
|
+
emptyResponse: EventEmitter<any>;
|
|
63
|
+
viewAllResponse: EventEmitter<any>;
|
|
64
|
+
telemtryResponse: EventEmitter<any>;
|
|
65
|
+
providerId: any;
|
|
66
|
+
emitViewAll: boolean;
|
|
67
|
+
channnelName: any;
|
|
68
|
+
id: string;
|
|
69
|
+
stripsResultDataMap: {
|
|
70
|
+
[key: string]: IStripUnitContentData;
|
|
71
|
+
};
|
|
72
|
+
stripsKeyOrder: string[];
|
|
73
|
+
showAccordionData: boolean;
|
|
74
|
+
showParentLoader: boolean;
|
|
75
|
+
showParentError: boolean;
|
|
76
|
+
showParentNoData: boolean;
|
|
77
|
+
errorDataCount: number;
|
|
78
|
+
noDataCount: number;
|
|
79
|
+
successDataCount: number;
|
|
80
|
+
contentAvailable: boolean;
|
|
81
|
+
baseUrl: string;
|
|
82
|
+
veifiedKarmayogi: boolean;
|
|
83
|
+
environment: any;
|
|
84
|
+
changeEventSubscription: Subscription | null;
|
|
85
|
+
defaultMaxWidgets: number;
|
|
86
|
+
enrollInterval: any;
|
|
87
|
+
todaysEvents: any;
|
|
88
|
+
enrollmentMapData: any;
|
|
89
|
+
constructor(environment: any, contentSvc: WidgetContentService, loggerSvc: LoggerService, eventSvc: EventService, configSvc: ConfigurationsService, utilitySvc: UtilityService, router: Router, userSvc: WidgetUserService, translate: TranslateService, langtranslations: MultilingualTranslationsService);
|
|
90
|
+
ngOnInit(): void;
|
|
91
|
+
ngOnDestroy(): void;
|
|
92
|
+
showAccordion(key: string): boolean;
|
|
93
|
+
setHiddenForStrip(key: string): void;
|
|
94
|
+
private getIfStripHidden;
|
|
95
|
+
private initData;
|
|
96
|
+
private fetchStripFromKey;
|
|
97
|
+
isStripShowing(data: any): any;
|
|
98
|
+
readonly isMobile: boolean;
|
|
99
|
+
getdata(data: IStripUnitContentData): {};
|
|
100
|
+
checkCondition(wData: NsContentStripWithTabsAndPills.IContentStripMultiple, data: IStripUnitContentData): boolean;
|
|
101
|
+
checkVisible(data: IStripUnitContentData): boolean;
|
|
102
|
+
getContineuLearningLenth(data: IStripUnitContentData): number;
|
|
103
|
+
getLength(data: IStripUnitContentData): any;
|
|
104
|
+
private getFiltersFromArray;
|
|
105
|
+
private transformSearchV6FiltersV2;
|
|
106
|
+
checkForDateFilters(filters: any): any;
|
|
107
|
+
private fetchStripFromRequestData;
|
|
108
|
+
toggleInfo(data: IStripUnitContentData): void;
|
|
109
|
+
private transformContentsToWidgets;
|
|
110
|
+
private transformEventsToWidgets;
|
|
111
|
+
private transformSkeletonToWidgets;
|
|
112
|
+
private processStrip;
|
|
113
|
+
private checkParentStatus;
|
|
114
|
+
checkForEmptyWidget(strip: NsContentStripWithTabsAndPills.IContentStripUnit): boolean;
|
|
115
|
+
getTabDataByfilter(strip: NsContentStripWithTabsAndPills.IContentStripUnit, currentTab: NsContentStripWithTabsAndPills.IContentStripTab, calculateParentStatus: boolean): void;
|
|
116
|
+
getSelectedIndex(stripsResultDataMap: any, key: any): number;
|
|
117
|
+
translateLabels(label: string, type: any): any;
|
|
118
|
+
identify(index: number, item: any): any;
|
|
119
|
+
tracker(index: number, item: any): any;
|
|
120
|
+
raiseTelemetry(stripData: any): void;
|
|
121
|
+
redirectViewAll(stripData: any, path: string, queryParamsData: any): void;
|
|
122
|
+
fetchForYouData(strip: NsContentStripWithTabsAndPills.IContentStripUnit, calculateParentStatus?: boolean): void;
|
|
123
|
+
fetchFromSearchV6(strip: NsContentStripWithTabsAndPills.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
124
|
+
getTabDataByNewReqTrending(strip: NsContentStripWithTabsAndPills.IContentStripUnit, tabIndex: number, pillIndex: number, currentTab: NsContentStripWithTabsAndPills.IContentStripTab, calculateParentStatus: boolean): Promise<void>;
|
|
125
|
+
getTabDataByNewReqSearchV6(strip: NsContentStripWithTabsAndPills.IContentStripUnit, tabIndex: number, pillIndex: number, currentTab: NsContentStripWithTabsAndPills.IContentStripTab, calculateParentStatus: boolean): Promise<void>;
|
|
126
|
+
trendingSearchRequest(strip: NsContentStripWithTabsAndPills.IContentStripUnit, request: NsContentStripWithTabsAndPills.IContentStripUnit['request'], calculateParentStatus: boolean): Promise<any>;
|
|
127
|
+
tabClicked(tabEvent: MatTabChangeEvent, pillIndex: any, stripMap: IStripUnitContentData, stripKey: string): void;
|
|
128
|
+
pillClicked(event: any, stripMap: IStripUnitContentData, stripKey: any, pillIndex: any, tabIndex: any): void;
|
|
129
|
+
searchV6Request(strip: NsContentStripWithTabsAndPills.IContentStripUnit, request: NsContentStripWithTabsAndPills.IContentStripUnit['request'], calculateParentStatus: boolean): Promise<any>;
|
|
130
|
+
getSelectedPillIndex(tabdata: any, tabIndex: any): any;
|
|
131
|
+
fetchAllCbpPlans(strip: any, calculateParentStatus?: boolean): Promise<void>;
|
|
132
|
+
splitCbpTabsData(contentNew: NsContent.IContent[], strip: NsContentStripWithTabsAndPills.IContentStripUnit): NsContentStripWithTabsAndPills.IContentStripTab[];
|
|
133
|
+
getTabsList(array: NsContent.IContent[], strip: NsContentStripWithTabsAndPills.IContentStripUnit): {
|
|
134
|
+
value: string;
|
|
135
|
+
widgets: ({
|
|
136
|
+
widgetType: string;
|
|
137
|
+
widgetSubType: string;
|
|
138
|
+
widgetHostClass: string;
|
|
139
|
+
widgetData: {
|
|
140
|
+
cardSubType: "" | "standard" | "minimal" | "space-saving" | "card-user-details" | "basic-info" | "basic-details" | "card-description-back" | "network-card" | "user-card";
|
|
141
|
+
cardCustomeClass: string;
|
|
142
|
+
context: {
|
|
143
|
+
pageSection: string;
|
|
144
|
+
position: number;
|
|
145
|
+
};
|
|
146
|
+
intranetMode: "" | "hide" | "greyOut";
|
|
147
|
+
deletedMode: "" | "hide" | "greyOut";
|
|
148
|
+
contentTags: NsContentStripWithTabsAndPills.IContentTags;
|
|
149
|
+
batch: any;
|
|
150
|
+
content: NsContent.IContent;
|
|
151
|
+
};
|
|
152
|
+
} | {
|
|
153
|
+
widgetType: string;
|
|
154
|
+
widgetSubType: string;
|
|
155
|
+
widgetHostClass: string;
|
|
156
|
+
widgetData: {};
|
|
157
|
+
})[];
|
|
158
|
+
}[];
|
|
159
|
+
resetSelectedPill(pillData: any): void;
|
|
160
|
+
}
|
|
161
|
+
export {};
|
package/lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.model.d.ts
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
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 NsContentStripWithTabsAndPills {
|
|
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
|
+
type: string;
|
|
15
|
+
disableTranslate?: any;
|
|
16
|
+
key: string;
|
|
17
|
+
title: string;
|
|
18
|
+
customeClass?: string;
|
|
19
|
+
nodataMsg?: string;
|
|
20
|
+
stripTitleLink?: {
|
|
21
|
+
link: {
|
|
22
|
+
queryParams: string;
|
|
23
|
+
};
|
|
24
|
+
icon: string;
|
|
25
|
+
queryParams: string;
|
|
26
|
+
};
|
|
27
|
+
sliderConfig?: {
|
|
28
|
+
showNavs: boolean;
|
|
29
|
+
showDots: boolean;
|
|
30
|
+
maxWidgets?: number;
|
|
31
|
+
cerificateCardMargin?: boolean;
|
|
32
|
+
dotsAlign?: "right" | "left";
|
|
33
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
34
|
+
responsive?: {
|
|
35
|
+
showNavs: boolean;
|
|
36
|
+
showDots: boolean;
|
|
37
|
+
dotsAlign?: "right" | "left";
|
|
38
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
tabs?: NsContentStripWithTabsAndPills.IContentStripTab[] | undefined;
|
|
42
|
+
titleDescription?: string;
|
|
43
|
+
name?: string;
|
|
44
|
+
mode?: string | 'accordion';
|
|
45
|
+
info?: IStripInfo;
|
|
46
|
+
logo?: string;
|
|
47
|
+
preWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
48
|
+
postWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
49
|
+
stripConfig?: IStripConfig;
|
|
50
|
+
canHideStrip?: boolean;
|
|
51
|
+
showStrip: boolean;
|
|
52
|
+
filters?: any[];
|
|
53
|
+
selectAll?: boolean | null;
|
|
54
|
+
request?: {
|
|
55
|
+
playlistRead: any;
|
|
56
|
+
playlistSearch?: any;
|
|
57
|
+
ciosContent?: any;
|
|
58
|
+
search?: NSSearch.ISearchRequest;
|
|
59
|
+
searchV6?: NSSearch.ISearchV6Request;
|
|
60
|
+
topContent?: any;
|
|
61
|
+
featureContent?: any;
|
|
62
|
+
bookmarkRead?: any;
|
|
63
|
+
enrollmentList?: any;
|
|
64
|
+
cbpList?: any;
|
|
65
|
+
apiUrl: string;
|
|
66
|
+
searchRegionRecommendation?: NSSearch.ISearchOrgRegionRecommendationRequest;
|
|
67
|
+
api?: IStripRequestApi;
|
|
68
|
+
networkApi?: INetworkRequestApi;
|
|
69
|
+
ids?: string[];
|
|
70
|
+
recommendedCourses?: any;
|
|
71
|
+
masterCompetency?: any;
|
|
72
|
+
trendingSearch?: any;
|
|
73
|
+
};
|
|
74
|
+
searchV6Type?: 'KB' | 'Collections' | 'searchQuery' | null;
|
|
75
|
+
stripBackground?: string;
|
|
76
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
77
|
+
loader?: boolean;
|
|
78
|
+
loaderWidgets?: any;
|
|
79
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
80
|
+
refreshEvent?: Record<'eventType' | 'from', string>;
|
|
81
|
+
fetchLikes?: boolean;
|
|
82
|
+
secondaryHeading?: any;
|
|
83
|
+
viewMoreUrl?: {
|
|
84
|
+
queryParams?: any;
|
|
85
|
+
viewMoreText: string;
|
|
86
|
+
path: string;
|
|
87
|
+
};
|
|
88
|
+
data?: [];
|
|
89
|
+
}
|
|
90
|
+
interface IStripRequestApi {
|
|
91
|
+
path: string;
|
|
92
|
+
queryParams?: {
|
|
93
|
+
pageNo?: number;
|
|
94
|
+
pageSize?: number;
|
|
95
|
+
pageState?: string;
|
|
96
|
+
sourceFields?: string;
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
interface INetworkRequestApi {
|
|
100
|
+
path: string;
|
|
101
|
+
data?: any;
|
|
102
|
+
}
|
|
103
|
+
interface IStripInfo {
|
|
104
|
+
mode: 'below' | 'popup' | 'modal';
|
|
105
|
+
visibilityMode?: 'hidden' | 'visible';
|
|
106
|
+
icon: {
|
|
107
|
+
icon: string;
|
|
108
|
+
scale: number;
|
|
109
|
+
style?: any;
|
|
110
|
+
};
|
|
111
|
+
widget: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
112
|
+
}
|
|
113
|
+
interface IStripConfig {
|
|
114
|
+
cardSubType: NsCardContent.TCardSubType;
|
|
115
|
+
postCardForSearch?: boolean;
|
|
116
|
+
intranetMode?: 'greyOut' | 'hide';
|
|
117
|
+
deletedMode?: 'greyOut' | 'hide';
|
|
118
|
+
contentTags?: IContentTags;
|
|
119
|
+
hideShowAll?: boolean;
|
|
120
|
+
}
|
|
121
|
+
interface IContentTags {
|
|
122
|
+
daysSpan?: number;
|
|
123
|
+
excludeContentType?: NsContent.EContentTypes[];
|
|
124
|
+
excludeMimeType?: string[];
|
|
125
|
+
tag: string;
|
|
126
|
+
criteriaField: string;
|
|
127
|
+
}
|
|
128
|
+
interface IContentStripResponseApi {
|
|
129
|
+
contents: NsContent.IContent[];
|
|
130
|
+
hasMore?: boolean;
|
|
131
|
+
pageState?: string;
|
|
132
|
+
totalHits?: number;
|
|
133
|
+
}
|
|
134
|
+
interface IContentStripTab {
|
|
135
|
+
pillsData?: any;
|
|
136
|
+
label: string;
|
|
137
|
+
value: string;
|
|
138
|
+
showTabDataCount: boolean;
|
|
139
|
+
requestRequired?: boolean;
|
|
140
|
+
computeDataOnClick?: boolean;
|
|
141
|
+
computeDataOnClickKey?: string;
|
|
142
|
+
request?: any;
|
|
143
|
+
widgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
144
|
+
maxWidgets?: number;
|
|
145
|
+
fetchTabStatus?: string;
|
|
146
|
+
nodataMsg?: string;
|
|
147
|
+
tabLoading?: boolean;
|
|
148
|
+
}
|
|
149
|
+
}
|
package/package.json
CHANGED
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-with-tabs-pills/content-strip-with-tabs-pills.module';
|
|
6
7
|
export * from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module';
|
|
7
8
|
export * from './lib/_common/common-strip/common-strip.module';
|
|
8
9
|
export * from './lib/_common/sliders/sliders.module';
|
|
@@ -23,10 +23,10 @@ export { CardWideComponent as ɵy } from './lib/_common/cards/card-wide/card-wid
|
|
|
23
23
|
export { CardsComponent as ɵu } from './lib/_common/cards/cards.component';
|
|
24
24
|
export { ProviderCardComponent as ɵbd } from './lib/_common/cards/provider-card/provider-card.component';
|
|
25
25
|
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
|
|
26
|
+
export { CompetencyPassbookMdoComponent as ɵcd } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.component';
|
|
27
|
+
export { CompetencyPassbookMdoService as ɵce } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.service';
|
|
28
|
+
export { CompetencyPassbookComponent as ɵbz } from './lib/_common/competency-passbook/competency-passbook.component';
|
|
29
|
+
export { CompetencyPassbookService as ɵca } from './lib/_common/competency-passbook/competency-passbook.service';
|
|
30
30
|
export { ContentProgressComponent as ɵbt } from './lib/_common/content-progress/content-progress.component';
|
|
31
31
|
export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
|
|
32
32
|
export { DataPointsComponent as ɵl } from './lib/_common/data-points/data-points.component';
|
|
@@ -36,23 +36,24 @@ export { DisplayContentTypeLibComponent as ɵbo } from './lib/_common/display-co
|
|
|
36
36
|
export { DisplayContentTypeLibModule as ɵbn } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
|
|
37
37
|
export { HorizontalScrollerV2Component as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
|
|
38
38
|
export { HorizontalScrollerV2Module as ɵe } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
|
|
39
|
-
export { PillsComponent as
|
|
40
|
-
export { PillsModule as
|
|
39
|
+
export { PillsComponent as ɵcc } from './lib/_common/pills/pills.component';
|
|
40
|
+
export { PillsModule as ɵcb } from './lib/_common/pills/pills.module';
|
|
41
41
|
export { SkeletonLoaderLibComponent as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
|
|
42
42
|
export { SkeletonLoaderLibModule as ɵn } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
|
|
43
|
-
export { SlidersNgContentLibComponent as
|
|
44
|
-
export { MyHammerConfig as
|
|
43
|
+
export { SlidersNgContentLibComponent as ɵcl } from './lib/_common/sliders-ng-content/sliders-ng-content.component';
|
|
44
|
+
export { MyHammerConfig as ɵcj, SlidersNgContentLibModule as ɵck } from './lib/_common/sliders-ng-content/sliders-ng-content.module';
|
|
45
45
|
export { SlidersLibComponent as ɵg } from './lib/_common/sliders/sliders.component';
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
46
|
+
export { ContentStripWithTabsPillsComponent as ɵby } from './lib/_common/strips/content-strip-with-tabs-pills/content-strip-with-tabs-pills.component';
|
|
47
|
+
export { UserContentRatingLibComponent as ɵcf } from './lib/_common/user-content-rating/user-content-rating-lib.component';
|
|
48
|
+
export { UserContentRatingLibService as ɵci } from './lib/_common/user-content-rating/user-content-rating-lib.service';
|
|
48
49
|
export { DefaultThumbnailDirective as ɵbq } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
|
|
49
50
|
export { DefaultThumbnailModule as ɵbp } from './lib/_directives/default-thumbnail/default-thumbnail.module';
|
|
50
51
|
export { ImageResponsiveDirective as ɵk } from './lib/_directives/image-responsive/image-responsive.directive';
|
|
51
52
|
export { ImageResponsiveModule as ɵj } from './lib/_directives/image-responsive/image-responsive.module';
|
|
52
53
|
export { NavigationDirective as ɵi } from './lib/_directives/navigation/navigation.directive';
|
|
53
54
|
export { NavigationModule as ɵh } from './lib/_directives/navigation/navigation.module';
|
|
54
|
-
export { ScrollableItemDirective as
|
|
55
|
-
export { ScrollableItemModule as
|
|
55
|
+
export { ScrollableItemDirective as ɵcg } from './lib/_directives/scrollable-item/scrollable-item.directive';
|
|
56
|
+
export { ScrollableItemModule as ɵcm } from './lib/_directives/scrollable-item/scrollable-item.module';
|
|
56
57
|
export { ObjectToArrayPipe as ɵbm } from './lib/_pipes/object-to-array/object-to-array.pipe';
|
|
57
58
|
export { ObjectToArrayPipeModule as ɵbl } from './lib/_pipes/object-to-array/object-to-array.pipe.module';
|
|
58
59
|
export { PipeDurationTransformModule as ɵbr } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.module';
|
|
@@ -63,5 +64,5 @@ export { CertificateService as ɵbh } from './lib/_services/certificate.service'
|
|
|
63
64
|
export { ConfigurationsService as ɵd } from './lib/_services/configurations.service';
|
|
64
65
|
export { InsiteDataService as ɵm } from './lib/_services/insite-data.service';
|
|
65
66
|
export { MultilingualTranslationsService as ɵc } from './lib/_services/multilingual-translations.service';
|
|
66
|
-
export { RatingService as
|
|
67
|
+
export { RatingService as ɵch } from './lib/_services/rating.service';
|
|
67
68
|
export { WidgetUserService as ɵb } from './lib/_services/widget-user.service';
|