@mapcomponents/react-maplibre 1.1.0 → 1.3.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/CHANGELOG.md +21 -0
- package/dist/index.cjs.js +315 -282
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +316 -283
- package/dist/index.esm.js.map +1 -1
- package/dist/src/components/MlComponentTemplate/MlComponentTemplate.stories_.d.ts +14 -0
- package/dist/src/components/MlLayerSwipe/assets/SwipeIcon.d.ts +10 -0
- package/dist/src/components/MlMarker/MlMarker.d.ts +21 -26
- package/dist/src/components/MlNavigationCompass/assets/CompassBackground.d.ts +9 -0
- package/dist/src/components/MlNavigationCompass/assets/CompassNeedle.d.ts +9 -0
- package/dist/src/components/MlShareMapState/MlShareMapState.d.ts +0 -7
- package/dist/src/components/MlThreeJsLayer/MlThreeJsLayer.d.ts +1 -18
- package/dist/src/components/MlWmsFeatureInfoPopup/MlWmsFeatureInfoPopup.d.ts +0 -7
- package/dist/src/components/MlWmsLayer/MlWmsLayer.d.ts +0 -46
- package/dist/src/contexts/SimpleDataProvider.d.ts +1 -7
- package/dist/src/hooks/useFeatureEditor/utils/FeatureEditorStyle.d.ts +28 -0
- package/dist/src/protocol_handlers/osm.d.ts +0 -1
- package/dist/src/ui_components/LoadingOverlayContext.d.ts +1 -7
- package/package.json +42 -41
- package/rollup.config.mjs +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v1.2.0]
|
|
4
|
+
|
|
5
|
+
## Changed
|
|
6
|
+
- update React v18 -> v19
|
|
7
|
+
- replace enzyme in jest tests with @testing-library/react
|
|
8
|
+
|
|
9
|
+
## [v1.1.0] - 2025-03-21
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- add dependabot
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- update @dnd-kit and actions/setup-node@v2
|
|
16
|
+
- update actions/cache@v2 -> v3
|
|
17
|
+
- update dependencies
|
|
18
|
+
- update publish workflow node version
|
|
19
|
+
- change Design/ml measure tool
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- fix MlNavigation Zoom
|
|
23
|
+
|
|
3
24
|
## [v1.0.11] - 2025-02-14
|
|
4
25
|
|
|
5
26
|
### Fixed
|