@mapcomponents/react-maplibre 1.2.0 → 1.3.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/CHANGELOG.md +23 -0
- package/dist/index.cjs.js +330 -157
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +332 -159
- package/dist/index.esm.js.map +1 -1
- package/dist/src/components/MlComponentTemplate/MlComponentTemplate.stories_.d.ts +14 -0
- package/dist/src/components/MlGpxViewer/util/GeoJsonProvider.d.ts +1 -1
- package/dist/src/components/MlMarker/MlMarker.d.ts +21 -26
- package/dist/src/components/MlNavigationTools/MlNavigationTools.d.ts +1 -1
- package/dist/src/components/MlSketchTool/MlSketchTool.d.ts +8 -0
- package/dist/src/components/MlWmsLoader/MlWmsLoader.d.ts +1 -1
- package/dist/src/ui_components/LayerList/LayerList.d.ts +1 -1
- package/dist/src/ui_components/LayerList/LayerListFolder.d.ts +3 -3
- package/dist/src/ui_components/LayerList/LayerListItem.d.ts +4 -4
- package/dist/src/ui_components/LayerTree/LayerTreeListItem.d.ts +1 -1
- package/dist/src/util/Instructions.d.ts +1 -1
- package/package.json +33 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v1.3.1]
|
|
4
|
+
|
|
5
|
+
## Changed
|
|
6
|
+
- 3f6b50c: Upgrade to maplibre to 5.5.0 (from 5.3.0) (#223)
|
|
7
|
+
|
|
8
|
+
## [v1.3.0]
|
|
9
|
+
|
|
10
|
+
## Changed
|
|
11
|
+
- UI design/ogc in MlSketchTool and MlOgcApiFeatures
|
|
12
|
+
|
|
13
|
+
## Fixed
|
|
14
|
+
- fix MlMarker and improve performance by using a maplibre marker instead of an absolute positioned HTML element
|
|
15
|
+
- fix Storybook demos: MlLayerSwitcher, useCameraFollowPath, MlVectorTileLayer, MlPdfForm, MlThreeJsLayer, MlNavigationCompass
|
|
16
|
+
|
|
17
|
+
## Removed
|
|
18
|
+
- remove MlComponentTemplate from storybook
|
|
19
|
+
|
|
20
|
+
## [v1.2.0]
|
|
21
|
+
|
|
22
|
+
## Changed
|
|
23
|
+
- update React v18 -> v19
|
|
24
|
+
- replace enzyme in jest tests with @testing-library/react
|
|
25
|
+
|
|
3
26
|
## [v1.1.0] - 2025-03-21
|
|
4
27
|
|
|
5
28
|
### Added
|