@opengeoweb/store 12.2.0 → 12.3.0
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/index.esm.js +21 -16
- package/package.json +8 -8
- package/src/store/drawingTool/listener.d.ts +1 -1
- package/src/store/drawingTool/reducer.d.ts +2 -2
- package/src/store/drawingTool/selectors.d.ts +329 -25
- package/src/store/generic/listener.d.ts +1 -1
- package/src/store/generic/loadingIndicator/reducer.d.ts +10 -10
- package/src/store/generic/loadingIndicator/selectors.d.ts +252 -13
- package/src/store/generic/loadingIndicator/types.d.ts +1 -1
- package/src/store/generic/selectors.d.ts +309 -49
- package/src/store/generic/syncGroups/listener.d.ts +1 -1
- package/src/store/generic/syncGroups/reducer.d.ts +1 -1
- package/src/store/generic/syncGroups/selector.d.ts +19 -3
- package/src/store/generic/syncGroups/selectors.d.ts +241 -35
- package/src/store/map/layer/listeners.d.ts +1 -1
- package/src/store/map/layer/reducer.d.ts +1 -1
- package/src/store/map/layer/selectors.d.ts +1875 -145
- package/src/store/map/map/listener.d.ts +2 -2
- package/src/store/map/map/metronomeListener.d.ts +1 -1
- package/src/store/map/map/reducer.d.ts +1 -1
- package/src/store/map/map/selectors.d.ts +4166 -192
- package/src/store/map/service/listener.d.ts +4 -4
- package/src/store/map/service/selectors.d.ts +234 -18
- package/src/store/mapStore/openlayers/listener.d.ts +1 -1
- package/src/store/router/listener.d.ts +1 -1
- package/src/store/store.d.ts +5 -11
- package/src/store/ui/reducer.d.ts +1 -1
- package/src/store/ui/selectors.d.ts +191 -31
- package/src/store/unifyReducerMaps.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UnknownAction, ThunkDispatch } from '@reduxjs/toolkit';
|
|
2
2
|
import { WebMapStateModuleState } from '../types';
|
|
3
3
|
export declare const isAnimationEndTimeValid: (animationEndTime: string) => boolean;
|
|
4
|
-
export declare const mapListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<WebMapStateModuleState, ThunkDispatch<WebMapStateModuleState, unknown,
|
|
4
|
+
export declare const mapListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<WebMapStateModuleState, ThunkDispatch<WebMapStateModuleState, unknown, UnknownAction>, unknown>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CoreAppStore } from '../../types';
|
|
2
|
-
export declare const metronomeListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<CoreAppStore, import("
|
|
2
|
+
export declare const metronomeListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<CoreAppStore, import("redux-thunk").ThunkDispatch<CoreAppStore, unknown, import("redux").UnknownAction>, unknown>;
|
|
@@ -57,7 +57,7 @@ export declare const slice: import("@reduxjs/toolkit").Slice<WebMapState, {
|
|
|
57
57
|
error: string;
|
|
58
58
|
}>) => void;
|
|
59
59
|
setDefaultMapSettings: (draft: Draft<WebMapState>, action: PayloadAction<SetDefaultMapSettingsPayload>) => void;
|
|
60
|
-
}, "mapReducer"
|
|
60
|
+
}, "mapReducer", "mapReducer", import("@reduxjs/toolkit").SliceSelectors<WebMapState>>;
|
|
61
61
|
export declare const mapActions: {
|
|
62
62
|
setMapPreset: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapPresetPayload, string>;
|
|
63
63
|
mapChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("@opengeoweb/webmap-react").SetMapDimensionPayload, string>;
|