@provoly/dashboard 1.2.3 → 1.2.5

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.
Files changed (25) hide show
  1. package/esm2022/components/data-format/data-format.pipe.mjs +2 -2
  2. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +3 -3
  3. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +6 -3
  4. package/esm2022/presentation/components/presentation.component.mjs +6 -3
  5. package/esm2022/toolbox/components/toolbox.component.mjs +2 -6
  6. package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +3 -3
  7. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +3 -3
  8. package/fesm2022/provoly-dashboard-components-data-format.mjs +1 -1
  9. package/fesm2022/provoly-dashboard-components-data-format.mjs.map +1 -1
  10. package/fesm2022/provoly-dashboard-presentation.mjs +10 -4
  11. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  12. package/fesm2022/provoly-dashboard-toolbox.mjs +1 -5
  13. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  14. package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs +2 -2
  15. package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
  16. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +2 -2
  17. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  18. package/fesm2022/provoly-dashboard.mjs +2 -2
  19. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  20. package/package.json +37 -37
  21. package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +2 -1
  22. package/presentation/components/presentation.component.d.ts +2 -1
  23. package/styles/components/_o-widget.scss +1 -1
  24. package/styles-theme/components-theme/_o-widget.theme.scss +4 -1
  25. package/widgets/widget-analytic/component/widget-analytic.component.d.ts +1 -1
@@ -12,7 +12,7 @@ import * as i1$3 from '@ngrx/effects';
12
12
  import { createEffect, ofType, EffectsModule } from '@ngrx/effects';
13
13
  import * as i1 from '@ngrx/store';
14
14
  import { createAction, props, createReducer, on, createFeatureSelector, createSelector, StoreModule } from '@ngrx/store';
15
- import { of, Subscription, filter, combineLatest, debounceTime, BehaviorSubject, map, Subject, mergeMap, from as from$1, forkJoin, catchError as catchError$1, throwError, switchMap, tap as tap$1, withLatestFrom as withLatestFrom$1, share, merge, combineLatestWith, distinctUntilChanged as distinctUntilChanged$1, startWith, delay, fromEvent, auditTime, ReplaySubject, interval } from 'rxjs';
15
+ import { of, Subscription, filter, combineLatest, debounceTime, BehaviorSubject, map, Subject, windowTime, switchMap, mergeMap, from as from$1, forkJoin, catchError as catchError$1, throwError, tap as tap$1, withLatestFrom as withLatestFrom$1, share, merge, combineLatestWith, distinctUntilChanged as distinctUntilChanged$1, startWith, delay, fromEvent, auditTime, ReplaySubject, interval } from 'rxjs';
16
16
  import * as i3$1 from '@angular/platform-browser';
17
17
  import { Style, Icon } from 'ol/style';
18
18
  import { createEntityAdapter } from '@ngrx/entity';
@@ -1865,7 +1865,7 @@ class PrySnackbarService {
1865
1865
  this.messageEvents$.next(pryMessage);
1866
1866
  }, false);
1867
1867
  this.messageEvents$
1868
- .pipe(distinctUntilChanged((p, v) => equal(p, v)))
1868
+ .pipe(windowTime(1000), switchMap((source) => source.pipe(distinctUntilChanged((p, v) => equal(p, v)))))
1869
1869
  .subscribe((message) => this.notMitigatedOpen(message));
1870
1870
  }
1871
1871
  setRootViewContainerRef(viewContainerRef) {