@opengeoweb/core 9.19.1 → 9.20.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/core",
3
- "version": "9.19.1",
3
+ "version": "9.20.1",
4
4
  "description": "GeoWeb Core library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -37,4 +37,4 @@
37
37
  "module": "./index.esm.js",
38
38
  "type": "module",
39
39
  "main": "./index.esm.js"
40
- }
40
+ }
@@ -21,7 +21,6 @@ interface LayerManagerProps {
21
21
  onToggleDock?: () => void;
22
22
  size?: DraggableSize;
23
23
  startPosition?: Position;
24
- setFocused?: (focused: boolean) => void;
25
24
  settings?: LayerManagerCustomSettings;
26
25
  headerSize?: HeaderSize;
27
26
  mapWidthRef?: React.RefObject<HTMLDivElement>;
@@ -5,7 +5,7 @@ interface ConnectedAutoUpdateButtonProps {
5
5
  isAutoUpdating?: boolean;
6
6
  toggleAutoUpdate?: typeof mapActions.toggleAutoUpdate;
7
7
  }
8
- export declare const AutoUpdateButtonConnect: import("react-redux").ConnectedComponent<import("react-redux").ConnectedComponent<({ mapId, isAutoUpdating, toggleAutoUpdate, }: ConnectedAutoUpdateButtonProps) => React.JSX.Element, {
8
+ export declare const AutoUpdateButtonConnect: import("react-redux").ConnectedComponent<import("react-redux").ConnectedComponent<({ mapId, isAutoUpdating, toggleAutoUpdate, }: ConnectedAutoUpdateButtonProps) => import("react/jsx-runtime").JSX.Element, {
9
9
  mapId: string;
10
10
  isAutoUpdating?: boolean | undefined;
11
11
  toggleAutoUpdate?: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/store/src/store/mapStore/types").ToggleAutoUpdatePayload, "mapReducer/toggleAutoUpdate"> | undefined;
@@ -28,7 +28,7 @@ declare const connectRedux: import("react-redux").InferableComponentEnhancerWith
28
28
  mapStopAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/store/src/store/mapStore/types").SetMapAnimationStopPayload, "mapReducer/mapStopAnimation">;
29
29
  }, PlayButtonConnectProps>;
30
30
  type Props = PlayButtonConnectProps & ConnectedProps<typeof connectRedux>;
31
- export declare const PlayButtonConnect: import("react-redux").ConnectedComponent<({ mapId, animationStartTime, animationEndTime, isDisabled, timeStep, linkedMapAnimationInfo, mapStartAnimation, mapStopAnimation, }: Props) => React.JSX.Element, {
31
+ export declare const PlayButtonConnect: import("react-redux").ConnectedComponent<({ mapId, animationStartTime, animationEndTime, isDisabled, timeStep, linkedMapAnimationInfo, mapStartAnimation, mapStopAnimation, }: Props) => import("react/jsx-runtime").JSX.Element, {
32
32
  mapId: string;
33
33
  isDisabled?: boolean | undefined;
34
34
  isAnimating?: boolean | undefined;