@mappedin/viewer 0.35.2-fee21ee.0 → 0.36.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 +17 -0
- package/dist/index.js +38347 -36180
- package/dist/types/src/components/collapsible/collapsible.stories.d.ts +2 -0
- package/dist/types/src/components/collapsible/index.d.ts +20 -0
- package/dist/types/src/lib/sdk/index.d.ts +1 -1
- package/dist/types/src/lib/sdk/types.d.ts +4 -3
- package/dist/types/src/lib/time/time.d.ts +2 -0
- package/dist/types/src/lib/utils/array-utils.d.ts +4 -0
- package/dist/types/src/lib/utils/data-utils.d.ts +229 -2
- package/dist/types/src/lib/utils/geojson-utils.d.ts +3 -0
- package/dist/types/src/lib/utils/geojson-utils.test.d.ts +1 -0
- package/dist/types/src/lib/utils/process-mvf.d.ts +2 -1
- package/dist/types/src/lib/utils/process-places.d.ts +10 -1
- package/dist/types/src/stores/map-store/controllers/camera.d.ts +7 -2
- package/dist/types/src/stores/map-store/controllers/labels.d.ts +4 -1
- package/dist/types/src/stores/map-store/controllers/markers.d.ts +5 -1
- package/dist/types/src/stores/root-store/index.d.ts +22 -2
- package/dist/types/src/test-utils/custom-matchers.test.d.ts +1 -0
- package/dist/types/src/test-utils/test-place-types.d.ts +43 -0
- package/dist/types/src/test-utils/test-place-types.test.d.ts +1 -0
- package/dist/types/src/test-utils/test-suite.d.ts +8 -1
- package/dist/types/src/test-utils/test-with-map.d.ts +2 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.36.0](https://github.com/MappedIn/viewer/compare/viewer-v0.35.1...viewer-v0.36.0) (2025-03-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **SRV-2034:** see similar places toast ([#433](https://github.com/MappedIn/viewer/issues/433)) ([3613294](https://github.com/MappedIn/viewer/commit/36132942ea0ede6892fe8d0cb2ade318e5383220))
|
|
9
|
+
* **SRV-2047:** support areas ([#442](https://github.com/MappedIn/viewer/issues/442)) ([1022f80](https://github.com/MappedIn/viewer/commit/1022f804561c5dcba9c394c344180d89d8e13b3a))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **SRV-1941:** properly handle contiguous and overlapping time ranges ([#439](https://github.com/MappedIn/viewer/issues/439)) ([00ee166](https://github.com/MappedIn/viewer/commit/00ee1663ffd8e44ecbf55e32a1fc3cd947cb4d8d))
|
|
15
|
+
* **SRV-2028:** prevent search results from overlapping warnings text on mobile ([#431](https://github.com/MappedIn/viewer/issues/431)) ([819fc61](https://github.com/MappedIn/viewer/commit/819fc617ec996f76a4459ff68d1c98008c059ef0))
|
|
16
|
+
* **SRV-2046:** bump @mappedin/mappedin-js to 6.0.1-beta.29 ([#436](https://github.com/MappedIn/viewer/issues/436)) ([a875236](https://github.com/MappedIn/viewer/commit/a875236d1437d8105c371e812eb028bd6fac76f0))
|
|
17
|
+
* **SRV-2058:** consistently compute default camera state ([#441](https://github.com/MappedIn/viewer/issues/441)) ([1311b0d](https://github.com/MappedIn/viewer/commit/1311b0dd3961d809677dd49c68b211d050cbf999))
|
|
18
|
+
* **SRV-2059:** new metadata card should be collapsible on mobile ([#443](https://github.com/MappedIn/viewer/issues/443)) ([c86a413](https://github.com/MappedIn/viewer/commit/c86a413589a9d951ba72a754042fe1ab39aafcb3))
|
|
19
|
+
|
|
3
20
|
## [0.35.1](https://github.com/MappedIn/viewer/compare/viewer-v0.35.0...viewer-v0.35.1) (2025-02-18)
|
|
4
21
|
|
|
5
22
|
|