@mappedin/viewer 0.58.2-fb02314.0 → 0.59.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.59.0](https://github.com/MappedIn/viewer/compare/viewer-v0.58.1...viewer-v0.59.0) (2026-03-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * **CISCO-38:** add configurable tile server URL ([#651](https://github.com/MappedIn/viewer/issues/651)) ([fb0ebf9](https://github.com/MappedIn/viewer/commit/fb0ebf9023d86dfbe2db31f20ad1ba2faa0c4589))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **SRV-3306:** adjust label icon size and padding ([#650](https://github.com/MappedIn/viewer/issues/650)) ([fb02314](https://github.com/MappedIn/viewer/commit/fb023140c06e770b1866c0ed3ec845140bf3c170))
14
+ * **SRV-3392:** use viewport coordinates for pin drop position ([#655](https://github.com/MappedIn/viewer/issues/655)) ([eb0d89e](https://github.com/MappedIn/viewer/commit/eb0d89e7329ba605e4b85a569b5f728c7f6d41ac))
15
+
3
16
  ## [0.58.1](https://github.com/MappedIn/viewer/compare/viewer-v0.58.0...viewer-v0.58.1) (2026-02-23)
4
17
 
5
18
 
package/CLAUDE.md ADDED
@@ -0,0 +1,12 @@
1
+ # Viewer Package
2
+
3
+ ## Folder Structure
4
+
5
+ New code should almost always live in one the following `src/` folders.
6
+
7
+ - `components/` Re-usable react components.
8
+ - `lib/` Hooks, small re-usable functions, self-contained custom packages.
9
+ - `locales/` Translation files for i18n.
10
+ - `states/` Window level entry-points to the entire UI.
11
+ - `stores/` MobX stores managing application state.
12
+ - `test-utils/` Unit testing utilities.