mn-angular-lib 1.0.58 → 1.0.59

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.
@@ -7622,8 +7622,8 @@ class CalendarViewComponent {
7622
7622
  checkMobileView() {
7623
7623
  const wasMobile = this.isMobileView;
7624
7624
  const width = window.innerWidth;
7625
- this.isMobileView = width < 420;
7626
- this.isTabletView = width >= 420 && width < 1024;
7625
+ this.isMobileView = width < 475;
7626
+ this.isTabletView = width >= 475 && width < 1024;
7627
7627
  if (this.isMobileView && !wasMobile) {
7628
7628
  this.currentView = CalendarView.DAY;
7629
7629
  }