@nika-js/onlymap 0.6.18 → 0.6.20
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 +12 -0
- package/dist/{LercDecode.es-CFkuAghv.js → LercDecode.es-DiDn51b8.js} +1 -1
- package/dist/{basemap-BYsWqrqp.js → basemap-Bvtudw-w.js} +1054 -1015
- package/dist/basemap.d.ts +19 -1
- package/dist/elements/om-map.d.ts +2 -0
- package/dist/{geoparquet-C5ezOpDN.js → geoparquet-DFfq6-JJ.js} +1 -1
- package/dist/ifc-Dc-TdSJr.js +2 -3
- package/dist/{index-T1jT84TY.js → index-AlG5NjjQ.js} +1 -1
- package/dist/{index-h5A4LBtR.js → index-CPthQWzC.js} +8586 -8569
- package/dist/{index-C7pRTBjN.js → index-Cq0qmoDj.js} +2 -2
- package/dist/{index-B0qtzfOX.js → index-DIHnIeho.js} +1 -1
- package/dist/{index-PHDt5jos.js → index-ZDGLuUoq.js} +1 -1
- package/dist/{lerc-B8gvl7FV.js → lerc-C3kqqJ1B.js} +2 -2
- package/dist/onlymap.standalone.js +14949 -14894
- package/dist/onlymapjs.js +1 -1
- package/dist/{raster-B8bDaA3c.js → raster-6tndfpHv.js} +2 -2
- package/dist/{raster-pipeline-BLKrUZxU.js → raster-pipeline-DVLch-nI.js} +1 -1
- package/dist/runtime-core.d.ts +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/{zarr-Y8OewWSs.js → zarr-D5UCDgG7.js} +2 -2
- package/package.json +1 -1
- package/skills/onlymapjs/SKILL.md +1 -1
- package/skills/onlymapjs/references/syntax.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,18 @@ Note: npm collapsed a few closely-spaced releases — the GPX/FlatGeobuf (0.5.4)
|
|
|
8
8
|
and GeoParquet (0.5.5) work shipped to npm together as **0.5.6**, so npm's
|
|
9
9
|
version list jumps 0.5.3 → 0.5.6. Each logical version is listed here regardless.
|
|
10
10
|
|
|
11
|
+
## 0.6.20 — 2026-08-26
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- **Paid licenses now apply when rendering video locally.** A key restricted to your domains couldn't take effect on the local host that `onlymapjs record` (and external frame renderers) serve from, so paid features didn't apply to rendered output. A verified paid key is now honored in local render contexts; unkeyed usage is unchanged.
|
|
15
|
+
- **Rendered frames settle faster and more reliably over basemaps.** `whenSettled()` now keys off the basemap's own idle signal (camera done, tiles loaded, fades complete) instead of a polling approximation, and the recording switch takes effect before the first render (previously a startup race could leave label fade-in enabled during a take).
|
|
16
|
+
|
|
17
|
+
## 0.6.19 — 2026-08-26
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- **Webpack-based apps can now bundle OnlyMapJS.** Next.js, Create React App, and plain-webpack builds failed outright on the package (webpack misread a fallback `data:` import inside the bundled loaders as a directory to enumerate). The emitted bundles now carry the `webpackIgnore` hints webpack needs, and a standing build check keeps it that way. No consumer action needed.
|
|
21
|
+
- **Rendered frames over a basemap are now deterministic.** `whenSettled()` waits for the basemap's own tiles as well as 3D tilesets, and under `data-om-recording` the basemap's label fade-in is disabled — so the same frame of a 2D basemap story renders byte-identically even on a warm page rendering frames out of order (previously the label layer could differ with playback history).
|
|
22
|
+
|
|
11
23
|
## 0.6.18 — 2026-08-25
|
|
12
24
|
|
|
13
25
|
### Fixed
|