@opengeoweb/core 4.10.0 → 4.11.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.
Files changed (58) hide show
  1. package/index.esm.js +3 -3
  2. package/index.umd.js +3 -3
  3. package/lib/components/CanvasComponent/CanvasComponentDynamic.stories.d.ts +4 -0
  4. package/lib/components/CanvasComponent/CanvasComponentStatic.stories.d.ts +4 -0
  5. package/lib/components/LanguageSelect/DemoLanguages.stories.d.ts +4 -0
  6. package/lib/components/LanguageSelect/Languages.stories.d.ts +5 -0
  7. package/lib/components/LayerManager/LayerManager.stories.d.ts +4 -0
  8. package/lib/components/LayerManager/LayerManagerConnect.stories.d.ts +4 -0
  9. package/lib/components/LayerManager/LayerSelect/LayerSelect.stories.d.ts +4 -0
  10. package/lib/components/LayerManager/LayerSelect/LayerSelectConnect.stories.d.ts +4 -0
  11. package/lib/components/Legend/Legend.stories.d.ts +4 -0
  12. package/lib/components/Legend/LegendConnect.stories.d.ts +4 -0
  13. package/lib/components/MapView/MapView.Error.stories.d.ts +5 -0
  14. package/lib/components/MapView/MapView.MapPin.stories.d.ts +5 -0
  15. package/lib/components/MapView/MapView.Passive.stories.d.ts +5 -0
  16. package/lib/components/MapView/MapView.RadarAnimation.stories.d.ts +5 -0
  17. package/lib/components/MapView/MapView.RadarData.stories.d.ts +5 -0
  18. package/lib/components/MapView/MapView.SetProjectionBBox.stories.d.ts +5 -0
  19. package/lib/components/MapView/MapView.SetProjectionBBoxLocalState.stories.d.ts +5 -0
  20. package/lib/components/MapView/MapView.ShowLayerInfo.stories.d.ts +5 -0
  21. package/lib/components/MapView/MapViewConnect.DoubleMap.stories.d.ts +5 -0
  22. package/lib/components/MapView/MapViewConnect.Errors.stories.d.ts +5 -0
  23. package/lib/components/MapView/MapViewConnect.FeatureLayers.stories.d.ts +5 -0
  24. package/lib/components/MapView/MapViewConnect.InitialBBoxAndWithout.stories.d.ts +5 -0
  25. package/lib/components/MapView/MapViewConnect.LayerActions.stories.d.ts +5 -0
  26. package/lib/components/MapView/MapViewConnect.LayerChangeEnabledOpacity.stories.d.ts +5 -0
  27. package/lib/components/MapView/MapViewConnect.MapModuleOverDefaultMap.stories.d.ts +5 -0
  28. package/lib/components/MapView/MapViewConnect.MapPin.stories.d.ts +5 -0
  29. package/lib/components/MapView/MapViewConnect.SelectorTest.stories.d.ts +6 -0
  30. package/lib/components/MapView/MapViewConnect.SetBaseLayers.stories.d.ts +5 -0
  31. package/lib/components/MapView/MapViewConnect.ToggleControls.stories.d.ts +5 -0
  32. package/lib/components/MapWarning/MapWarningProperties.d.ts +1 -1
  33. package/lib/components/MultiMapDimensionSelect/DimensionSelectDialogConnect.stories.d.ts +4 -0
  34. package/lib/components/MultiMapDimensionSelect/EnsembleDimensionExample.stories.d.ts +4 -0
  35. package/lib/components/MultiMapDimensionSelect/MultiDimensionSelectConnect.stories.d.ts +4 -0
  36. package/lib/components/MultiMapDimensionSelect/MultiMapMultiDimensionSelect.stories.d.ts +4 -0
  37. package/lib/components/SyncGroups/SyncGroups.SyncMany.stories.d.ts +4 -0
  38. package/lib/components/SyncGroups/SyncGroups.SyncMaps.stories.d.ts +4 -0
  39. package/lib/components/TimeSlider/TimeSliderButtons/AnimationLengthButton/AnimationLengthButton.d.ts +1 -0
  40. package/lib/components/TimeSlider/TimeSliderButtons/BackwardForwardStepButton/BackwardForwardStepButtonConnect.d.ts +1 -0
  41. package/lib/components/TimeSlider/TimeSliderButtons/OptionsMenuButton/OptionsMenuButton.stories.d.ts +1 -0
  42. package/lib/components/TimeSlider/TimeSliderButtons/SpeedButton/SpeedButtonConnect.d.ts +1 -0
  43. package/lib/components/TimeSlider/TimeSliderButtons/TimeScaleButton/TimeScaleButton.d.ts +1 -0
  44. package/lib/components/TimeSlider/TimeSliderButtons/TimeScaleButton/TimeScaleButtonConnect.d.ts +1 -0
  45. package/lib/components/TimeSlider/TimeSliderButtons/TimeSliderMenu/TimeSliderMenu.stories.d.ts +1 -0
  46. package/lib/components/TimeSlider/TimeSliderButtons/TimeStepButton/TimeStepButton.stories.d.ts +1 -0
  47. package/lib/components/TimeSlider/TimeSliderClock/TimeSliderClock.stories.d.ts +1 -0
  48. package/lib/utils/defaultTestSettings.d.ts +2 -1
  49. package/package.json +6 -6
  50. package/lib/components/CanvasComponent/CanvasComponentStories.stories.d.ts +0 -6
  51. package/lib/components/LanguageSelect/LanguageSelectStories.stories.d.ts +0 -6
  52. package/lib/components/LayerManager/LayerManagerStories.stories.d.ts +0 -6
  53. package/lib/components/LayerManager/LayerSelect/LayerSelectStories.stories.d.ts +0 -6
  54. package/lib/components/Legend/LegendStories.stories.d.ts +0 -6
  55. package/lib/components/MapView/MapView.stories.d.ts +0 -14
  56. package/lib/components/MapView/MapViewConnect.stories.d.ts +0 -17
  57. package/lib/components/MultiMapDimensionSelect/MultiDimensionSelect.stories.d.ts +0 -8
  58. package/lib/components/SyncGroups/SyncGroups.stories.d.ts +0 -6
package/index.esm.js CHANGED
@@ -13361,14 +13361,14 @@ var getDimensionValue = function getDimensionValue(name, dimensions) {
13361
13361
  return dimension.name.toLowerCase() === name.toLowerCase();
13362
13362
  });
13363
13363
 
13364
- if (!dimension || !dimension.currentValue) {
13364
+ if (!dimension || !dimension.values) {
13365
13365
  return null;
13366
13366
  }
13367
13367
 
13368
13368
  var dimName = dimension.name.toLowerCase();
13369
13369
  var breakAt = dimName === 'time' ? '/' : ',';
13370
13370
  var includeUnit = dimName !== 'time' && dimName !== 'reference_time';
13371
- var dimValue = dimension.currentValue.split(breakAt).join("".concat(breakAt, " "));
13371
+ var dimValue = dimension.values.split(breakAt).join("".concat(breakAt, " "));
13372
13372
 
13373
13373
  if (includeUnit) {
13374
13374
  return "".concat(dimValue, " ").concat(dimension.units);
@@ -26417,7 +26417,7 @@ var MapWarningProperties = function MapWarningProperties(_ref) {
26417
26417
  }
26418
26418
  }, /*#__PURE__*/React__default.createElement("h1", {
26419
26419
  "data-testid": "map-warning-properties-title"
26420
- }, selectedFeatureProperties.areaDesc), selectedFeatureProperties.areaDesc && /*#__PURE__*/React__default.createElement("pre", {
26420
+ }, selectedFeatureProperties.languages[language].areaDesc), selectedFeatureProperties.languages[language].areaDesc && /*#__PURE__*/React__default.createElement("pre", {
26421
26421
  "data-testid": "map-warning-properties-row"
26422
26422
  }, "event: ", selectedFeatureProperties.languages[language].event), selectedFeatureProperties.onset && /*#__PURE__*/React__default.createElement("pre", {
26423
26423
  "data-testid": "map-warning-properties-row"
package/index.umd.js CHANGED
@@ -13905,14 +13905,14 @@
13905
13905
  return dimension.name.toLowerCase() === name.toLowerCase();
13906
13906
  });
13907
13907
 
13908
- if (!dimension || !dimension.currentValue) {
13908
+ if (!dimension || !dimension.values) {
13909
13909
  return null;
13910
13910
  }
13911
13911
 
13912
13912
  var dimName = dimension.name.toLowerCase();
13913
13913
  var breakAt = dimName === 'time' ? '/' : ',';
13914
13914
  var includeUnit = dimName !== 'time' && dimName !== 'reference_time';
13915
- var dimValue = dimension.currentValue.split(breakAt).join(breakAt + " ");
13915
+ var dimValue = dimension.values.split(breakAt).join(breakAt + " ");
13916
13916
 
13917
13917
  if (includeUnit) {
13918
13918
  return dimValue + " " + dimension.units;
@@ -27373,7 +27373,7 @@
27373
27373
  }
27374
27374
  }, /*#__PURE__*/React__default["default"].createElement("h1", {
27375
27375
  "data-testid": "map-warning-properties-title"
27376
- }, selectedFeatureProperties.areaDesc), selectedFeatureProperties.areaDesc && /*#__PURE__*/React__default["default"].createElement("pre", {
27376
+ }, selectedFeatureProperties.languages[language].areaDesc), selectedFeatureProperties.languages[language].areaDesc && /*#__PURE__*/React__default["default"].createElement("pre", {
27377
27377
  "data-testid": "map-warning-properties-row"
27378
27378
  }, "event: ", selectedFeatureProperties.languages[language].event), selectedFeatureProperties.onset && /*#__PURE__*/React__default["default"].createElement("pre", {
27379
27379
  "data-testid": "map-warning-properties-row"
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const DynamicCanvas: React.FC;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const StaticCanvas: React.FC;
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const DemoLanguages: {
3
7
  (): React.ReactElement;
4
8
  parameters: {
@@ -1,3 +1,8 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
1
6
  export declare const Languages: {
2
7
  (): JSX.Element;
3
8
  parameters: {
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const LayerManagerLightTheme: {
3
7
  (): React.ReactElement;
4
8
  parameters: {
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const LayerManagerConnectLightTheme: {
3
7
  (): React.ReactElement;
4
8
  parameters: {
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const LayerSelectDemoLightTheme: {
3
7
  (): React.ReactElement;
4
8
  storyName: string;
@@ -1,3 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const MapWithLayerSelectDemoLightTheme: React.FC;
3
7
  export declare const MapWithLayerSelectDemoDarkTheme: React.FC;
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const SimpleLegend: () => React.ReactElement;
3
7
  export declare const SimpleLegendWithMultiDimensions: () => React.ReactElement;
4
8
  export declare const SimpleLegendWithoutDimensionsOrGraphic: () => React.ReactElement;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const LegendConnectStoryWithMultiMaps: () => React.ReactElement;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapError: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const SetMapPin: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const PassiveMap: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const RadarAnimation: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapViewRadar: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const SetProjectionBBox: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const SetProjectionBBoxLocalState: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./types").MapViewProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapWithShowLayerInfoEnabled: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const DoubleMap: React.FC;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapError: () => React.ReactElement;
@@ -1,2 +1,7 @@
1
1
  import React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const FeatureLayers: () => React.ReactElement;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapWithAndWithoutInitialBBOX: React.FC;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const LayerActions: () => React.ReactElement;
@@ -1,6 +1,11 @@
1
1
  import * as React from 'react';
2
2
  import { layerActions } from '../../store';
3
3
  import { Layer } from '../../store/mapStore/types';
4
+ declare const _default: {
5
+ title: string;
6
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
7
+ };
8
+ export default _default;
4
9
  export interface LayerChangeOpacityInputProps {
5
10
  mapId: string;
6
11
  layerChangeOpacity?: typeof layerActions.layerChangeOpacity;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapModuleOverDefaultMap: () => React.ReactElement;
@@ -1,4 +1,9 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const SetMapPinAction: {
3
8
  (): React.ReactElement;
4
9
  storyName: string;
@@ -1,2 +1,8 @@
1
1
  import * as React from 'react';
2
+ import { MapViewConnectProps } from './MapViewConnect';
3
+ declare const _default: {
4
+ title: string;
5
+ component: React.FC<MapViewConnectProps>;
6
+ };
7
+ export default _default;
2
8
  export declare const SelectorTests: () => React.ReactElement;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const SetBaseLayersAction: React.FC;
@@ -1,2 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ component: React.FC<import("./MapViewConnect").MapViewConnectProps>;
5
+ };
6
+ export default _default;
2
7
  export declare const MapToggleControls: React.FC;
@@ -2,7 +2,6 @@ import React from 'react';
2
2
  interface WarningListProps {
3
3
  selectedFeatureProperties: {
4
4
  identifier?: string;
5
- areaDesc?: string;
6
5
  severity?: string;
7
6
  certainty?: string;
8
7
  onset?: string;
@@ -13,6 +12,7 @@ interface WarningListProps {
13
12
  parentSize?: number;
14
13
  }
15
14
  interface Language {
15
+ areaDesc: string;
16
16
  language: string;
17
17
  event: string;
18
18
  senderName: string;
@@ -1,4 +1,8 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const DimensionSelectElevationLight: {
3
7
  (): React.ReactElement;
4
8
  storyName: string;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const MultiDimensionDemo: React.FC;
@@ -1,3 +1,7 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const ElevationDimensionDemoWithLightTheme: React.FC;
3
7
  export declare const ElevationDimensionDemoWithDarkTheme: React.FC;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const MultiDimensionSelectStoryWithMultiMaps: () => React.ReactElement;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const SyncMany: () => React.ReactElement;
@@ -1,2 +1,6 @@
1
1
  import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
2
6
  export declare const SyncMaps: () => React.ReactElement;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { AnimationLength } from '../../../../store/mapStore/types';
2
3
  export declare const title = "Animation";
3
4
  interface AnimationLengthButtonProps {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface BackwardForwardStepButtonConnectProps {
2
3
  mapId: string;
3
4
  isForwardStep?: boolean;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface SpeedButtonConnectProps {
2
3
  mapId: string;
3
4
  }
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Layer, Scale } from '../../../../store/mapStore/types';
2
3
  interface TimeScaleButtonProps {
3
4
  layers?: Layer[];
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface TimeScaleButtonConnectProps {
2
3
  mapId: string;
3
4
  }
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: {
2
3
  title: string;
3
4
  };
@@ -1,4 +1,4 @@
1
- import { LayerOptions, Style, WMLayer } from '@opengeoweb/webmap';
1
+ import { CoordinateReferenceSystem, LayerOptions, Style, WMLayer } from '@opengeoweb/webmap';
2
2
  import { Service } from '../components/WMSLoader/services';
3
3
  import { ActiveLayerObject } from '../store/layerSelect/types';
4
4
  import { Layer, LayerType, Services } from '../store/mapStore/types';
@@ -43,6 +43,7 @@ export declare const defaultReduxLayerRadarKNMI: {
43
43
  export declare const WmdefaultReduxLayerRadarKNMI: WMLayer;
44
44
  export declare const makeGeoservicesRadarLayer: () => WMLayer;
45
45
  export declare const styleListForRADNL25PCPCMLayer: Style[];
46
+ export declare const crsListForRADNL25PCPCMLayer: CoordinateReferenceSystem[];
46
47
  export declare const styleListForRADNLOPERR25PCPRRL3KNMILayer: Style[];
47
48
  export declare const defaultReduxServices: Services;
48
49
  export declare const defaultReduxActiveLayers: ActiveLayerObject[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/core",
3
- "version": "4.10.0",
3
+ "version": "4.11.0",
4
4
  "description": "GeoWeb Core library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -13,14 +13,14 @@
13
13
  "dependencies": {},
14
14
  "peerDependencies": {
15
15
  "react": "^17.0.2",
16
- "@opengeoweb/shared": "4.10.0",
16
+ "@opengeoweb/shared": "4.11.0",
17
17
  "@mui/material": "^5.10.8",
18
- "@opengeoweb/theme": "4.10.0",
18
+ "@opengeoweb/theme": "4.11.0",
19
19
  "react-draggable": "^4.4.5",
20
20
  "re-resizable": "^6.9.0",
21
21
  "@redux-eggs/core": "^2.2.0",
22
22
  "react-redux": "^8.0.4",
23
- "@opengeoweb/form-fields": "4.10.0",
23
+ "@opengeoweb/form-fields": "4.11.0",
24
24
  "react-hook-form": "^7.41.5",
25
25
  "moment": "^2.29.0",
26
26
  "moment-timezone": "^0.5.31",
@@ -28,10 +28,10 @@
28
28
  "lodash": "^4.17.20",
29
29
  "axios": "^0.25.0",
30
30
  "date-fns": "^2.29.3",
31
- "@opengeoweb/webmap": "4.10.0",
31
+ "@opengeoweb/webmap": "4.11.0",
32
32
  "throttle-debounce": "^3.0.1",
33
33
  "proj4": "^2.6.2",
34
- "@opengeoweb/api": "4.10.0",
34
+ "@opengeoweb/api": "4.11.0",
35
35
  "react-intl": "^5.17.5",
36
36
  "react-sortablejs": "^6.1.4",
37
37
  "sortablejs": "^1.15.0",
@@ -1,6 +0,0 @@
1
- export * from './CanvasComponentDynamic.stories';
2
- export * from './CanvasComponentStatic.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;
@@ -1,6 +0,0 @@
1
- export * from './DemoLanguages.stories';
2
- export * from './Languages.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;
@@ -1,6 +0,0 @@
1
- export * from './LayerManager.stories';
2
- export * from './LayerManagerConnect.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;
@@ -1,6 +0,0 @@
1
- export * from './LayerSelect.stories';
2
- export * from './LayerSelectConnect.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;
@@ -1,6 +0,0 @@
1
- export * from './Legend.stories';
2
- export * from './LegendConnect.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;
@@ -1,14 +0,0 @@
1
- /// <reference types="react" />
2
- export * from './MapView.Error.stories';
3
- export * from './MapView.MapPin.stories';
4
- export * from './MapView.Passive.stories';
5
- export * from './MapView.RadarAnimation.stories';
6
- export * from './MapView.RadarData.stories';
7
- export * from './MapView.SetProjectionBBox.stories';
8
- export * from './MapView.SetProjectionBBoxLocalState.stories';
9
- export * from './MapView.ShowLayerInfo.stories';
10
- declare const _default: {
11
- title: string;
12
- component: import("react").FC<import("./types").MapViewProps>;
13
- };
14
- export default _default;
@@ -1,17 +0,0 @@
1
- /// <reference types="react" />
2
- export * from './MapViewConnect.MapModuleOverDefaultMap.stories';
3
- export * from './MapViewConnect.DoubleMap.stories';
4
- export * from './MapViewConnect.Errors.stories';
5
- export * from './MapViewConnect.InitialBBoxAndWithout.stories';
6
- export * from './MapViewConnect.LayerActions.stories';
7
- export * from './MapViewConnect.LayerChangeEnabledOpacity.stories';
8
- export * from './MapViewConnect.SetBaseLayers.stories';
9
- export * from './MapViewConnect.ToggleControls.stories';
10
- export * from './MapViewConnect.FeatureLayers.stories';
11
- export * from './MapViewConnect.MapPin.stories';
12
- export * from './MapViewConnect.SelectorTest.stories';
13
- declare const _default: {
14
- title: string;
15
- component: import("react").FC<import("./MapViewConnect").MapViewConnectProps>;
16
- };
17
- export default _default;
@@ -1,8 +0,0 @@
1
- export * from './MultiMapMultiDimensionSelect.stories';
2
- export * from './EnsembleDimensionExample.stories';
3
- export * from './MultiDimensionSelectConnect.stories';
4
- export * from './DimensionSelectDialogConnect.stories';
5
- declare const _default: {
6
- title: string;
7
- };
8
- export default _default;
@@ -1,6 +0,0 @@
1
- export * from './SyncGroups.SyncMany.stories';
2
- export * from './SyncGroups.SyncMaps.stories';
3
- declare const _default: {
4
- title: string;
5
- };
6
- export default _default;