@opengeoweb/core 2.4.1 → 2.7.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 +10542 -10062
- package/index.umd.js +3122 -2605
- package/lib/components/ComponentsLookUp/componentsLookUp.d.ts +7 -20
- package/lib/components/ConfigurableConnectedMap/ConfigurableConnectedMap.d.ts +1 -7
- package/lib/components/ConfigurableMapWithSlider/ConfigurableMapWithSliderConnect.d.ts +1 -2
- package/lib/components/LayerManager/LayerManager.d.ts +2 -1
- package/lib/components/LayerManager/LayerManagerConnect.d.ts +1 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListRow.d.ts +18 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListUtils.d.ts +2 -1
- package/lib/components/LayerManager/LayerSelect/LayerSelectUtils.d.ts +4 -0
- package/lib/components/{MultiMapView/HarmoniePresets/HarmRefTimePreset.spec.d.ts → LayerManager/LayerSelect/LayerSelectUtils.spec.d.ts} +0 -0
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceChip.d.ts +2 -2
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceChipConnect.d.ts +2 -2
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceList.d.ts +2 -2
- package/lib/components/MapView/MapViewLayer.d.ts +3 -0
- package/lib/components/MapWarning/MapWarningProperties.d.ts +6 -0
- package/lib/components/{TimeSlider/TimeSliderButtons/LoopButton/LoopButton.spec.d.ts → MapWarning/MapWarningProperties.spec.d.ts} +0 -0
- package/lib/components/MultiMapView/HarmoniePresets/index.d.ts +0 -1
- package/lib/components/MultiMapView/{HarmoniePresets/HarmRefTimePreset.d.ts → ModelRunInterval/ModelRunInterval.d.ts} +4 -2
- package/lib/components/{TimeSlider/TimeSliderButtons/LoopButton/LoopButtonConnect.spec.d.ts → MultiMapView/ModelRunInterval/ModelRunInterval.spec.d.ts} +0 -0
- package/lib/components/MultiMapView/ModelRunInterval/ModelRunInterval.stories.d.ts +4 -0
- package/lib/components/MultiMapView/ModelRunInterval/index.d.ts +1 -0
- package/lib/components/MultiMapView/MultiMapView.stories.d.ts +2 -3
- package/lib/components/ReactMapView/AdagucMapDraw.d.ts +12 -7
- package/lib/components/ReactMapView/AdagucMapDraw.stories.d.ts +4 -0
- package/lib/components/ReactMapView/AdagucMapDrawContainer.d.ts +2 -1
- package/lib/components/ReactMapView/AdagucMapDrawTools.d.ts +9 -0
- package/lib/components/{TooltipSelect/TooltipSelect.spec.d.ts → ReactMapView/AdagucMapDrawTools.spec.d.ts} +0 -0
- package/lib/components/TimeSlider/TimeSliderButtons/OptionsMenuButton/OptionsMenuButton.d.ts +0 -1
- package/lib/components/TimeSlider/TimeSliderButtons/TimeSliderButtons.d.ts +0 -1
- package/lib/components/TimeSlider/TimeSliderUtils.d.ts +1 -2
- package/lib/components/WMSLoader/WMSServerList/WMSServerList.d.ts +1 -1
- package/lib/index.d.ts +4 -3
- package/lib/store/layerSelect/sagas.d.ts +3 -1
- package/lib/store/mapStore/layers/actions.d.ts +8 -1
- package/lib/store/mapStore/layers/constants.d.ts +1 -0
- package/lib/store/mapStore/layers/types.d.ts +11 -3
- package/lib/store/mapStore/map/actions.d.ts +17 -8
- package/lib/store/mapStore/map/constants.d.ts +3 -0
- package/lib/store/mapStore/map/sagas.d.ts +4 -2
- package/lib/store/mapStore/map/selectors.d.ts +42 -21
- package/lib/store/mapStore/map/types.d.ts +57 -2
- package/lib/store/mapStore/map/utils.d.ts +2 -1
- package/lib/store/mapStore/service/reducer.d.ts +2 -8
- package/lib/store/mapStore/service/selectors.d.ts +6 -8
- package/lib/store/mapStore/service/types.d.ts +7 -9
- package/lib/store/mapStore/utils/helpers.d.ts +2 -0
- package/lib/store/ui/types.d.ts +1 -1
- package/lib/utils/defaultConfigurations.d.ts +2 -2
- package/lib/utils/defaultTestSettings.d.ts +10 -199
- package/lib/utils/jsonPresetFilter.d.ts +23 -7
- package/lib/utils/localStorage.d.ts +3 -0
- package/lib/utils/localStorage.spec.d.ts +1 -0
- package/lib/utils/types.d.ts +3 -42
- package/package.json +10 -9
- package/lib/components/LayerManager/tooltipContainerStyles.d.ts +0 -2
- package/lib/components/TimeSlider/TimeSliderButtons/LoopButton/LoopButton.d.ts +0 -8
- package/lib/components/TimeSlider/TimeSliderButtons/LoopButton/LoopButtonConnect.d.ts +0 -10
- package/lib/components/TooltipSelect/TooltipSelect.d.ts +0 -14
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import * as mapActions from '../../../../store/mapStore/actions';
|
|
3
|
-
export interface LoopButtonConnectProps {
|
|
4
|
-
mapId: string;
|
|
5
|
-
isLooping?: boolean;
|
|
6
|
-
isDisabled?: boolean;
|
|
7
|
-
mapToggleLoop?: typeof mapActions.toggleLoop;
|
|
8
|
-
}
|
|
9
|
-
declare const LoopButtonConnect: React.FC<LoopButtonConnectProps>;
|
|
10
|
-
export default LoopButtonConnect;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { SelectProps } from '@mui/material';
|
|
3
|
-
declare type ListELement = {
|
|
4
|
-
value: string;
|
|
5
|
-
};
|
|
6
|
-
interface TooltipSelectProps extends SelectProps {
|
|
7
|
-
tooltip: string;
|
|
8
|
-
list?: ListELement[];
|
|
9
|
-
currentIndex?: number;
|
|
10
|
-
onChangeMouseWheel?: (element: ListELement) => void;
|
|
11
|
-
requiresCtrlToChange?: boolean;
|
|
12
|
-
}
|
|
13
|
-
declare const TooltipSelect: React.FC<TooltipSelectProps>;
|
|
14
|
-
export default TooltipSelect;
|