@sunbird-cb/consumption 0.0.26 → 0.0.28
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 +651 -201
- 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/announcements/announcements.component.js +77 -9
- package/esm2015/lib/_common/calender/calender.component.js +1 -2
- package/esm2015/lib/_common/cards/card-karma-programs/card-karma-programs.component.js +33 -27
- package/esm2015/lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component.js +167 -0
- package/esm2015/lib/_common/cards/card-landscape/card-landscape.component.js +10 -22
- package/esm2015/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.js +48 -26
- package/esm2015/lib/_common/cards/card-portrait/card-portrait.component.js +3 -3
- package/esm2015/lib/_common/cards/card-wide-v2/card-wide-v2.component.js +11 -23
- package/esm2015/lib/_common/cards/cards.component.js +15 -4
- package/esm2015/lib/_common/cards/cards.module.js +6 -3
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +168 -64
- package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +20 -6
- package/esm2015/lib/_services/insite-data.service.js +10 -2
- package/esm2015/lib/_services/widget-content.service.js +9 -1
- package/esm2015/sunbird-cb-consumption.js +23 -22
- package/esm5/lib/_common/announcements/announcements.component.js +77 -9
- package/esm5/lib/_common/calender/calender.component.js +1 -2
- package/esm5/lib/_common/cards/card-karma-programs/card-karma-programs.component.js +35 -30
- package/esm5/lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component.js +177 -0
- package/esm5/lib/_common/cards/card-landscape/card-landscape.component.js +11 -22
- package/esm5/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.js +55 -26
- package/esm5/lib/_common/cards/card-portrait/card-portrait.component.js +3 -3
- package/esm5/lib/_common/cards/card-wide-v2/card-wide-v2.component.js +12 -23
- package/esm5/lib/_common/cards/cards.component.js +19 -4
- package/esm5/lib/_common/cards/cards.module.js +6 -3
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +209 -65
- package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +1 -1
- package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +20 -6
- package/esm5/lib/_services/insite-data.service.js +14 -2
- package/esm5/lib/_services/widget-content.service.js +13 -1
- package/esm5/sunbird-cb-consumption.js +23 -22
- package/fesm2015/sunbird-cb-consumption.js +555 -175
- package/fesm2015/sunbird-cb-consumption.js.map +1 -1
- package/fesm5/sunbird-cb-consumption.js +629 -180
- package/fesm5/sunbird-cb-consumption.js.map +1 -1
- package/lib/_common/announcements/announcements.component.d.ts +7 -1
- package/lib/_common/cards/card-karma-programs/card-karma-programs.component.d.ts +6 -2
- package/lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component.d.ts +26 -0
- package/lib/_common/cards/card-landscape/card-landscape.component.d.ts +2 -1
- package/lib/_common/cards/card-mdo-channel/card-mdo-channel.component.d.ts +10 -3
- package/lib/_common/cards/card-wide-v2/card-wide-v2.component.d.ts +2 -1
- package/lib/_common/cards/cards.component.d.ts +3 -1
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.d.ts +5 -1
- package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.d.ts +3 -1
- package/lib/_services/insite-data.service.d.ts +1 -0
- package/lib/_services/widget-content.service.d.ts +1 -0
- package/package.json +1 -1
- package/sunbird-cb-consumption.d.ts +22 -21
- package/sunbird-cb-consumption.metadata.json +1 -1
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { InsiteDataService } from '../../_services/insite-data.service';
|
|
2
3
|
export declare class AnnouncementsComponent implements OnInit {
|
|
4
|
+
insightSvc: InsiteDataService;
|
|
3
5
|
objectData: any;
|
|
4
6
|
layoutType: any;
|
|
5
7
|
mobileHeight: boolean;
|
|
8
|
+
fetchDataFromApi: boolean;
|
|
9
|
+
channelId: any;
|
|
6
10
|
openDialog: EventEmitter<any>;
|
|
7
11
|
isLoading: boolean;
|
|
8
|
-
|
|
12
|
+
announcements: any;
|
|
13
|
+
constructor(insightSvc: InsiteDataService);
|
|
9
14
|
ngOnInit(): void;
|
|
15
|
+
fetchData(): void;
|
|
10
16
|
viewMoreOrLess(item: any): void;
|
|
11
17
|
openAnnouncements(): void;
|
|
12
18
|
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { ConfigurationsService, EventService, MultilingualTranslationsService, NsContent } from '@sunbird-cb/utils-v2';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import { WidgetContentService } from '../../../_services/widget-content.service';
|
|
4
6
|
export declare class CardKarmaProgramsComponent implements OnInit {
|
|
5
7
|
private events;
|
|
6
8
|
private translate;
|
|
7
9
|
private langtranslations;
|
|
8
10
|
private configSvc;
|
|
11
|
+
private contSvc;
|
|
12
|
+
private router;
|
|
9
13
|
widgetData: NsContent.IContent;
|
|
10
14
|
randomColorApply: boolean;
|
|
11
15
|
userData: EventEmitter<any>;
|
|
@@ -15,9 +19,9 @@ export declare class CardKarmaProgramsComponent implements OnInit {
|
|
|
15
19
|
widgetType: any;
|
|
16
20
|
widgetSubType: any;
|
|
17
21
|
randomColors: any;
|
|
18
|
-
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService);
|
|
22
|
+
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService, contSvc: WidgetContentService, router: Router);
|
|
19
23
|
ngOnInit(): void;
|
|
20
24
|
setRandomColor(): void;
|
|
21
|
-
raiseTelemetry(): void;
|
|
22
25
|
readonly getRandomColors: any;
|
|
26
|
+
redirectTo(data: any): void;
|
|
23
27
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { ConfigurationsService, EventService, MultilingualTranslationsService, NsContent } from '@sunbird-cb/utils-v2';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
export declare class CardKarmaProgramsV2Component implements OnInit {
|
|
6
|
+
private events;
|
|
7
|
+
private translate;
|
|
8
|
+
private langtranslations;
|
|
9
|
+
private configSvc;
|
|
10
|
+
private router;
|
|
11
|
+
widgetData: NsContent.IContent;
|
|
12
|
+
randomColorApply: boolean;
|
|
13
|
+
userData: EventEmitter<any>;
|
|
14
|
+
raiseTemeletry: EventEmitter<any>;
|
|
15
|
+
defaultThumbnail: any;
|
|
16
|
+
sourceLogos: any;
|
|
17
|
+
defaultSLogo: any;
|
|
18
|
+
widgetType: any;
|
|
19
|
+
widgetSubType: any;
|
|
20
|
+
randomColors: any;
|
|
21
|
+
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService, router: Router);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
setRandomColor(): void;
|
|
24
|
+
redirectTo(content: any): void;
|
|
25
|
+
readonly getRandomColors: any;
|
|
26
|
+
}
|
|
@@ -16,6 +16,7 @@ export declare class CardLandscapeComponent implements OnInit {
|
|
|
16
16
|
isIntranetAllowedSettings: any;
|
|
17
17
|
isCardLoading: boolean;
|
|
18
18
|
contentData: EventEmitter<any>;
|
|
19
|
+
triggerTelemetry: EventEmitter<any>;
|
|
19
20
|
isCardFlipped: boolean;
|
|
20
21
|
defaultThumbnail: any;
|
|
21
22
|
acbpConstants: typeof NsCardContent.ACBPConst;
|
|
@@ -30,6 +31,6 @@ export declare class CardLandscapeComponent implements OnInit {
|
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
showSnackbar(): void;
|
|
32
33
|
getRedirectUrlData(contentData: any): void;
|
|
33
|
-
raiseTelemetry(): void;
|
|
34
|
+
raiseTelemetry(content: any): void;
|
|
34
35
|
getCbPlanData(): void;
|
|
35
36
|
}
|
|
@@ -1,19 +1,26 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { ConfigurationsService, EventService, MultilingualTranslationsService, NsContent } from '@sunbird-cb/utils-v2';
|
|
4
|
+
import { WidgetContentService } from '../../../_services/widget-content.service';
|
|
5
|
+
import { Router } from '@angular/router';
|
|
4
6
|
export declare class CardMDOChannelComponent implements OnInit {
|
|
5
7
|
private events;
|
|
6
8
|
private translate;
|
|
7
9
|
private langtranslations;
|
|
8
10
|
private configSvc;
|
|
11
|
+
private contSvc;
|
|
12
|
+
router: Router;
|
|
9
13
|
widgetData: NsContent.IContent;
|
|
10
|
-
|
|
14
|
+
channelData: EventEmitter<any>;
|
|
15
|
+
emitTelemetry: EventEmitter<any>;
|
|
11
16
|
defaultThumbnail: any;
|
|
12
17
|
sourceLogos: any;
|
|
13
18
|
defaultSLogo: any;
|
|
14
19
|
widgetType: any;
|
|
15
20
|
widgetSubType: any;
|
|
16
|
-
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService);
|
|
21
|
+
constructor(events: EventService, translate: TranslateService, langtranslations: MultilingualTranslationsService, configSvc: ConfigurationsService, contSvc: WidgetContentService, router: Router);
|
|
17
22
|
ngOnInit(): void;
|
|
18
|
-
raiseTelemetry(): void;
|
|
23
|
+
raiseTelemetry(contentData: any): void;
|
|
24
|
+
channelClick(channeldata: any): void;
|
|
25
|
+
redirectTo(content: any): void;
|
|
19
26
|
}
|
|
@@ -17,6 +17,7 @@ export declare class CardWideV2Component implements OnInit {
|
|
|
17
17
|
cbPlanMapData: any;
|
|
18
18
|
isCardLoading: boolean;
|
|
19
19
|
contentData: EventEmitter<any>;
|
|
20
|
+
triggerTelemetry: EventEmitter<any>;
|
|
20
21
|
isCardFlipped: boolean;
|
|
21
22
|
acbpConstants: typeof NsCardContent.ACBPConst;
|
|
22
23
|
defaultThumbnail: any;
|
|
@@ -29,5 +30,5 @@ export declare class CardWideV2Component implements OnInit {
|
|
|
29
30
|
ngOnInit(): void;
|
|
30
31
|
showSnackbar(): void;
|
|
31
32
|
getRedirectUrlData(contentData: any): void;
|
|
32
|
-
raiseTelemetry(): void;
|
|
33
|
+
raiseTelemetry(contentData: any): void;
|
|
33
34
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
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
4
|
import { UtilityService } from '@sunbird-cb/utils-v2';
|
|
@@ -11,6 +11,7 @@ export declare class CardsComponent extends WidgetBaseComponent implements OnIni
|
|
|
11
11
|
private contSvc;
|
|
12
12
|
router: Router;
|
|
13
13
|
widgetData: NsCardContent.ICard;
|
|
14
|
+
triggerTelemetry: EventEmitter<any>;
|
|
14
15
|
isIntranetAllowedSettings: boolean;
|
|
15
16
|
cbPlanMapData: any;
|
|
16
17
|
cbPlanInterval: any;
|
|
@@ -20,4 +21,5 @@ export declare class CardsComponent extends WidgetBaseComponent implements OnIni
|
|
|
20
21
|
readonly showIntranetContent: boolean;
|
|
21
22
|
getRedirectUrlData(content: any): Promise<void>;
|
|
22
23
|
getCbPlanData(): void;
|
|
24
|
+
raiseCardClick(data: any): void;
|
|
23
25
|
}
|
|
@@ -182,9 +182,13 @@ export declare class ContentStripWithTabsLibComponent extends WidgetBaseComponen
|
|
|
182
182
|
fetchAllFeaturedContent(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
183
183
|
raiseTelemetry(stripData: any): void;
|
|
184
184
|
postRequestMethod(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
|
|
185
|
+
getRequestMethod(strip: NsContentStripWithTabs.IContentStripUnit, request: NsContentStripWithTabs.IContentStripUnit['request'], apiUrl: string, calculateParentStatus: boolean): Promise<any>;
|
|
185
186
|
postMethodFilters(filters: any): any;
|
|
187
|
+
getFullUrl(apiUrl: any, id: string): string;
|
|
186
188
|
redirectViewAll(stripData: any, path: string, queryParamsData: any): void;
|
|
187
|
-
|
|
189
|
+
fetchAllBookMarkData(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
188
190
|
private transformAllContentsToWidgets;
|
|
191
|
+
fetchAllPlaylistSearch(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
192
|
+
fetchPlaylistReadData(strip: NsContentStripWithTabs.IContentStripUnit, calculateParentStatus?: boolean): Promise<void>;
|
|
189
193
|
}
|
|
190
194
|
export {};
|
|
@@ -50,11 +50,13 @@ export declare namespace NsContentStripWithTabs {
|
|
|
50
50
|
filters?: any[];
|
|
51
51
|
selectAll?: boolean | null;
|
|
52
52
|
request?: {
|
|
53
|
+
playlistRead: any;
|
|
54
|
+
playlistSearch?: any;
|
|
53
55
|
search?: NSSearch.ISearchRequest;
|
|
54
56
|
searchV6?: NSSearch.ISearchV6Request;
|
|
55
57
|
topContent?: any;
|
|
56
58
|
featureContent?: any;
|
|
57
|
-
|
|
59
|
+
bookmarkRead?: any;
|
|
58
60
|
enrollmentList?: any;
|
|
59
61
|
cbpList?: any;
|
|
60
62
|
apiUrl: string;
|
package/package.json
CHANGED
|
@@ -3,10 +3,11 @@
|
|
|
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 ɵbu } from './lib/_common/avatar-photo-lib/avatar-photo-lib.component';
|
|
7
|
+
export { AvatarPhotoLibModule as ɵbt } 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 { CardKarmaProgramsV2Component as ɵbc } from './lib/_common/cards/card-karma-programs-v2/card-karma-programs-v2.component';
|
|
10
11
|
export { CardKarmaProgramsComponent as ɵbb } from './lib/_common/cards/card-karma-programs/card-karma-programs.component';
|
|
11
12
|
export { CardLandscapeComponent as ɵx } from './lib/_common/cards/card-landscape/card-landscape.component';
|
|
12
13
|
export { CardMDOChannelComponent as ɵz } from './lib/_common/cards/card-mdo-channel/card-mdo-channel.component';
|
|
@@ -17,37 +18,37 @@ export { CardWideV2Component as ɵba } from './lib/_common/cards/card-wide-v2/ca
|
|
|
17
18
|
export { CardWideComponent as ɵy } from './lib/_common/cards/card-wide/card-wide.component';
|
|
18
19
|
export { CardsComponent as ɵu } from './lib/_common/cards/cards.component';
|
|
19
20
|
export { CommonStripComponent as ɵr } from './lib/_common/common-strip/common-strip.component';
|
|
20
|
-
export { CompetencyPassbookComponent as
|
|
21
|
-
export { CompetencyPassbookService as
|
|
21
|
+
export { CompetencyPassbookComponent as ɵbl } from './lib/_common/competency-passbook/competency-passbook.component';
|
|
22
|
+
export { CompetencyPassbookService as ɵbm } from './lib/_common/competency-passbook/competency-passbook.service';
|
|
22
23
|
export { ContentStripWithTabsLibComponent as ɵa } from './lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component';
|
|
23
24
|
export { DataPointsComponent as ɵl } from './lib/_common/data-points/data-points.component';
|
|
24
|
-
export { DisplayContentTypeLibComponent as
|
|
25
|
-
export { DisplayContentTypeLibModule as
|
|
25
|
+
export { DisplayContentTypeLibComponent as ɵbg } from './lib/_common/display-content-type-lib/display-content-type-lib.component';
|
|
26
|
+
export { DisplayContentTypeLibModule as ɵbf } from './lib/_common/display-content-type-lib/display-content-type-lib.module';
|
|
26
27
|
export { HorizontalScrollerV2Component as ɵf } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component';
|
|
27
28
|
export { HorizontalScrollerV2Module as ɵe } from './lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module';
|
|
28
|
-
export { PillsComponent as
|
|
29
|
-
export { PillsModule as
|
|
29
|
+
export { PillsComponent as ɵbo } from './lib/_common/pills/pills.component';
|
|
30
|
+
export { PillsModule as ɵbn } from './lib/_common/pills/pills.module';
|
|
30
31
|
export { SkeletonLoaderLibComponent as ɵo } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.component';
|
|
31
32
|
export { SkeletonLoaderLibModule as ɵn } from './lib/_common/skeleton-loader-lib/skeleton-loader-lib.module';
|
|
32
|
-
export { SlidersNgContentLibComponent as
|
|
33
|
-
export { MyHammerConfig as
|
|
33
|
+
export { SlidersNgContentLibComponent as ɵbx } from './lib/_common/sliders-ng-content/sliders-ng-content.component';
|
|
34
|
+
export { MyHammerConfig as ɵbv, SlidersNgContentLibModule as ɵbw } from './lib/_common/sliders-ng-content/sliders-ng-content.module';
|
|
34
35
|
export { SlidersLibComponent as ɵg } from './lib/_common/sliders/sliders.component';
|
|
35
|
-
export { UserContentRatingLibComponent as
|
|
36
|
-
export { UserContentRatingLibService as
|
|
37
|
-
export { DefaultThumbnailDirective as
|
|
38
|
-
export { DefaultThumbnailModule as
|
|
36
|
+
export { UserContentRatingLibComponent as ɵbp } from './lib/_common/user-content-rating/user-content-rating-lib.component';
|
|
37
|
+
export { UserContentRatingLibService as ɵbs } from './lib/_common/user-content-rating/user-content-rating-lib.service';
|
|
38
|
+
export { DefaultThumbnailDirective as ɵbi } from './lib/_directives/default-thumbnail/default-thumbnail.directive';
|
|
39
|
+
export { DefaultThumbnailModule as ɵbh } from './lib/_directives/default-thumbnail/default-thumbnail.module';
|
|
39
40
|
export { ImageResponsiveDirective as ɵk } from './lib/_directives/image-responsive/image-responsive.directive';
|
|
40
41
|
export { ImageResponsiveModule as ɵj } from './lib/_directives/image-responsive/image-responsive.module';
|
|
41
42
|
export { NavigationDirective as ɵi } from './lib/_directives/navigation/navigation.directive';
|
|
42
43
|
export { NavigationModule as ɵh } from './lib/_directives/navigation/navigation.module';
|
|
43
|
-
export { ScrollableItemDirective as
|
|
44
|
-
export { ScrollableItemModule as
|
|
45
|
-
export { PipeDurationTransformModule as
|
|
46
|
-
export { PipeDurationTransformPipe as
|
|
47
|
-
export { PipePublicURLModule as
|
|
48
|
-
export { PipePublicURL as
|
|
44
|
+
export { ScrollableItemDirective as ɵbq } from './lib/_directives/scrollable-item/scrollable-item.directive';
|
|
45
|
+
export { ScrollableItemModule as ɵby } from './lib/_directives/scrollable-item/scrollable-item.module';
|
|
46
|
+
export { PipeDurationTransformModule as ɵbj } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.module';
|
|
47
|
+
export { PipeDurationTransformPipe as ɵbk } from './lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe';
|
|
48
|
+
export { PipePublicURLModule as ɵbd } from './lib/_pipes/pipe-public-URL/pipe-public-URL.module';
|
|
49
|
+
export { PipePublicURL as ɵbe } from './lib/_pipes/pipe-public-URL/pipe-public-URL.pipe';
|
|
49
50
|
export { ConfigurationsService as ɵd } from './lib/_services/configurations.service';
|
|
50
51
|
export { InsiteDataService as ɵm } from './lib/_services/insite-data.service';
|
|
51
52
|
export { MultilingualTranslationsService as ɵc } from './lib/_services/multilingual-translations.service';
|
|
52
|
-
export { RatingService as
|
|
53
|
+
export { RatingService as ɵbr } from './lib/_services/rating.service';
|
|
53
54
|
export { WidgetUserService as ɵb } from './lib/_services/widget-user.service';
|