@fundamental-ngx/core 0.60.1-rc.2 → 0.60.1-rc.3

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.
@@ -7,8 +7,8 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
7
7
  import { ButtonComponent } from '@fundamental-ngx/core/button';
8
8
  import { Subject, switchMap, startWith, map, Subscription } from 'rxjs';
9
9
  import { RtlService, FocusableListDirective, FocusableItemDirective } from '@fundamental-ngx/cdk/utils';
10
- import equal from 'fast-deep-equal';
11
10
  import { NgClass } from '@angular/common';
11
+ import { shallowEqual } from 'fast-equals';
12
12
  import { NG_VALUE_ACCESSOR, NG_VALIDATORS } from '@angular/forms';
13
13
  import * as i1 from '@fundamental-ngx/core/content-density';
14
14
  import { ContentDensityModule, contentDensityObserverProviders } from '@fundamental-ngx/core/content-density';
@@ -1003,7 +1003,7 @@ class DateRange {
1003
1003
  class CalendarDayViewComponent {
1004
1004
  /** Currently displayed month and year for days */
1005
1005
  set currentlyDisplayed(currentlyDisplayed) {
1006
- if (!equal(currentlyDisplayed, this._currentlyDisplayed)) {
1006
+ if (!shallowEqual(currentlyDisplayed, this._currentlyDisplayed)) {
1007
1007
  this._currentlyDisplayed = currentlyDisplayed;
1008
1008
  this._buildDayViewGrid();
1009
1009
  }