@mappedin/viewer 0.13.1 → 0.13.2

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.13.2](https://github.com/MappedIn/viewer/compare/viewer-v0.13.1...viewer-v0.13.2) (2023-12-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **MKR-588:** missing edge case for polygon check ([#96](https://github.com/MappedIn/viewer/issues/96)) ([a89876c](https://github.com/MappedIn/viewer/commit/a89876c4e07fdd395d1f7fd2a8ef2941b1714f6f))
9
+
3
10
  ## [0.13.1](https://github.com/MappedIn/viewer/compare/viewer-v0.13.0...viewer-v0.13.1) (2023-12-01)
4
11
 
5
12
 
package/dist/index.js CHANGED
@@ -69625,7 +69625,7 @@ class c0t {
69625
69625
  for (const n of this.rootStore.selectedLocation.nodes) {
69626
69626
  if (n.polygon != null && (i.has(n.polygon.id) || !this.rootStore.selectedLocation.categories.some((o) => o.name === "poi") && !n.polygon.locations.includes(this.rootStore.selectedLocation)))
69627
69627
  continue;
69628
- i.add(n.polygon.id);
69628
+ n.polygon != null && i.add(n.polygon.id);
69629
69629
  const r = {
69630
69630
  key: "selected-location-marker-" + n.id,
69631
69631
  element: /* @__PURE__ */ qe.jsx(
@@ -107222,7 +107222,7 @@ const Bmt = Sn.div`
107222
107222
  }
107223
107223
  }, Wje = () => {
107224
107224
  const t = document.createElement("meta");
107225
- t.name = "app-version", t.content = "0.13.1", document.head.appendChild(t);
107225
+ t.name = "app-version", t.content = "0.13.2", document.head.appendChild(t);
107226
107226
  let e = document.querySelector("meta[name=viewport]");
107227
107227
  e == null && (e = document.createElement("meta"), e.name = "viewport", document.head.appendChild(e)), e.content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no";
107228
107228
  }, $je = (t) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mappedin/viewer",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "type": "module",
5
5
  "browser": "./dist/index.js",
6
6
  "license": "UNLICENSED",