@sunbird-cb/consumption 0.0.11 → 0.0.12
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 +1180 -272
- 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/calender/calender.component.js +34 -0
- package/esm2015/lib/_common/calender/calender.module.js +21 -0
- package/esm2015/lib/_common/cards/card-user/card-user.component.js +5 -5
- package/esm2015/lib/_common/common-strip/common-strip.component.js +643 -0
- package/esm2015/lib/_common/common-strip/common-strip.model.js +216 -0
- package/esm2015/lib/_common/common-strip/common-strip.module.js +62 -0
- package/esm2015/lib/_common/competency-passbook/competency-passbook.component.js +3 -3
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +7 -5
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/esm2015/lib/_common/data-points/data-points.component.js +2 -2
- package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +63 -12
- package/esm2015/lib/_common/pills/pills.component.js +2 -2
- package/esm2015/lib/_common/sliders/sliders.component.js +3 -3
- package/esm2015/lib/_models/card-users.model.js +7 -5
- package/esm2015/lib/_services/common-methods.service.js +1 -1
- package/esm2015/lib/consumption.module.js +6 -2
- package/esm2015/public-api.js +3 -1
- package/esm2015/sunbird-cb-consumption.js +21 -19
- package/esm5/lib/_common/calender/calender.component.js +39 -0
- package/esm5/lib/_common/calender/calender.module.js +25 -0
- package/esm5/lib/_common/cards/card-user/card-user.component.js +5 -5
- package/esm5/lib/_common/common-strip/common-strip.component.js +757 -0
- package/esm5/lib/_common/common-strip/common-strip.model.js +216 -0
- package/esm5/lib/_common/common-strip/common-strip.module.js +66 -0
- package/esm5/lib/_common/competency-passbook/competency-passbook.component.js +3 -3
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +7 -5
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/esm5/lib/_common/data-points/data-points.component.js +2 -2
- package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +60 -12
- package/esm5/lib/_common/pills/pills.component.js +2 -2
- package/esm5/lib/_common/sliders/sliders.component.js +3 -3
- package/esm5/lib/_models/card-users.model.js +7 -5
- package/esm5/lib/_services/common-methods.service.js +1 -1
- package/esm5/lib/consumption.module.js +6 -2
- package/esm5/public-api.js +3 -1
- package/esm5/sunbird-cb-consumption.js +21 -19
- package/fesm2015/sunbird-cb-consumption.js +974 -190
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +1157 -253
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/calender/calender.component.d.ts +6 -0
- package/lib/_common/calender/calender.module.d.ts +2 -0
- package/lib/_common/common-strip/common-strip.component.d.ts +104 -0
- package/lib/_common/common-strip/common-strip.model.d.ts +141 -0
- package/lib/_common/common-strip/common-strip.module.d.ts +2 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.d.ts +8 -0
- package/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.d.ts +8 -6
- package/lib/_models/card-users.model.d.ts +5 -4
- package/lib/_services/common-methods.service.d.ts +3 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/sunbird-cb-consumption.d.ts +19 -17
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { NsWidgetResolver, WidgetBaseComponent } from '@sunbird-cb/resolver-v2';
|
|
3
|
+
import { NsCommonStrip } from './common-strip.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 { CommonMethodsService } from '../../_services/common-methods.service';
|
|
12
|
+
interface IStripUnitCommonData {
|
|
13
|
+
key: string;
|
|
14
|
+
canHideStrip: boolean;
|
|
15
|
+
mode?: string;
|
|
16
|
+
showStrip: boolean;
|
|
17
|
+
disableTranslate: boolean;
|
|
18
|
+
widgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
19
|
+
stripTitle: 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
|
+
};
|
|
33
|
+
stripConfig: any;
|
|
34
|
+
tabs?: NsCommonStrip.ICommonStripTab[] | undefined;
|
|
35
|
+
stripName?: string;
|
|
36
|
+
stripLogo?: string;
|
|
37
|
+
description?: string;
|
|
38
|
+
stripInfo?: NsCommonStrip.IStripInfo;
|
|
39
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
40
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
41
|
+
showOnNoData: boolean;
|
|
42
|
+
showOnLoader: boolean;
|
|
43
|
+
showOnError: boolean;
|
|
44
|
+
loaderWidgets?: any;
|
|
45
|
+
stripBackground?: string;
|
|
46
|
+
secondaryHeading?: any;
|
|
47
|
+
viewMoreUrl: any;
|
|
48
|
+
}
|
|
49
|
+
export declare class CommonStripComponent extends WidgetBaseComponent implements OnInit, OnDestroy, NsWidgetResolver.IWidgetData<NsCommonStrip.ICommonStrip> {
|
|
50
|
+
private contentSvc;
|
|
51
|
+
private loggerSvc;
|
|
52
|
+
private eventSvc;
|
|
53
|
+
private configSvc;
|
|
54
|
+
utilitySvc: UtilityService;
|
|
55
|
+
private userSvc;
|
|
56
|
+
private translate;
|
|
57
|
+
private langtranslations;
|
|
58
|
+
private commonMethodsSvc;
|
|
59
|
+
widgetData: NsCommonStrip.ICommonStrip;
|
|
60
|
+
id: string;
|
|
61
|
+
stripsResultDataMap: {
|
|
62
|
+
[key: string]: IStripUnitCommonData;
|
|
63
|
+
};
|
|
64
|
+
stripsKeyOrder: string[];
|
|
65
|
+
showAccordionData: boolean;
|
|
66
|
+
showParentLoader: boolean;
|
|
67
|
+
showParentError: boolean;
|
|
68
|
+
showParentNoData: boolean;
|
|
69
|
+
errorDataCount: number;
|
|
70
|
+
noDataCount: number;
|
|
71
|
+
successDataCount: number;
|
|
72
|
+
contentAvailable: boolean;
|
|
73
|
+
baseUrl: string;
|
|
74
|
+
veifiedKarmayogi: boolean;
|
|
75
|
+
environment: any;
|
|
76
|
+
changeEventSubscription: Subscription | null;
|
|
77
|
+
defaultMaxWidgets: number;
|
|
78
|
+
enrollInterval: any;
|
|
79
|
+
todaysEvents: any;
|
|
80
|
+
constructor(environment: any, contentSvc: WidgetContentService, loggerSvc: LoggerService, eventSvc: EventService, configSvc: ConfigurationsService, utilitySvc: UtilityService, userSvc: WidgetUserService, translate: TranslateService, langtranslations: MultilingualTranslationsService, commonMethodsSvc: CommonMethodsService);
|
|
81
|
+
ngOnInit(): void;
|
|
82
|
+
ngOnDestroy(): void;
|
|
83
|
+
showAccordion(key: string): boolean;
|
|
84
|
+
setHiddenForStrip(key: string): void;
|
|
85
|
+
private getIfStripHidden;
|
|
86
|
+
private initData;
|
|
87
|
+
private fetchStripFromKey;
|
|
88
|
+
isStripShowing(data: any): any;
|
|
89
|
+
readonly isMobile: boolean;
|
|
90
|
+
getdata(data: IStripUnitCommonData): {};
|
|
91
|
+
checkCondition(wData: NsCommonStrip.ICommonStrip, data: IStripUnitCommonData): boolean;
|
|
92
|
+
checkVisible(data: IStripUnitCommonData): boolean;
|
|
93
|
+
getContineuLearningLenth(data: IStripUnitCommonData): number;
|
|
94
|
+
getLength(data: IStripUnitCommonData): number;
|
|
95
|
+
private processStrip;
|
|
96
|
+
getSelectedIndex(stripsResultDataMap: any, key: any): number;
|
|
97
|
+
private checkParentStatus;
|
|
98
|
+
checkForEmptyWidget(strip: NsCommonStrip.ICommonStripUnit): boolean;
|
|
99
|
+
tabClicked(tabEvent: MatTabChangeEvent, stripMap: IStripUnitCommonData, stripKey: string): void;
|
|
100
|
+
translateLabels(label: string, type: any): any;
|
|
101
|
+
identify(index: number, item: any): any;
|
|
102
|
+
tracker(index: number, item: any): any;
|
|
103
|
+
}
|
|
104
|
+
export {};
|
|
@@ -0,0 +1,141 @@
|
|
|
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 NsCommonStrip {
|
|
6
|
+
interface ICommonStrip {
|
|
7
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
8
|
+
loader?: boolean;
|
|
9
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
10
|
+
strips: ICommonStripUnit[];
|
|
11
|
+
isChannelStrip?: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface ICommonStripUnit {
|
|
14
|
+
disableTranslate?: any;
|
|
15
|
+
key: string;
|
|
16
|
+
title: string;
|
|
17
|
+
dataType?: "in-hand" | "";
|
|
18
|
+
dataKey?: string;
|
|
19
|
+
customeClass?: string;
|
|
20
|
+
nodataMsg?: 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
|
+
dotsAlign?: "right" | "left";
|
|
34
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
35
|
+
responsive?: {
|
|
36
|
+
showNavs: boolean;
|
|
37
|
+
showDots: boolean;
|
|
38
|
+
dotsAlign?: "right" | "left";
|
|
39
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
tabs?: NsCommonStrip.ICommonStripTab[] | undefined;
|
|
43
|
+
titleDescription?: string;
|
|
44
|
+
name?: string;
|
|
45
|
+
mode?: 'accordion';
|
|
46
|
+
info?: IStripInfo;
|
|
47
|
+
logo?: string;
|
|
48
|
+
preWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
49
|
+
postWidgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
50
|
+
stripConfig?: IStripConfig;
|
|
51
|
+
canHideStrip?: boolean;
|
|
52
|
+
filters?: any[];
|
|
53
|
+
selectAll?: boolean | null;
|
|
54
|
+
request?: {
|
|
55
|
+
search?: NSSearch.ISearchRequest;
|
|
56
|
+
searchV6?: NSSearch.ISearchV6Request;
|
|
57
|
+
enrollmentList?: any;
|
|
58
|
+
cbpList?: any;
|
|
59
|
+
searchRegionRecommendation?: NSSearch.ISearchOrgRegionRecommendationRequest;
|
|
60
|
+
api?: IStripRequestApi;
|
|
61
|
+
networkApi?: INetworkRequestApi;
|
|
62
|
+
ids?: string[];
|
|
63
|
+
recommendedCourses?: any;
|
|
64
|
+
masterCompetency?: any;
|
|
65
|
+
trendingSearch?: any;
|
|
66
|
+
};
|
|
67
|
+
searchV6Type?: 'KB' | 'Collections' | 'searchQuery' | null;
|
|
68
|
+
stripBackground?: string;
|
|
69
|
+
noDataWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
70
|
+
loader?: boolean;
|
|
71
|
+
loaderWidgets?: any;
|
|
72
|
+
errorWidget?: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
73
|
+
refreshEvent?: Record<'eventType' | 'from', string>;
|
|
74
|
+
fetchLikes?: boolean;
|
|
75
|
+
secondaryHeading?: any;
|
|
76
|
+
viewMoreUrl?: {
|
|
77
|
+
queryParams?: any;
|
|
78
|
+
viewMoreText: string;
|
|
79
|
+
path: string;
|
|
80
|
+
};
|
|
81
|
+
data?: [];
|
|
82
|
+
}
|
|
83
|
+
interface IStripRequestApi {
|
|
84
|
+
path: string;
|
|
85
|
+
queryParams?: {
|
|
86
|
+
pageNo?: number;
|
|
87
|
+
pageSize?: number;
|
|
88
|
+
pageState?: string;
|
|
89
|
+
sourceFields?: string;
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
interface INetworkRequestApi {
|
|
93
|
+
path: string;
|
|
94
|
+
data?: any;
|
|
95
|
+
}
|
|
96
|
+
interface IStripInfo {
|
|
97
|
+
mode: 'below' | 'popup' | 'modal';
|
|
98
|
+
visibilityMode?: 'hidden' | 'visible';
|
|
99
|
+
icon: {
|
|
100
|
+
icon: string;
|
|
101
|
+
scale: number;
|
|
102
|
+
style?: any;
|
|
103
|
+
};
|
|
104
|
+
widget: NsWidgetResolver.IRenderConfigWithAnyData;
|
|
105
|
+
}
|
|
106
|
+
interface IStripConfig {
|
|
107
|
+
cardSubType: NsCardContent.TCardSubType;
|
|
108
|
+
postCardForSearch?: boolean;
|
|
109
|
+
intranetMode?: 'greyOut' | 'hide';
|
|
110
|
+
deletedMode?: 'greyOut' | 'hide';
|
|
111
|
+
contentTags?: IContentTags;
|
|
112
|
+
hideShowAll?: boolean;
|
|
113
|
+
}
|
|
114
|
+
interface IContentTags {
|
|
115
|
+
daysSpan?: number;
|
|
116
|
+
excludeContentType?: NsContent.EContentTypes[];
|
|
117
|
+
excludeMimeType?: string[];
|
|
118
|
+
tag: string;
|
|
119
|
+
criteriaField: string;
|
|
120
|
+
}
|
|
121
|
+
interface IContentStripResponseApi {
|
|
122
|
+
contents: NsContent.IContent[];
|
|
123
|
+
hasMore?: boolean;
|
|
124
|
+
pageState?: string;
|
|
125
|
+
totalHits?: number;
|
|
126
|
+
}
|
|
127
|
+
interface ICommonStripTab {
|
|
128
|
+
label: string;
|
|
129
|
+
value: string;
|
|
130
|
+
showTabDataCount: boolean;
|
|
131
|
+
requestRequired?: boolean;
|
|
132
|
+
computeDataOnClick?: boolean;
|
|
133
|
+
computeDataOnClickKey?: string;
|
|
134
|
+
request?: any;
|
|
135
|
+
widgets?: NsWidgetResolver.IRenderConfigWithAnyData[];
|
|
136
|
+
maxWidgets?: number;
|
|
137
|
+
fetchTabStatus?: string;
|
|
138
|
+
nodataMsg?: string;
|
|
139
|
+
tabLoading?: boolean;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
@@ -28,6 +28,14 @@ export declare namespace NsContentStripWithTabs {
|
|
|
28
28
|
showDots: boolean;
|
|
29
29
|
maxWidgets?: number;
|
|
30
30
|
cerificateCardMargin?: boolean;
|
|
31
|
+
dotsAlign?: "right" | "left";
|
|
32
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
33
|
+
responsive?: {
|
|
34
|
+
showNavs: boolean;
|
|
35
|
+
showDots: boolean;
|
|
36
|
+
dotsAlign?: "right" | "left";
|
|
37
|
+
arrowsPlacement?: "bottom-right" | "bottom-center" | "bottom-left" | "middle-inline";
|
|
38
|
+
};
|
|
31
39
|
};
|
|
32
40
|
tabs?: NsContentStripWithTabs.IContentStripTab[] | undefined;
|
|
33
41
|
titleDescription?: string;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { OnInit, OnChanges, OnDestroy, EventEmitter, ElementRef } from '@angular/core';
|
|
2
2
|
import { TFetchStatus } from '../../_constants/misc.constants';
|
|
3
|
+
import { ValueService } from '@sunbird-cb/utils-v2';
|
|
3
4
|
export declare class HorizontalScrollerV2Component implements OnInit, OnChanges, OnDestroy {
|
|
5
|
+
private valueSvc;
|
|
4
6
|
loadStatus: TFetchStatus;
|
|
7
|
+
id: string;
|
|
5
8
|
onHover: boolean;
|
|
6
|
-
sliderConfig:
|
|
7
|
-
showNavs: boolean;
|
|
8
|
-
showDots: boolean;
|
|
9
|
-
cerificateCardMargin: boolean;
|
|
10
|
-
};
|
|
9
|
+
sliderConfig: any;
|
|
11
10
|
loadNext: EventEmitter<any>;
|
|
12
11
|
widgetsLength: any;
|
|
13
12
|
defaultMaxWidgets: any;
|
|
@@ -19,7 +18,10 @@ export declare class HorizontalScrollerV2Component implements OnInit, OnChanges,
|
|
|
19
18
|
cardSubType: string;
|
|
20
19
|
bottomDotsArray: any;
|
|
21
20
|
private scrollObserver;
|
|
22
|
-
|
|
21
|
+
isMobile: boolean;
|
|
22
|
+
private defaultMenuSubscribe;
|
|
23
|
+
isLtMedium$: import("rxjs").Observable<boolean>;
|
|
24
|
+
constructor(valueSvc: ValueService);
|
|
23
25
|
ngOnInit(): void;
|
|
24
26
|
ngOnChanges(): void;
|
|
25
27
|
ngOnDestroy(): void;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NsCardContent } from './card-content.model';
|
|
2
2
|
export declare namespace NsCardUser {
|
|
3
3
|
interface ICard {
|
|
4
|
-
|
|
4
|
+
content: user | IUserProfile;
|
|
5
5
|
cardSubType: NsCardContent.TCardSubType;
|
|
6
6
|
context: {
|
|
7
7
|
pageSection: string;
|
|
@@ -15,13 +15,14 @@ export declare namespace NsCardUser {
|
|
|
15
15
|
email?: string;
|
|
16
16
|
departmentName?: string;
|
|
17
17
|
userName?: string;
|
|
18
|
+
name?: string;
|
|
18
19
|
firstName?: string;
|
|
19
20
|
surName?: string;
|
|
20
21
|
middleName?: string;
|
|
21
22
|
lastName?: string;
|
|
22
23
|
rootOrgId?: string;
|
|
23
24
|
rootOrgName?: string;
|
|
24
|
-
|
|
25
|
+
image?: string;
|
|
25
26
|
givenName?: string;
|
|
26
27
|
country?: null | string;
|
|
27
28
|
unit?: string | null;
|
|
@@ -41,9 +42,9 @@ export declare namespace NsCardUser {
|
|
|
41
42
|
}
|
|
42
43
|
interface user {
|
|
43
44
|
userId: string;
|
|
44
|
-
|
|
45
|
+
name?: string;
|
|
45
46
|
description?: string;
|
|
46
|
-
|
|
47
|
+
image?: string;
|
|
47
48
|
}
|
|
48
49
|
type TCardSubType = 'standard' | 'minimal' | 'space-saving' | 'basic-info' | 'basic-details' | 'card-description-back' | 'network-card' | 'user-card';
|
|
49
50
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { NsContent } from '../_models/widget-content.model';
|
|
2
2
|
import { NsContentStripWithTabs } from '../_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model';
|
|
3
|
+
import { NsCommonStrip } from '../_common/common-strip/common-strip.model';
|
|
3
4
|
export declare class CommonMethodsService {
|
|
4
5
|
constructor();
|
|
5
|
-
transformContentsToWidgets(contents: NsContent.IContent[], strip: NsContentStripWithTabs.IContentStripUnit): ({
|
|
6
|
+
transformContentsToWidgets(contents: NsContent.IContent[], strip: NsContentStripWithTabs.IContentStripUnit | NsCommonStrip.ICommonStripUnit): ({
|
|
6
7
|
widgetType: string;
|
|
7
8
|
widgetSubType: string;
|
|
8
9
|
widgetHostClass: string;
|
|
@@ -15,7 +16,7 @@ export declare class CommonMethodsService {
|
|
|
15
16
|
};
|
|
16
17
|
intranetMode: "" | "hide" | "greyOut";
|
|
17
18
|
deletedMode: "" | "hide" | "greyOut";
|
|
18
|
-
contentTags: NsContentStripWithTabs.IContentTags;
|
|
19
|
+
contentTags: NsContentStripWithTabs.IContentTags | NsCommonStrip.IContentTags;
|
|
19
20
|
batch: any;
|
|
20
21
|
content: NsContent.IContent;
|
|
21
22
|
};
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -4,8 +4,10 @@ export * from './lib/consumption.module';
|
|
|
4
4
|
export * from './lib/registration-lib.config';
|
|
5
5
|
export * from './lib/consumption.config';
|
|
6
6
|
export * from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module';
|
|
7
|
+
export * from './lib/_common/common-strip/common-strip.module';
|
|
7
8
|
export * from './lib/_common/sliders/sliders.module';
|
|
8
9
|
export * from './lib/_common/data-points/data-points.module';
|
|
9
10
|
export * from './lib/_common/cards/cards.module';
|
|
10
11
|
export * from './lib/_common/competency-passbook/competency-passbook.module';
|
|
12
|
+
export * from './lib/_common/calender/calender.module';
|
|
11
13
|
export * from './lib/_services/common-methods.service';
|
|
@@ -2,34 +2,36 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
5
|
+
export { CalenderComponent as ɵq } from './lib/_common/calender/calender.component';
|
|
6
|
+
export { CardLandscapeComponent as ɵw } from './lib/_common/cards/card-landscape/card-landscape.component';
|
|
7
|
+
export { CardPortraitComponent as ɵu } from './lib/_common/cards/card-portrait/card-portrait.component';
|
|
8
|
+
export { CardResourceComponent as ɵs } from './lib/_common/cards/card-resource/card-resource.component';
|
|
9
|
+
export { CardUserComponent as ɵv } from './lib/_common/cards/card-user/card-user.component';
|
|
10
|
+
export { CardsComponent as ɵt } from './lib/_common/cards/cards.component';
|
|
11
|
+
export { CommonStripComponent as ɵr } from './lib/_common/common-strip/common-strip.component';
|
|
12
|
+
export { CompetencyPassbookComponent as ɵbf } from './lib/_common/competency-passbook/competency-passbook.component';
|
|
13
|
+
export { CompetencyPassbookService as ɵbg } from './lib/_common/competency-passbook/competency-passbook.service';
|
|
12
14
|
export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
|
|
13
15
|
export { DataPointsComponent as ɵm } from './lib/_common/data-points/data-points.component';
|
|
14
|
-
export { DisplayContentTypeLibComponent as
|
|
15
|
-
export { DisplayContentTypeLibModule as
|
|
16
|
+
export { DisplayContentTypeLibComponent as ɵba } from './lib/_common/display-content-type-lib/display-content-type-lib.component';
|
|
17
|
+
export { DisplayContentTypeLibModule as ɵz } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
|
|
16
18
|
export { HorizontalScrollerV2Component as ɵg } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
|
|
17
19
|
export { HorizontalScrollerV2Module as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
|
|
18
|
-
export { PillsComponent as
|
|
19
|
-
export { PillsModule as
|
|
20
|
+
export { PillsComponent as ɵbi } from './lib/_common/pills/pills.component';
|
|
21
|
+
export { PillsModule as ɵbh } from './lib/_common/pills/pills.module';
|
|
20
22
|
export { SkeletonLoaderLibComponent as ɵp } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
|
|
21
23
|
export { SkeletonLoaderLibModule as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
|
|
22
24
|
export { SlidersLibComponent as ɵh } from './lib/_common/sliders/sliders.component';
|
|
23
|
-
export { DefaultThumbnailDirective as
|
|
24
|
-
export { DefaultThumbnailModule as
|
|
25
|
+
export { DefaultThumbnailDirective as ɵbc } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
|
|
26
|
+
export { DefaultThumbnailModule as ɵbb } from './lib/_directives/default-thumbnail/default-thumbnail.module';
|
|
25
27
|
export { ImageResponsiveDirective as ɵl } from './lib/_directives/image-responsive/image-responsive.directive';
|
|
26
28
|
export { ImageResponsiveModule as ɵk } from './lib/_directives/image-responsive/image-responsive.module';
|
|
27
29
|
export { NavigationDirective as ɵj } from './lib/_directives/navigation/navigation.directive';
|
|
28
30
|
export { NavigationModule as ɵi } from './lib/_directives/navigation/navigation.module';
|
|
29
|
-
export { PipeDurationTransformModule as
|
|
30
|
-
export { PipeDurationTransformPipe as
|
|
31
|
-
export { PipePublicURLModule as
|
|
32
|
-
export { PipePublicURL as
|
|
31
|
+
export { PipeDurationTransformModule as ɵbd } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.module';
|
|
32
|
+
export { PipeDurationTransformPipe as ɵbe } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe';
|
|
33
|
+
export { PipePublicURLModule as ɵx } from './lib/_pipes/pipe-public-URL/pipe-public-URL.module';
|
|
34
|
+
export { PipePublicURL as ɵy } from './lib/_pipes/pipe-public-URL/pipe-public-URL.pipe';
|
|
33
35
|
export { ConfigurationsService as ɵe } from './lib/_services/configurations.service';
|
|
34
36
|
export { InsiteDataService as ɵn } from './lib/_services/insite-data.service';
|
|
35
37
|
export { MultilingualTranslationsService as ɵd } from './lib/_services/multilingual-translations.service';
|