@opengeoweb/core 5.2.0 → 5.2.1
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/package.json +6 -6
- package/src/lib/{utils/__mocks__/getCapabilities.d.ts → store/getCapabilities/mocks/mockGetCapabilities.d.ts} +3 -3
- package/src/lib/store/mapStore/storeTestSettings.d.ts +3 -1
- package/src/lib/utils/defaultTestSettings.d.ts +1 -3
- /package/src/lib/{utils → store/getCapabilities}/getCapabilities.d.ts +0 -0
- /package/src/lib/{utils → store/getCapabilities}/getCapabilities.spec.d.ts +0 -0
- /package/src/lib/{utils/__mocks__ → store/getCapabilities/mocks}/WMS111GetCapabilitiesGeoServicesRADAR.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/core",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "GeoWeb Core library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@mui/material": "5.12.0",
|
|
17
17
|
"@mui/system": "5.12.0",
|
|
18
|
-
"@opengeoweb/api": "5.2.
|
|
19
|
-
"@opengeoweb/form-fields": "5.2.
|
|
20
|
-
"@opengeoweb/shared": "5.2.
|
|
21
|
-
"@opengeoweb/theme": "5.2.
|
|
22
|
-
"@opengeoweb/webmap": "5.2.
|
|
18
|
+
"@opengeoweb/api": "5.2.1",
|
|
19
|
+
"@opengeoweb/form-fields": "5.2.1",
|
|
20
|
+
"@opengeoweb/shared": "5.2.1",
|
|
21
|
+
"@opengeoweb/theme": "5.2.1",
|
|
22
|
+
"@opengeoweb/webmap": "5.2.1",
|
|
23
23
|
"@redux-eggs/core": "2.2.0",
|
|
24
24
|
"@redux-eggs/redux-toolkit": "2.2.0",
|
|
25
25
|
"@redux-eggs/saga-extension": "2.2.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LayerTree } from '@opengeoweb/webmap';
|
|
2
|
-
import { serviceTypes } from '../../
|
|
2
|
+
import { serviceTypes } from '../../mapStore';
|
|
3
3
|
export declare const MOCK_URL_WITH_CHILDREN = "https://mockUrlWithChildren.nl";
|
|
4
4
|
export declare const MOCK_URL_NO_CHILDREN = "https://mockUrlNoChildren.nl";
|
|
5
5
|
export declare const MOCK_URL_WITH_NO_TITLE = "https://mockUrlWithNoTitle.nl";
|
|
@@ -84,5 +84,5 @@ export declare const mockLayersDefault2: {
|
|
|
84
84
|
path: never[];
|
|
85
85
|
children: never[];
|
|
86
86
|
};
|
|
87
|
-
export declare const
|
|
88
|
-
export declare const
|
|
87
|
+
export declare const mockGetLayersFromService: (url: string) => Promise<LayerTree>;
|
|
88
|
+
export declare const mockGetLayersFlattenedFromService: (url: string) => Promise<serviceTypes.ServiceLayer[]>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LayerOptions, Style, WMLayer } from '@opengeoweb/webmap';
|
|
1
|
+
import { CoordinateReferenceSystem, LayerOptions, Style, WMLayer } from '@opengeoweb/webmap';
|
|
2
2
|
import { serviceTypes } from '..';
|
|
3
3
|
export declare const WmMultiDimensionLayer: WMLayer;
|
|
4
4
|
export declare const layerWithoutTimeDimension: LayerOptions;
|
|
@@ -6,3 +6,5 @@ export declare const WmLayerWithoutTimeDimension: WMLayer;
|
|
|
6
6
|
export declare const styleListForRADNLOPERR25PCPRRL3KNMILayer: Style[];
|
|
7
7
|
export declare const defaultReduxServices: serviceTypes.Services;
|
|
8
8
|
export declare const WmMultiDimensionLayer2: WMLayer;
|
|
9
|
+
export declare const styleListForRADNL25PCPCMLayer: Style[];
|
|
10
|
+
export declare const crsListForRADNL25PCPCMLayer: CoordinateReferenceSystem[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { WMLayer } from '@opengeoweb/webmap';
|
|
2
2
|
import { layerTypes, serviceTypes, layerSelectTypes } from '../store';
|
|
3
3
|
export declare const defaultReduxLayerRadarColor: {
|
|
4
4
|
service: string;
|
|
@@ -40,8 +40,6 @@ export declare const defaultReduxLayerRadarKNMI: {
|
|
|
40
40
|
};
|
|
41
41
|
export declare const WmdefaultReduxLayerRadarKNMI: WMLayer;
|
|
42
42
|
export declare const makeGeoservicesRadarLayer: () => WMLayer;
|
|
43
|
-
export declare const styleListForRADNL25PCPCMLayer: Style[];
|
|
44
|
-
export declare const crsListForRADNL25PCPCMLayer: CoordinateReferenceSystem[];
|
|
45
43
|
export declare const defaultReduxActiveLayers: layerSelectTypes.ActiveLayerObject[];
|
|
46
44
|
export declare const defaultReduxActiveLayersWithoutOptionalVariables: layerSelectTypes.ActiveLayerObject[];
|
|
47
45
|
export declare const multiDimensionLayer: layerTypes.Layer;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|