@opengeoweb/core 4.15.0 → 4.16.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 +256 -96
- package/index.umd.js +250 -71
- package/lib/components/RouterWrapper/NavigateSetter.d.ts +1 -0
- package/lib/components/RouterWrapper/NavigateSetter.spec.d.ts +1 -0
- package/lib/components/RouterWrapper/RouterWrapperConnect.d.ts +6 -0
- package/lib/components/RouterWrapper/RouterWrapperConnect.spec.d.ts +1 -0
- package/lib/components/RouterWrapper/index.d.ts +1 -0
- package/lib/index.d.ts +3 -2
- package/lib/store/index.d.ts +1 -0
- package/lib/store/router/config.d.ts +5 -0
- package/lib/store/router/index.d.ts +1 -0
- package/lib/store/router/reducer.d.ts +8 -0
- package/lib/store/router/reducer.spec.d.ts +1 -0
- package/lib/store/router/sagas.d.ts +5 -0
- package/lib/store/router/sagas.spec.d.ts +1 -0
- package/lib/store/router/types.d.ts +8 -0
- package/lib/store/router/utils.d.ts +3 -0
- package/package.json +7 -6
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { mapSelectors, uiActions, uiSelectors, layerActions, genericActions, snackbarActions, appActions, layerSelectors } from './store';
|
|
1
|
+
import { mapSelectors, uiActions, uiSelectors, layerActions, genericActions, snackbarActions, routerActions, appActions, layerSelectors } from './store';
|
|
2
2
|
import * as mapTypes from './store/mapStore/types';
|
|
3
3
|
import * as layerTypes from './store/mapStore/layers/types';
|
|
4
4
|
import * as mapUtils from './store/mapStore/map/utils';
|
|
@@ -74,7 +74,7 @@ export declare const mapActions: {
|
|
|
74
74
|
onUpdateLayerInformation: import("@reduxjs/toolkit").ActionCreatorWithPayload<mapTypes.UpdateLayerInfoPayload, string>;
|
|
75
75
|
setSelectedFeature: import("@reduxjs/toolkit").ActionCreatorWithPayload<mapTypes.SetSelectedFeaturePayload, string>;
|
|
76
76
|
};
|
|
77
|
-
export { mapSelectors, mapTypes, mapUtils, layerTypes, layerReducer, layerActions, uiActions, uiSelectors, uiTypes, genericActions as syncGroupActions, snackbarActions, appActions, layerSelectors, };
|
|
77
|
+
export { mapSelectors, mapTypes, mapUtils, layerTypes, layerReducer, layerActions, uiActions, uiSelectors, uiTypes, genericActions as syncGroupActions, snackbarActions, appActions, layerSelectors, routerActions, };
|
|
78
78
|
export { synchronizationGroupConfig as synchronizationGroupModuleConfig };
|
|
79
79
|
export * from './components/ComponentsLookUp';
|
|
80
80
|
export * from './components/ConfigurableMap';
|
|
@@ -94,6 +94,7 @@ export * from './utils/types';
|
|
|
94
94
|
export * as defaultConfigurations from './utils/defaultConfigurations';
|
|
95
95
|
export * from './components/Providers/Providers';
|
|
96
96
|
export * from './components/Snackbar';
|
|
97
|
+
export * from './components/RouterWrapper';
|
|
97
98
|
export * from './components/AppWrapper';
|
|
98
99
|
export { default as uiModuleConfig } from './store/ui/config';
|
|
99
100
|
export { default as mapModuleConfig } from './store/mapStore/config';
|
package/lib/store/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { routerActions } from './reducer';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
+
import { NavigateToUrlPayload } from './types';
|
|
3
|
+
export declare const initialState: {};
|
|
4
|
+
export declare const reducer: import("redux").Reducer<{}, import("redux").AnyAction>;
|
|
5
|
+
export declare const routerActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
6
|
+
navigateToUrl: (draft: import("immer/dist/internal").WritableDraft<{}>, action: PayloadAction<NavigateToUrlPayload>) => void;
|
|
7
|
+
}>;
|
|
8
|
+
export declare type RouterActions = ReturnType<typeof routerActions.navigateToUrl>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.16.0",
|
|
4
4
|
"description": "GeoWeb Core library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"dependencies": {},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"react": "^18.2.0",
|
|
16
|
-
"@opengeoweb/shared": "4.
|
|
16
|
+
"@opengeoweb/shared": "4.16.0",
|
|
17
17
|
"@mui/material": "^5.10.8",
|
|
18
|
-
"@opengeoweb/theme": "4.
|
|
18
|
+
"@opengeoweb/theme": "4.16.0",
|
|
19
19
|
"react-draggable": "^4.4.5",
|
|
20
20
|
"re-resizable": "^6.9.0",
|
|
21
21
|
"@redux-eggs/core": "^2.2.0",
|
|
@@ -24,22 +24,23 @@
|
|
|
24
24
|
"axios": "^0.25.0",
|
|
25
25
|
"date-fns": "^2.29.3",
|
|
26
26
|
"moment": "^2.29.0",
|
|
27
|
-
"@opengeoweb/webmap": "4.
|
|
27
|
+
"@opengeoweb/webmap": "4.16.0",
|
|
28
28
|
"throttle-debounce": "^3.0.1",
|
|
29
29
|
"proj4": "^2.6.2",
|
|
30
|
-
"@opengeoweb/api": "4.
|
|
30
|
+
"@opengeoweb/api": "4.16.0",
|
|
31
31
|
"react-intl": "^5.17.5",
|
|
32
32
|
"react-sortablejs": "^6.1.4",
|
|
33
33
|
"sortablejs": "^1.15.0",
|
|
34
34
|
"immer": "^9.0.15",
|
|
35
35
|
"react-window": "^1.8.7",
|
|
36
|
-
"@opengeoweb/form-fields": "4.
|
|
36
|
+
"@opengeoweb/form-fields": "4.16.0",
|
|
37
37
|
"react-hook-form": "^7.41.5",
|
|
38
38
|
"moment-timezone": "^0.5.31",
|
|
39
39
|
"@mui/x-date-pickers": "^5.0.4",
|
|
40
40
|
"@reduxjs/toolkit": "^1.8.3",
|
|
41
41
|
"lodash.clonedeep": "^4.5.0",
|
|
42
42
|
"@turf/turf": "^5.1.6",
|
|
43
|
+
"react-router-dom": "^6.4.2",
|
|
43
44
|
"@mui/system": "^5.10.8",
|
|
44
45
|
"redux-saga": "^1.2.1",
|
|
45
46
|
"@redux-eggs/redux-toolkit": "^2.2.0",
|