@sunbird-cb/consumption 0.0.42 → 0.0.44
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 +1243 -165
- 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/cards/card-assessment/card-assessment/card-assessment.component.js +175 -0
- package/esm2015/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.js +261 -0
- package/esm2015/lib/_common/cards/cards.component.js +24 -25
- package/esm2015/lib/_common/cards/cards.module.js +28 -3
- package/esm2015/lib/_common/content-progress/content-progress.component.js +89 -0
- package/esm2015/lib/_common/content-progress/content-progress.module.js +22 -0
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +43 -2
- package/esm2015/lib/_common/dialog-components/certificate-dialog/certificate-dialog.component.js +225 -0
- package/esm2015/lib/_common/dialog-components/dialog-components.module.js +43 -0
- package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +2 -4
- package/esm2015/lib/_pipes/object-to-array/object-to-array.pipe.js +28 -0
- package/esm2015/lib/_pipes/object-to-array/object-to-array.pipe.module.js +19 -0
- package/esm2015/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +2 -2
- package/esm2015/lib/_services/certificate.service.js +63 -0
- package/esm2015/lib/_services/multilingual-translations.service.js +27 -24
- package/esm2015/lib/_services/widget-content.service.js +1 -2
- package/esm2015/lib/consumption.module.js +1 -1
- package/esm2015/public-api.js +2 -1
- package/esm2015/sunbird-cb-consumption.js +34 -26
- package/esm5/lib/_common/cards/card-assessment/card-assessment/card-assessment.component.js +202 -0
- package/esm5/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.js +278 -0
- package/esm5/lib/_common/cards/cards.component.js +28 -17
- package/esm5/lib/_common/cards/cards.module.js +28 -3
- package/esm5/lib/_common/content-progress/content-progress.component.js +94 -0
- package/esm5/lib/_common/content-progress/content-progress.module.js +26 -0
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +58 -8
- package/esm5/lib/_common/dialog-components/certificate-dialog/certificate-dialog.component.js +248 -0
- package/esm5/lib/_common/dialog-components/dialog-components.module.js +47 -0
- package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +2 -4
- package/esm5/lib/_pipes/object-to-array/object-to-array.pipe.js +57 -0
- package/esm5/lib/_pipes/object-to-array/object-to-array.pipe.module.js +23 -0
- package/esm5/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +3 -3
- package/esm5/lib/_services/certificate.service.js +70 -0
- package/esm5/lib/_services/multilingual-translations.service.js +27 -24
- package/esm5/lib/_services/widget-content.service.js +1 -2
- package/esm5/lib/consumption.module.js +1 -1
- package/esm5/public-api.js +2 -1
- package/esm5/sunbird-cb-consumption.js +34 -26
- package/fesm2015/sunbird-cb-consumption.js +1074 -136
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +1210 -140
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/cards/card-assessment/card-assessment/card-assessment.component.d.ts +28 -0
- package/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.d.ts +41 -0
- package/lib/_common/cards/cards.component.d.ts +5 -3
- package/lib/_common/content-progress/content-progress.component.d.ts +13 -0
- package/lib/_common/content-progress/content-progress.module.d.ts +2 -0
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.d.ts +2 -0
- package/lib/_common/dialog-components/certificate-dialog/certificate-dialog.component.d.ts +22 -0
- package/lib/_common/dialog-components/dialog-components.module.d.ts +2 -0
- package/lib/_pipes/object-to-array/object-to-array.pipe.d.ts +4 -0
- package/lib/_pipes/object-to-array/object-to-array.pipe.module.d.ts +2 -0
- package/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.d.ts +1 -1
- package/lib/_services/certificate.service.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/sunbird-cb-consumption.d.ts +32 -24
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ConfigurationsService, NsContent } from '@sunbird-cb/utils-v2';
|
|
3
|
+
import { WidgetContentService } from '../../../../_services/widget-content.service';
|
|
4
|
+
export declare class CardAssessmentComponent implements OnInit {
|
|
5
|
+
private configSvc;
|
|
6
|
+
private contSvc;
|
|
7
|
+
widgetData: NsContent.IContent;
|
|
8
|
+
enrollmentMapData: any;
|
|
9
|
+
contentData: EventEmitter<any>;
|
|
10
|
+
isCardLoading: boolean;
|
|
11
|
+
stripData: any;
|
|
12
|
+
enrollList: any;
|
|
13
|
+
activeResource: any;
|
|
14
|
+
defaultThumbnail: any;
|
|
15
|
+
defaultSLogo: any;
|
|
16
|
+
daysRemaining: number;
|
|
17
|
+
startDate: any;
|
|
18
|
+
daysPending: boolean;
|
|
19
|
+
private intervalId;
|
|
20
|
+
constructor(configSvc: ConfigurationsService, contSvc: WidgetContentService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
updateStartDate(startDate: string | null): void;
|
|
23
|
+
startCountdown(date: any): void;
|
|
24
|
+
updateCountdown(targetDate: any): void;
|
|
25
|
+
clearTimer(): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
getRedirectUrlData(contentData: any): void;
|
|
28
|
+
}
|
package/lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { NsCardContent } from '../../../_models/card-content.model';
|
|
3
|
+
import { MatDialog, MatSnackBar } from '@angular/material';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { MultilingualTranslationsService } from '../../../_services/multilingual-translations.service';
|
|
6
|
+
import { WidgetContentService } from '../../../_services/widget-content.service';
|
|
7
|
+
import { ConfigurationsService, EventService } from '@sunbird-cb/utils-v2';
|
|
8
|
+
import { CertificateService } from '../../../_services/certificate.service';
|
|
9
|
+
export declare class CardProgressPortraitLibComponent implements OnInit {
|
|
10
|
+
private snackBar;
|
|
11
|
+
private translate;
|
|
12
|
+
private events;
|
|
13
|
+
private langtranslations;
|
|
14
|
+
private configSvc;
|
|
15
|
+
private contSvc;
|
|
16
|
+
private certificateService;
|
|
17
|
+
private dialog;
|
|
18
|
+
widgetData: NsCardContent.ICard;
|
|
19
|
+
isLiveOrMarkForDeletion: any;
|
|
20
|
+
showIntranetContent: any;
|
|
21
|
+
isIntranetAllowedSettings: any;
|
|
22
|
+
isCardLoading: boolean;
|
|
23
|
+
contentData: EventEmitter<any>;
|
|
24
|
+
cbPlanMapData: any;
|
|
25
|
+
isCardFlipped: boolean;
|
|
26
|
+
acbpConstants: typeof NsCardContent.ACBPConst;
|
|
27
|
+
defaultThumbnail: any;
|
|
28
|
+
sourceLogos: any;
|
|
29
|
+
defaultSLogo: any;
|
|
30
|
+
showFlip: boolean;
|
|
31
|
+
widgetType: any;
|
|
32
|
+
widgetSubType: any;
|
|
33
|
+
downloadCertificateLoading: boolean;
|
|
34
|
+
constructor(snackBar: MatSnackBar, translate: TranslateService, events: EventService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService, contSvc: WidgetContentService, certificateService: CertificateService, dialog: MatDialog);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
showSnackbar(): void;
|
|
37
|
+
getRedirectUrlData(contentData: any): void;
|
|
38
|
+
translateLabels(label: string, type: any, subtype?: any): any;
|
|
39
|
+
raiseTelemetry(): void;
|
|
40
|
+
downloadCertificate(certificateData: any): void;
|
|
41
|
+
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { WidgetBaseComponent, NsWidgetResolver } from '@sunbird-cb/resolver-v2';
|
|
3
3
|
import { NsCardContent } from '../../_models/card-content.model';
|
|
4
|
-
import { UtilityService
|
|
4
|
+
import { UtilityService } from '@sunbird-cb/utils-v2';
|
|
5
5
|
import { WidgetContentService } from '../../_services/widget-content.service';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
7
|
export declare class CardsComponent extends WidgetBaseComponent implements OnInit, NsWidgetResolver.IWidgetData<NsCardContent.ICard> {
|
|
8
8
|
private utilitySvc;
|
|
9
|
-
private configSvc;
|
|
10
9
|
private contSvc;
|
|
11
10
|
router: Router;
|
|
12
11
|
widgetData: NsCardContent.ICard;
|
|
@@ -14,11 +13,14 @@ export declare class CardsComponent extends WidgetBaseComponent implements OnIni
|
|
|
14
13
|
isIntranetAllowedSettings: boolean;
|
|
15
14
|
cbPlanMapData: any;
|
|
16
15
|
cbPlanInterval: any;
|
|
17
|
-
|
|
16
|
+
enrollInterval: any;
|
|
17
|
+
enrollmentMapData: any;
|
|
18
|
+
constructor(utilitySvc: UtilityService, contSvc: WidgetContentService, router: Router);
|
|
18
19
|
ngOnInit(): void;
|
|
19
20
|
readonly isLiveOrMarkForDeletion: boolean;
|
|
20
21
|
readonly showIntranetContent: boolean;
|
|
21
22
|
getRedirectUrlData(content: any): Promise<void>;
|
|
22
23
|
getCbPlanData(): void;
|
|
24
|
+
getEnrollmentData(): void;
|
|
23
25
|
raiseCardClick(data: any): void;
|
|
24
26
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnChanges } from '@angular/core';
|
|
2
|
+
export declare class ContentProgressComponent implements OnChanges {
|
|
3
|
+
contentId: string;
|
|
4
|
+
progress: number;
|
|
5
|
+
progressType: string;
|
|
6
|
+
forPreview: boolean;
|
|
7
|
+
className: string;
|
|
8
|
+
customClassName: any;
|
|
9
|
+
rendom: number;
|
|
10
|
+
id: string;
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnChanges(): void;
|
|
13
|
+
}
|
|
@@ -85,6 +85,7 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
85
85
|
defaultMaxWidgets: number;
|
|
86
86
|
enrollInterval: any;
|
|
87
87
|
todaysEvents: any;
|
|
88
|
+
enrollmentMapData: any;
|
|
88
89
|
constructor(environment: any, contentSvc: WidgetContentService, loggerSvc: LoggerService, eventSvc: EventService, configSvc: ConfigurationsService, utilitySvc: UtilityService, router: Router, userSvc: WidgetUserService, translate: TranslateService, langtranslations: MultilingualTranslationsService);
|
|
89
90
|
ngOnInit(): void;
|
|
90
91
|
ngOnDestroy(): void;
|
|
@@ -133,6 +134,7 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
133
134
|
})[];
|
|
134
135
|
}[];
|
|
135
136
|
fetchFromSearchV6(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
137
|
+
checkInvitOnlyAssessments(content: any, strip: any, calculateParentStatus: any, viewMoreUrl: any): void;
|
|
136
138
|
searchV6Request(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], calculateParentStatus: boolean): Promise<any>;
|
|
137
139
|
fetchFromTrendingContent(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
138
140
|
trendingSearchRequest(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], calculateParentStatus: boolean): Promise<any>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { EventService, MultilingualTranslationsService } from '@sunbird-cb/utils-v2';
|
|
5
|
+
export declare class CertificateDialogComponent implements OnInit {
|
|
6
|
+
private events;
|
|
7
|
+
private translate;
|
|
8
|
+
private langtranslations;
|
|
9
|
+
dialogRef: MatDialogRef<CertificateDialogComponent>;
|
|
10
|
+
data: any;
|
|
11
|
+
url: string;
|
|
12
|
+
navUrl: string;
|
|
13
|
+
environment: any;
|
|
14
|
+
constructor(environment: any, events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, dialogRef: MatDialogRef<CertificateDialogComponent>, data: any);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
downloadCert(): void;
|
|
17
|
+
downloadCertPng(): void;
|
|
18
|
+
downloadCertPdf(): Promise<void>;
|
|
19
|
+
shareCert(): Window;
|
|
20
|
+
raiseShareIntreactTelemetry(type?: string, action?: string): void;
|
|
21
|
+
raiseIntreactTelemetry(action?: string): void;
|
|
22
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
export declare class PipeDurationTransformPipe implements PipeTransform {
|
|
3
|
-
transform(data: number, type
|
|
3
|
+
transform(data: number, type?: 'time24' | 'hms' | 'hour' | 'hms2H' | 'hms2M' | 'day'): any;
|
|
4
4
|
defaultDuration(h: number, m: number, s: number): string;
|
|
5
5
|
hmsCalculation(h: number, m: number, s: number, dur: string, type: string): string;
|
|
6
6
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
export declare class CertificateService {
|
|
4
|
+
private http;
|
|
5
|
+
constructor(http: HttpClient);
|
|
6
|
+
downloadCertificate(id: string): Observable<any>;
|
|
7
|
+
downloadCertificate_v2(id: string): Observable<any>;
|
|
8
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -13,5 +13,6 @@ export * from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.mod
|
|
|
13
13
|
export * from './lib/_common/calender/calender.module';
|
|
14
14
|
export * from './lib/_common/user-content-rating/user-content-rating-lib.module';
|
|
15
15
|
export * from './lib/_common/announcements/announcements.module';
|
|
16
|
+
export * from './lib/_common/content-progress/content-progress.module';
|
|
16
17
|
export * from './lib/_services/widget-content.service';
|
|
17
18
|
export * from './lib/_services/common-methods.service';
|
|
@@ -3,56 +3,64 @@
|
|
|
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 ɵbw } from './lib/_common/avatar-photo-lib/avatar-photo-lib.component';
|
|
7
|
+
export { AvatarPhotoLibModule as ɵbv } 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 ɵbe } from './lib/_common/cards/card-assessment/card-assessment/card-assessment.component';
|
|
10
11
|
export { CardKarmaProgramsV2Component as ɵbc } from './lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component';
|
|
11
12
|
export { CardKarmaProgramsComponent as ɵbb } from './lib/_common/cards/card-karma-programs/card-karma-programs.component';
|
|
12
13
|
export { CardLandscapeComponent as ɵx } from './lib/_common/cards/card-landscape/card-landscape.component';
|
|
13
|
-
export { CardMdoChannelV1Component as
|
|
14
|
+
export { CardMdoChannelV1Component as ɵbh } from './lib/_common/cards/card-mdo-channel-v1/card-mdo-channel-v1.component';
|
|
14
15
|
export { CardMDOChannelComponent as ɵz } from './lib/_common/cards/card-mdo-channel/card-mdo-channel.component';
|
|
15
16
|
export { CardPortraitExtComponent as ɵbd } from './lib/_common/cards/card-portrait-ext/card-portrait-ext.component';
|
|
16
17
|
export { CardPortraitComponent as ɵv } from './lib/_common/cards/card-portrait/card-portrait.component';
|
|
18
|
+
export { CardProgressPortraitLibComponent as ɵbf } from './lib/_common/cards/card-progress-portrait-lib/card-progress-portrait-lib.component';
|
|
17
19
|
export { CardResourceComponent as ɵt } from './lib/_common/cards/card-resource/card-resource.component';
|
|
18
20
|
export { CardUserComponent as ɵw } from './lib/_common/cards/card-user/card-user.component';
|
|
19
21
|
export { CardWideV2Component as ɵba } from './lib/_common/cards/card-wide-v2/card-wide-v2.component';
|
|
20
22
|
export { CardWideComponent as ɵy } from './lib/_common/cards/card-wide/card-wide.component';
|
|
21
23
|
export { CardsComponent as ɵu } from './lib/_common/cards/cards.component';
|
|
22
24
|
export { CommonStripComponent as ɵr } from './lib/_common/common-strip/common-strip.component';
|
|
23
|
-
export { CompetencyPassbookMdoComponent as
|
|
24
|
-
export { CompetencyPassbookMdoService as
|
|
25
|
-
export { CompetencyPassbookComponent as
|
|
26
|
-
export { CompetencyPassbookService as
|
|
25
|
+
export { CompetencyPassbookMdoComponent as ɵcb } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.component';
|
|
26
|
+
export { CompetencyPassbookMdoService as ɵcc } from './lib/_common/competency-passbook-mdo/competency-passbook-mdo.service';
|
|
27
|
+
export { CompetencyPassbookComponent as ɵbx } from './lib/_common/competency-passbook/competency-passbook.component';
|
|
28
|
+
export { CompetencyPassbookService as ɵby } from './lib/_common/competency-passbook/competency-passbook.service';
|
|
29
|
+
export { ContentProgressComponent as ɵbs } from './lib/_common/content-progress/content-progress.component';
|
|
27
30
|
export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
|
|
28
31
|
export { DataPointsComponent as ɵl } from './lib/_common/data-points/data-points.component';
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
32
|
+
export { CertificateDialogComponent as ɵbu } from './lib/_common/dialog-components/certificate-dialog/certificate-dialog.component';
|
|
33
|
+
export { DialogComponentsModule as ɵbt } from './lib/_common/dialog-components/dialog-components.module';
|
|
34
|
+
export { DisplayContentTypeLibComponent as ɵbn } from './lib/_common/display-content-type-lib/display-content-type-lib.component';
|
|
35
|
+
export { DisplayContentTypeLibModule as ɵbm } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
|
|
31
36
|
export { HorizontalScrollerV2Component as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
|
|
32
37
|
export { HorizontalScrollerV2Module as ɵe } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
|
|
33
|
-
export { PillsComponent as
|
|
34
|
-
export { PillsModule as
|
|
38
|
+
export { PillsComponent as ɵca } from './lib/_common/pills/pills.component';
|
|
39
|
+
export { PillsModule as ɵbz } from './lib/_common/pills/pills.module';
|
|
35
40
|
export { SkeletonLoaderLibComponent as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
|
|
36
41
|
export { SkeletonLoaderLibModule as ɵn } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
|
|
37
|
-
export { SlidersNgContentLibComponent as
|
|
38
|
-
export { MyHammerConfig as
|
|
42
|
+
export { SlidersNgContentLibComponent as ɵcj } from './lib/_common/sliders-ng-content/sliders-ng-content.component';
|
|
43
|
+
export { MyHammerConfig as ɵch, SlidersNgContentLibModule as ɵci } from './lib/_common/sliders-ng-content/sliders-ng-content.module';
|
|
39
44
|
export { SlidersLibComponent as ɵg } from './lib/_common/sliders/sliders.component';
|
|
40
|
-
export { UserContentRatingLibComponent as
|
|
41
|
-
export { UserContentRatingLibService as
|
|
42
|
-
export { DefaultThumbnailDirective as
|
|
43
|
-
export { DefaultThumbnailModule as
|
|
45
|
+
export { UserContentRatingLibComponent as ɵcd } from './lib/_common/user-content-rating/user-content-rating-lib.component';
|
|
46
|
+
export { UserContentRatingLibService as ɵcg } from './lib/_common/user-content-rating/user-content-rating-lib.service';
|
|
47
|
+
export { DefaultThumbnailDirective as ɵbp } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
|
|
48
|
+
export { DefaultThumbnailModule as ɵbo } from './lib/_directives/default-thumbnail/default-thumbnail.module';
|
|
44
49
|
export { ImageResponsiveDirective as ɵk } from './lib/_directives/image-responsive/image-responsive.directive';
|
|
45
50
|
export { ImageResponsiveModule as ɵj } from './lib/_directives/image-responsive/image-responsive.module';
|
|
46
51
|
export { NavigationDirective as ɵi } from './lib/_directives/navigation/navigation.directive';
|
|
47
52
|
export { NavigationModule as ɵh } from './lib/_directives/navigation/navigation.module';
|
|
48
|
-
export { ScrollableItemDirective as
|
|
49
|
-
export { ScrollableItemModule as
|
|
50
|
-
export {
|
|
51
|
-
export {
|
|
52
|
-
export {
|
|
53
|
-
export {
|
|
53
|
+
export { ScrollableItemDirective as ɵce } from './lib/_directives/scrollable-item/scrollable-item.directive';
|
|
54
|
+
export { ScrollableItemModule as ɵck } from './lib/_directives/scrollable-item/scrollable-item.module';
|
|
55
|
+
export { ObjectToArrayPipe as ɵbl } from './lib/_pipes/object-to-array/object-to-array.pipe';
|
|
56
|
+
export { ObjectToArrayPipeModule as ɵbk } from './lib/_pipes/object-to-array/object-to-array.pipe.module';
|
|
57
|
+
export { PipeDurationTransformModule as ɵbq } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.module';
|
|
58
|
+
export { PipeDurationTransformPipe as ɵbr } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe';
|
|
59
|
+
export { PipePublicURLModule as ɵbi } from './lib/_pipes/pipe-public-URL/pipe-public-URL.module';
|
|
60
|
+
export { PipePublicURL as ɵbj } from './lib/_pipes/pipe-public-URL/pipe-public-URL.pipe';
|
|
61
|
+
export { CertificateService as ɵbg } from './lib/_services/certificate.service';
|
|
54
62
|
export { ConfigurationsService as ɵd } from './lib/_services/configurations.service';
|
|
55
63
|
export { InsiteDataService as ɵm } from './lib/_services/insite-data.service';
|
|
56
64
|
export { MultilingualTranslationsService as ɵc } from './lib/_services/multilingual-translations.service';
|
|
57
|
-
export { RatingService as
|
|
65
|
+
export { RatingService as ɵcf } from './lib/_services/rating.service';
|
|
58
66
|
export { WidgetUserService as ɵb } from './lib/_services/widget-user.service';
|