@opengeoweb/store 9.22.0 → 9.24.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 +693 -646
- package/package.json +1 -1
- package/src/store/drawingtool/listener.d.ts +3 -0
- package/src/store/generic/listener.d.ts +2 -0
- package/src/store/generic/sagas.d.ts +1 -5
- package/src/store/generic/synchronizationGroups/listener.d.ts +2 -0
- package/src/store/index.d.ts +1 -1
- package/src/store/mapStore/layers/types.d.ts +1 -1
- package/src/store/mapStore/map/listener.d.ts +3 -0
- package/src/store/mapStore/map/listener.spec.d.ts +1 -0
- package/src/store/mapStore/map/sagas.d.ts +0 -3
- package/src/store/router/listener.d.ts +2 -0
- package/src/store/router/listener.spec.d.ts +1 -0
- package/src/store/router/types.d.ts +1 -3
- package/src/store/ui/types.d.ts +2 -1
- package/src/store/drawingtool/sagas.d.ts +0 -7
- package/src/store/generic/synchronizationGroups/sagas.d.ts +0 -8
- package/src/store/router/sagas.d.ts +0 -5
- /package/src/store/drawingtool/{sagas.spec.d.ts → listener.spec.d.ts} +0 -0
- /package/src/store/generic/{synchronizationGroups/sagas.spec.d.ts → listener.spec.d.ts} +0 -0
- /package/src/store/{router/sagas.spec.d.ts → generic/synchronizationGroups/listener.spec.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { DrawtoolModuleStore } from './reducer';
|
|
2
|
+
import { WebMapStateModuleState } from '../mapStore';
|
|
3
|
+
export declare const drawingToolListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<DrawtoolModuleStore & WebMapStateModuleState, import("@reduxjs/toolkit").ThunkDispatch<DrawtoolModuleStore & WebMapStateModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { SynchronizationGroupModuleState } from './synchronizationGroups/types';
|
|
2
|
+
export declare const genericListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("@reduxjs/toolkit").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").AnyAction>, unknown>;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import { SagaIterator } from 'redux-saga';
|
|
2
2
|
import { mapActions } from '../mapStore';
|
|
3
|
-
import {
|
|
4
|
-
import { layerActions, LayerActions } from '../mapStore/layers/reducer';
|
|
5
|
-
export declare function setTimeSaga({ payload, }: ReturnType<typeof setTime>): SagaIterator;
|
|
6
|
-
export declare function setBBoxSaga({ payload, }: ReturnType<typeof setBbox>): SagaIterator;
|
|
7
|
-
export declare function layerActionsSaga({ payload, type, }: LayerActions): SagaIterator;
|
|
3
|
+
import { layerActions } from '../mapStore/layers/reducer';
|
|
8
4
|
export declare function addLayerActionsSaga({ payload, type, }: ReturnType<typeof layerActions.addLayer>): SagaIterator;
|
|
9
5
|
export declare function duplicateMapLayerActionsSaga({ payload, }: ReturnType<typeof layerActions.duplicateMapLayer>): SagaIterator;
|
|
10
6
|
export declare function deleteLayerActionsSaga({ payload, type, }: ReturnType<typeof layerActions.layerDelete>): SagaIterator;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { SynchronizationGroupModuleState } from './types';
|
|
2
|
+
export declare const syncGroupsListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("@reduxjs/toolkit").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").AnyAction>, unknown>;
|
package/src/store/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from './mapStore';
|
|
2
2
|
export * from './ui';
|
|
3
3
|
export * from './generic';
|
|
4
|
-
export {
|
|
4
|
+
export { genericListener } from './generic/listener';
|
|
5
5
|
export * from './router';
|
|
6
6
|
export * from './drawingtool';
|
|
7
7
|
export * from './types';
|
|
@@ -14,7 +14,7 @@ export declare enum LayerActionOrigin {
|
|
|
14
14
|
wmsLoader = "WMSLayerTreeConnect",
|
|
15
15
|
ReactMapViewParseLayer = "ReactMapViewParseLayer",
|
|
16
16
|
setLayerDimensionSaga = "setLayerDimensionSaga",
|
|
17
|
-
|
|
17
|
+
toggleAutoUpdateListener = "toggleAutoUpdateListener",
|
|
18
18
|
unregisterMapSaga = "unregisterMapSaga"
|
|
19
19
|
}
|
|
20
20
|
export interface FeatureLayer {
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { AnyAction, ThunkDispatch } from '@reduxjs/toolkit';
|
|
2
|
+
import { WebMapStateModuleState } from '../types';
|
|
3
|
+
export declare const mapListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<WebMapStateModuleState, ThunkDispatch<WebMapStateModuleState, unknown, AnyAction>, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,12 +4,9 @@ import { layerActions } from '../layers';
|
|
|
4
4
|
import { Layer } from '../layers/types';
|
|
5
5
|
export declare const getAnimationEndTime: (animationEndTime: string) => string;
|
|
6
6
|
export declare const isAnimationEndTimeValid: (animationEndTime: string) => boolean;
|
|
7
|
-
export declare function startAnimationSaga({ payload, }: ReturnType<typeof mapActions.mapStartAnimation>): Generator;
|
|
8
|
-
export declare function stopAnimationSaga({ payload, }: ReturnType<typeof mapActions.mapStopAnimation>): Generator;
|
|
9
7
|
export declare function deleteLayerSaga({ payload, }: ReturnType<typeof layerActions.layerDelete>): SagaIterator;
|
|
10
8
|
export declare function updateAnimation(mapId: string, maxValue: string): SagaIterator;
|
|
11
9
|
export declare function setLayerDimensionsSaga({ payload, }: ReturnType<typeof layerActions.onUpdateLayerInformation>): SagaIterator;
|
|
12
|
-
export declare function toggleAutoUpdateSaga({ payload, }: ReturnType<typeof mapActions.toggleAutoUpdate>): SagaIterator;
|
|
13
10
|
export declare function handleBaseLayersSaga(mapId: string, baseLayers: Layer[]): SagaIterator;
|
|
14
11
|
export declare function setMapPresetSaga({ payload, }: ReturnType<typeof mapActions.setMapPreset>): SagaIterator;
|
|
15
12
|
export declare function unregisterMapSaga({ payload, }: ReturnType<typeof mapActions.unregisterMap>): Generator;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/src/store/ui/types.d.ts
CHANGED
|
@@ -16,7 +16,8 @@ export declare enum DialogTypes {
|
|
|
16
16
|
DockedLayerManager = "dockedLayerManager",
|
|
17
17
|
ObjectManager = "objectManager",
|
|
18
18
|
PublicWarnings = "publicWarnings",
|
|
19
|
-
Search = "search"
|
|
19
|
+
Search = "search",
|
|
20
|
+
AreaObjectLoader = "areaObjectLoader"
|
|
20
21
|
}
|
|
21
22
|
export type DialogType = DialogTypes | LegendDialogType | GetFeatureInfoDialogType;
|
|
22
23
|
export type { Source };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SagaIterator } from 'redux-saga';
|
|
2
|
-
import { drawtoolActions } from './reducer';
|
|
3
|
-
export declare function registerDrawToolSaga({ payload, }: ReturnType<typeof drawtoolActions.registerDrawTool>): SagaIterator;
|
|
4
|
-
export declare function changeDrawToolSaga({ payload, }: ReturnType<typeof drawtoolActions.changeDrawToolMode>): SagaIterator;
|
|
5
|
-
export declare function changeIntersectionSaga({ payload, }: ReturnType<typeof drawtoolActions.changeIntersectionBounds>): SagaIterator;
|
|
6
|
-
declare function drawingSaga(): SagaIterator;
|
|
7
|
-
export default drawingSaga;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { SagaIterator } from 'redux-saga';
|
|
2
|
-
import * as synchronizationGroupActions from './reducer';
|
|
3
|
-
export declare function updateSourceValueWhenLinkingComponentToGroupSaga(groupId: string, targetToUpdate: string): SagaIterator;
|
|
4
|
-
export declare function addGroupTargetSaga({ payload, }: ReturnType<typeof synchronizationGroupActions.syncGroupAddTarget>): SagaIterator;
|
|
5
|
-
export declare function linkGroupTargetSaga({ payload, }: ReturnType<typeof synchronizationGroupActions.syncGroupLinkTarget>): SagaIterator;
|
|
6
|
-
export declare function updateViewStateSaga(): SagaIterator;
|
|
7
|
-
declare function rootSaga(): SagaIterator;
|
|
8
|
-
export default rootSaga;
|
|
File without changes
|
|
File without changes
|
/package/src/store/{router/sagas.spec.d.ts → generic/synchronizationGroups/listener.spec.d.ts}
RENAMED
|
File without changes
|