@eui/core 19.0.1 → 19.0.2-snapshot-1734361039271

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,7 +7,7 @@ import * as extendProxy from 'extend';
7
7
  import { isPlatformBrowser, LOCATION_INITIALIZED, DOCUMENT, isPlatformServer, getLocaleId, registerLocaleData } from '@angular/common';
8
8
  import { filter, debounceTime, distinctUntilChanged, tap, take, map, switchMap, catchError, concatMap, takeUntil } from 'rxjs/operators';
9
9
  import { toObservable } from '@angular/core/rxjs-interop';
10
- import isEqual from 'lodash/isEqual';
10
+ import { isEqual, get } from 'lodash-es';
11
11
  import { of, forkJoin, from, Subject, BehaviorSubject, defer, firstValueFrom } from 'rxjs';
12
12
  import { DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core';
13
13
  import { MomentDateAdapter } from '@angular/material-moment-adapter';
@@ -21,8 +21,6 @@ import { TranslateLoader } from '@ngx-translate/core';
21
21
  import { By } from '@angular/platform-browser';
22
22
  import { FormGroup, FormArray } from '@angular/forms';
23
23
  import { DomPortalOutlet, ComponentPortal, PortalInjector } from '@angular/cdk/portal';
24
- import isEqual$1 from 'lodash-es/isEqual';
25
- import get from 'lodash-es/get';
26
24
  import * as lf from 'localforage';
27
25
  import localeFr from '@angular/common/locales/fr';
28
26
  import localeEl from '@angular/common/locales/el';
@@ -3177,7 +3175,7 @@ class EuiAppShellService {
3177
3175
  key
3178
3176
  ? this.state$.pipe(map((state) => get(state, key)),
3179
3177
  // filter((state) => state),
3180
- distinctUntilChanged((x, y) => isEqual$1(x, y)))
3178
+ distinctUntilChanged((x, y) => isEqual(x, y)))
3181
3179
  : this.state$);
3182
3180
  }
3183
3181
  sidebarToggle() {