@panoramax/web-viewer 4.0.3-develop-05bbd331 → 4.0.3-develop-e6a52885
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/reference/components/core/PhotoViewer.md +1 -0
- package/docs/reference/components/core/Viewer.md +1 -0
- package/docs/reference/components/ui/Map.md +12 -0
- package/docs/reference/components/ui/MapMore.md +1 -0
- package/package.json +1 -1
- package/src/components/core/PhotoViewer.js +7 -1
- package/src/components/core/Viewer.js +5 -1
- package/src/components/ui/Map.js +3 -0
- package/src/components/ui/MapMore.js +61 -25
- package/src/components/ui/Photo.js +1 -1
- package/src/utils/InitParameters.js +12 -2
- package/tests/components/ui/__snapshots__/Map.test.js.snap +164 -0
- package/tests/utils/InitParameters.test.js +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,7 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
12
12
|
|
|
13
13
|
- Buttons offer a new `fullwarn` yellow style (for warning buttons)
|
|
14
14
|
- A bit of doc on 3D mobile rendering
|
|
15
|
+
- A new `keyboard-shortcuts=false` attribute for Viewer & PhotoViewer, to disable completely keyboard shortcuts (for integration in complex pages).
|
|
15
16
|
|
|
16
17
|
### Changed
|
|
17
18
|
|
|
@@ -19,6 +20,10 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
19
20
|
- Map legend font size a bit reduced, map attribution integrated in a sentence.
|
|
20
21
|
- In picture legend, the "..." keeps the same entries between collapsed and expanded display.
|
|
21
22
|
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Map filters were not correctly applied after user change.
|
|
26
|
+
|
|
22
27
|
## [4.0.3] - 2025-05-23
|
|
23
28
|
|
|
24
29
|
### Added
|