@sunbird-cb/toc 0.0.34 → 0.0.35-mauritius

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.
@@ -5,7 +5,7 @@ import { MatLegacySnackBar as MatSnackBar } from '@angular/material/legacy-snack
5
5
  import { NsWidgetResolver } from '@sunbird-cb/resolver-v2';
6
6
  import { NsContent } from '../../../../_services/widget-content.model';
7
7
  import { RatingService } from '../../../../_services/rating.service';
8
- import { LoggerService, ConfigurationsService, WidgetContentService } from '@sunbird-cb/utils-v2';
8
+ import { LoggerService, ConfigurationsService, WidgetContentService, DomainConfService } from '@sunbird-cb/utils-v2';
9
9
  import { AppTocService } from '../../../../services/app-toc.service';
10
10
  import { TimerService } from '../../../../services/timer.service';
11
11
  import { HandleClaimService } from '../content-services/handle-claim.service';
@@ -63,6 +63,7 @@ export declare class AppTocAboutComponent implements OnInit, OnChanges, AfterVie
63
63
  private resetRatingsService;
64
64
  private contentSvc;
65
65
  private activatedRoute;
66
+ domainConfService: DomainConfService;
66
67
  condition: any;
67
68
  kparray: any;
68
69
  content: NsContent.IContent | null;
@@ -147,7 +148,7 @@ export declare class AppTocAboutComponent implements OnInit, OnChanges, AfterVie
147
148
  refreshratingSub: any;
148
149
  pageConfigData: any;
149
150
  environment: any;
150
- constructor(ratingService: RatingService, loggerService: LoggerService, dialog: MatDialog, matSnackBar: MatSnackBar, loadCheckService: LoadCheckService, timerService: TimerService, tocSvc: AppTocService, configService: ConfigurationsService, discussUtilitySvc: DiscussUtilsService, router: Router, reviewDataService: ReviewComponentDataService, handleClaimService: HandleClaimService, resetRatingsService: ResetRatingsService, contentSvc: WidgetContentService, activatedRoute: ActivatedRoute, environment: any);
151
+ constructor(ratingService: RatingService, loggerService: LoggerService, dialog: MatDialog, matSnackBar: MatSnackBar, loadCheckService: LoadCheckService, timerService: TimerService, tocSvc: AppTocService, configService: ConfigurationsService, discussUtilitySvc: DiscussUtilsService, router: Router, reviewDataService: ReviewComponentDataService, handleClaimService: HandleClaimService, resetRatingsService: ResetRatingsService, contentSvc: WidgetContentService, activatedRoute: ActivatedRoute, domainConfService: DomainConfService, environment: any);
151
152
  ngOnInit(): void;
152
153
  ngAfterViewInit(): void;
153
154
  ngOnChanges(changes: SimpleChanges): void;
@@ -1,6 +1,6 @@
1
1
  import { AfterViewInit, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
2
  import { ActivatedRoute, Router } from '@angular/router';
3
- import { ConfigurationsService, EventService, UtilityService } from '@sunbird-cb/utils-v2';
3
+ import { ConfigurationsService, DomainConfService, EventService, UtilityService } from '@sunbird-cb/utils-v2';
4
4
  import { Subscription } from 'rxjs';
5
5
  import { LoadCheckService } from '../../../services/load-check.service';
6
6
  import { MatLegacyTabGroup as MatTabGroup, MatLegacyTabChangeEvent as MatTabChangeEvent } from '@angular/material/legacy-tabs';
@@ -25,6 +25,7 @@ export declare class ContentTocComponent implements OnInit, AfterViewInit, OnCha
25
25
  private eventSvc;
26
26
  private viewerDataSvc;
27
27
  private samuhikCharchaSvc;
28
+ domainConfService: DomainConfService;
28
29
  private environment;
29
30
  tabChangeValue: any;
30
31
  content: any;
@@ -93,7 +94,7 @@ export declare class ContentTocComponent implements OnInit, AfterViewInit, OnCha
93
94
  showAssignmentsTab: boolean;
94
95
  enableSamuhikCharchaTab: boolean;
95
96
  samuhikConfig: any;
96
- constructor(route: ActivatedRoute, utilityService: UtilityService, loadCheckService: LoadCheckService, configService: ConfigurationsService, dialog: MatDialog, tocSvc: AppTocService, actionSVC: ActionService, router: Router, eventSvc: EventService, viewerDataSvc: ViewerDataService, samuhikCharchaSvc: SamuhikCharchaService, environment: any);
97
+ constructor(route: ActivatedRoute, utilityService: UtilityService, loadCheckService: LoadCheckService, configService: ConfigurationsService, dialog: MatDialog, tocSvc: AppTocService, actionSVC: ActionService, router: Router, eventSvc: EventService, viewerDataSvc: ViewerDataService, samuhikCharchaSvc: SamuhikCharchaService, domainConfService: DomainConfService, environment: any);
97
98
  ngOnInit(): void;
98
99
  ngAfterViewInit(): void;
99
100
  get getCurrentTimeInUTC(): string;
@@ -7,7 +7,7 @@ import { Subscription, Observable } from 'rxjs';
7
7
  import { NsContent } from '../../_services/widget-content.model';
8
8
  import { WidgetContentService } from '../../_services/widget-content.service';
9
9
  import { NsWidgetResolver } from '@sunbird-cb/resolver-v2';
10
- import { ConfigurationsService, DataTransferService, EventService, LoggerService, MultilingualTranslationsService, NsPage, TFetchStatus, TelemetryService, UtilityService, WidgetEnrollService } from '@sunbird-cb/utils-v2';
10
+ import { ConfigurationsService, DataTransferService, DomainConfService, EventService, LoggerService, MultilingualTranslationsService, NsPage, TFetchStatus, TelemetryService, UtilityService, WidgetEnrollService } from '@sunbird-cb/utils-v2';
11
11
  import { WidgetContentLibService, WidgetUserServiceLib } from '@sunbird-cb/consumption';
12
12
  import { NsAppToc } from '../../models/app-toc.model';
13
13
  import { AppTocService } from '../../services/app-toc.service';
@@ -63,6 +63,7 @@ export declare class AppTocHomeComponent implements OnInit, OnDestroy, AfterView
63
63
  private matSnackbarNew;
64
64
  private userServiceLib;
65
65
  netCoreService: NetCoreService;
66
+ domainConfService: DomainConfService;
66
67
  show: boolean;
67
68
  changeTab: boolean;
68
69
  skeletonLoader: boolean;
@@ -215,7 +216,7 @@ export declare class AppTocHomeComponent implements OnInit, OnDestroy, AfterView
215
216
  value: string;
216
217
  }[];
217
218
  handleScroll(): void;
218
- constructor(route: ActivatedRoute, router: Router, contentSvc: WidgetContentService, tocSvc: AppTocService, loggerSvc: LoggerService, configSvc: ConfigurationsService, domSanitizer: DomSanitizer, authAccessControlSvc: AccessControlService, snackBar: MatSnackBar, dialog: MatDialog, mobileAppsSvc: MobileAppsService, utilitySvc: UtilityService, actionSVC: ActionService, viewerSvc: ViewerUtilService, ratingSvc: RatingService, telemetryService: TelemetryService, translate: TranslateService, langtranslations: MultilingualTranslationsService, events: EventService, matSnackBar: MatSnackBar, loadCheckService: LoadCheckService, handleClaimService: HandleClaimService, resetRatingsService: ResetRatingsService, timerService: TimerService, enrollSvc: WidgetEnrollService, contentLibSvc: WidgetContentLibService, dataTransferSvc: DataTransferService, matSnackbarNew: MatSnackbarNew, userServiceLib: WidgetUserServiceLib, netCoreService: NetCoreService, environment: any);
219
+ constructor(route: ActivatedRoute, router: Router, contentSvc: WidgetContentService, tocSvc: AppTocService, loggerSvc: LoggerService, configSvc: ConfigurationsService, domSanitizer: DomSanitizer, authAccessControlSvc: AccessControlService, snackBar: MatSnackBar, dialog: MatDialog, mobileAppsSvc: MobileAppsService, utilitySvc: UtilityService, actionSVC: ActionService, viewerSvc: ViewerUtilService, ratingSvc: RatingService, telemetryService: TelemetryService, translate: TranslateService, langtranslations: MultilingualTranslationsService, events: EventService, matSnackBar: MatSnackBar, loadCheckService: LoadCheckService, handleClaimService: HandleClaimService, resetRatingsService: ResetRatingsService, timerService: TimerService, enrollSvc: WidgetEnrollService, contentLibSvc: WidgetContentLibService, dataTransferSvc: DataTransferService, matSnackbarNew: MatSnackbarNew, userServiceLib: WidgetUserServiceLib, netCoreService: NetCoreService, domainConfService: DomainConfService, environment: any);
219
220
  ngOnInit(): void;
220
221
  getKarmapointsLimit(): void;
221
222
  isCourseCompletedOnThisMonth(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunbird-cb/toc",
3
- "version": "0.0.34",
3
+ "version": "0.0.35-mauritius",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },
@@ -12,7 +12,7 @@
12
12
  "@angular/material": "^16.2.14",
13
13
  "@ngx-translate/core": "^15.0.0",
14
14
  "@sunbird-cb/design-system": "0.0.3",
15
- "@sunbird-cb/utils-v2": "0.0.2-cbrelease-4.8.31",
15
+ "@sunbird-cb/utils-v2": "0.0.2-cbrelease-4.8.35-mauritius",
16
16
  "@sunbird-cb/resolver-v2": "0.0.7-ang-13-16",
17
17
  "@sunbird-cb/consumption": "0.0.32-cbrelease-4.8.32",
18
18
  "@sunbird-cb/discussion-v2": "0.0.8-cbrelease-4.8.28"
Binary file