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