@opengeoweb/core 2.1.2 → 2.1.3
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/core.esm.js +1469 -452
- package/core.umd.js +1674 -542
- package/lib/components/ConfigurableConnectedMap/ConfigurableConnectedMap.d.ts +1 -0
- package/lib/components/ConfigurableMapWithSlider/ConfigurableMapWithSliderConnect.d.ts +1 -0
- package/lib/components/CustomSwitch/CustomSwitch.d.ts +1 -1
- package/lib/components/LayerManager/LayerSelect/KeywordFilterButton/KeywordFilterButtonConnect.d.ts +8 -0
- package/lib/components/LayerManager/LayerSelect/KeywordFilterButton/{KeywordFilterButton.spec.d.ts → KeywordFilterButtonConnect.spec.d.ts} +0 -0
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResults.d.ts +10 -5
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResults.stories.d.ts +13 -0
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResultsConnect.d.ts +5 -1
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResultsListItem.d.ts +1 -1
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerList.d.ts +9 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerList.spec.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListConnect.d.ts +6 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListConnect.spec.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/SearchField/SearchField.d.ts +5 -1
- package/lib/components/LayerManager/LayerSelect/SearchField/SearchFieldButtonContainer.d.ts +8 -0
- package/lib/components/LayerManager/LayerSelect/SearchField/SearchFieldButtonContainer.spec.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/SearchField/SearchFieldConnect.d.ts +3 -0
- package/lib/components/LayerManager/LayerSelect/SearchField/SearchFieldConnect.spec.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialog.d.ts +6 -0
- package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialog.spec.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/ServiceOptionsDialog/ServiceOptionsDialog.stories.d.ts +13 -0
- package/lib/components/LayerManager/LayerSelect/ServicePopup/ServicePopup.d.ts +3 -0
- package/lib/components/Legend/LegendConnect.d.ts +3 -0
- package/lib/components/Legend/LegendDialog.d.ts +2 -0
- package/lib/components/Legend/LegendMapButtonConnect.d.ts +2 -0
- package/lib/components/MultiMapDimensionSelect/DimensionSelectButtonConnect.d.ts +2 -0
- package/lib/components/MultiMapDimensionSelect/DimensionSelectDialogConnect.d.ts +2 -0
- package/lib/components/MultiMapDimensionSelect/MultiDimensionSelectMapButtonsConnect.d.ts +2 -0
- package/lib/components/MultiMapView/MultiMapView.stories.d.ts +2 -0
- package/lib/components/MultiMapView/MultiMapView10x10.stories.d.ts +2 -0
- package/lib/components/ReactMapView/ReactMapView.d.ts +0 -1
- package/lib/components/ReactMapView/ReactMapViewParseLayer.d.ts +1 -1
- package/lib/components/ReactMapView/types.d.ts +0 -1
- package/lib/components/TimeSlider/TimeSliderUtils.d.ts +1 -1
- package/lib/store/coreModuleConfig.d.ts +1 -1
- package/lib/store/layerSelect/actions.d.ts +8 -1
- package/lib/store/layerSelect/config.d.ts +2 -2
- package/lib/store/layerSelect/constants.d.ts +1 -0
- package/lib/store/layerSelect/sagas.d.ts +5 -0
- package/lib/store/layerSelect/sagas.spec.d.ts +1 -0
- package/lib/store/layerSelect/selectors.d.ts +3 -1
- package/lib/store/layerSelect/types.d.ts +18 -2
- package/lib/store/mapStore/map/selectors.d.ts +1 -1
- package/lib/store/mapStore/service/selectors.d.ts +0 -8
- package/lib/store/mapStore/service/types.d.ts +1 -0
- package/lib/store/ui/actions.d.ts +2 -2
- package/lib/store/ui/types.d.ts +2 -1
- package/lib/storybookUtils/HelperComponents.d.ts +1 -1
- package/lib/utils/defaultTestSettings.d.ts +11 -2
- package/lib/utils/testUtils.d.ts +2 -2
- package/package.json +5 -5
- package/lib/components/LayerManager/LayerSelect/KeywordFilterButton/KeywordFilterButton.d.ts +0 -3
- package/lib/components/LayerManager/LayerSelect/KeywordFilterButton/KeywordFilterButton.stories.d.ts +0 -7
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResultsConnect.stories.d.ts +0 -7
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/mockServices.d.ts +0 -42
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
export declare const mockServices: {
|
|
2
|
-
services: {
|
|
3
|
-
byId: {
|
|
4
|
-
'https://public-wms.met.no/verportal/verportal.map?': {
|
|
5
|
-
layers: {
|
|
6
|
-
name: string;
|
|
7
|
-
text: string;
|
|
8
|
-
leaf: boolean;
|
|
9
|
-
path: string;
|
|
10
|
-
keywords: any[];
|
|
11
|
-
}[];
|
|
12
|
-
};
|
|
13
|
-
'https://geoservices.knmi.nl/wms?dataset=RADAR&': {
|
|
14
|
-
layers: {
|
|
15
|
-
name: string;
|
|
16
|
-
text: string;
|
|
17
|
-
leaf: boolean;
|
|
18
|
-
path: string;
|
|
19
|
-
keywords: any[];
|
|
20
|
-
}[];
|
|
21
|
-
};
|
|
22
|
-
'https://openwms.fmi.fi/geoserver/wms?': {
|
|
23
|
-
layers: ({
|
|
24
|
-
name: string;
|
|
25
|
-
text: string;
|
|
26
|
-
leaf: boolean;
|
|
27
|
-
path: string;
|
|
28
|
-
keywords: string[];
|
|
29
|
-
abstract: string;
|
|
30
|
-
} | {
|
|
31
|
-
name: string;
|
|
32
|
-
text: string;
|
|
33
|
-
leaf: boolean;
|
|
34
|
-
path: string;
|
|
35
|
-
keywords: string[];
|
|
36
|
-
abstract?: undefined;
|
|
37
|
-
})[];
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
allIds: string[];
|
|
41
|
-
};
|
|
42
|
-
};
|