mn-angular-lib 0.0.74 → 0.0.75

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.
@@ -5636,7 +5636,7 @@ class CalendarWeekComponent {
5636
5636
  this.eventsChanged.pipe(takeUntil(this.destroy$)).subscribe(events => {
5637
5637
  this.events = events;
5638
5638
  this.refreshEvents();
5639
- this.cdr.detectChanges();
5639
+ this.cdr.markForCheck();
5640
5640
  });
5641
5641
  }
5642
5642
  if (this.focusDayChanged) {
@@ -5645,11 +5645,11 @@ class CalendarWeekComponent {
5645
5645
  this.buildColumns();
5646
5646
  this.refreshEvents();
5647
5647
  this.updateCurrentTime();
5648
- this.cdr.detectChanges();
5648
+ this.cdr.markForCheck();
5649
5649
  });
5650
5650
  }
5651
5651
  // Build hour rows asynchronously (formatTimeI returns a Promise).
5652
- this.buildHourRows().then(() => this.cdr.detectChanges());
5652
+ this.buildHourRows().then(() => this.cdr.markForCheck());
5653
5653
  }
5654
5654
  ngOnDestroy() {
5655
5655
  this.destroy$.next();
@@ -5858,7 +5858,7 @@ class CalendarDayComponent {
5858
5858
  this.eventsChanged.pipe(takeUntil(this.destroy$)).subscribe(events => {
5859
5859
  this.events = events;
5860
5860
  this.refreshEvents();
5861
- this.cdr.detectChanges();
5861
+ this.cdr.markForCheck();
5862
5862
  });
5863
5863
  }
5864
5864
  if (this.focusDayChanged) {
@@ -5867,11 +5867,11 @@ class CalendarDayComponent {
5867
5867
  this.updateDayInfo();
5868
5868
  this.refreshEvents();
5869
5869
  this.updateCurrentTime();
5870
- this.cdr.detectChanges();
5870
+ this.cdr.markForCheck();
5871
5871
  });
5872
5872
  }
5873
5873
  // Build hour rows asynchronously (formatTimeI returns a Promise).
5874
- this.buildHourRows().then(() => this.cdr.detectChanges());
5874
+ this.buildHourRows().then(() => this.cdr.markForCheck());
5875
5875
  }
5876
5876
  ngOnDestroy() {
5877
5877
  this.destroy$.next();