@provoly/dashboard 1.2.4 → 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.
- package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +3 -3
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +6 -3
- package/esm2022/presentation/components/presentation.component.mjs +6 -3
- package/esm2022/toolbox/components/toolbox.component.mjs +2 -6
- package/fesm2022/provoly-dashboard-presentation.mjs +10 -4
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +1 -5
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +2 -2
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/package.json +7 -7
- package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +2 -1
- package/presentation/components/presentation.component.d.ts +2 -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,
|
|
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) {
|