@panoramax/web-viewer 3.2.3-develop-e0ce9866 → 3.2.3-develop-00ee44cd
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 +5 -0
- package/build/index.js +3 -3
- package/build/index.js.map +1 -1
- package/docs/03_URL_settings.md +1 -1
- package/docs/reference/utils/URLHandler.md +7 -2
- package/docs/tutorials/migrate_v4.md +8 -0
- package/package.json +1 -1
- package/src/components/core/Viewer.js +1 -1
- package/src/components/ui/Photo.js +2 -0
- package/src/utils/InitParameters.js +1 -1
- package/src/utils/URLHandler.js +8 -4
- package/tests/components/ui/Photo.test.js +2 -0
- package/tests/components/ui/__snapshots__/Photo.test.js.snap +5 -0
- package/tests/utils/InitParameters.test.js +6 -0
- package/tests/utils/URLHandler.test.js +51 -10
package/CHANGELOG.md
CHANGED
|
@@ -26,6 +26,11 @@ Major changes are introduced by this new version, please [check out the migratio
|
|
|
26
26
|
- Viewer widgets can be fine-tuned using web component slots.
|
|
27
27
|
- Parameters between URL and component attributes are finer managed to avoid conflicts.
|
|
28
28
|
- Documentation of API reference is more extensive and uses MkDocs features for clarity.
|
|
29
|
+
- URL parameters are now stored in _search_ part (`?`) instead of _hash_ part (`#`). An automatic URL transform is operated if older format is detected.
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- `nav=none` URL parameter was documented but not usable (code supported `nav=pic` instead). Now both `none & pic` values are supported to disable moving around picture.
|
|
29
34
|
|
|
30
35
|
## [3.2.3] - 2025-02-10
|
|
31
36
|
|