@panoramax/web-viewer 4.0.0 → 4.0.1-develop-1e9682f2
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 +14 -3
- package/build/index.css +1 -1
- package/build/index.js +4 -4
- package/build/index.js.map +1 -1
- package/docs/03_URL_settings.md +1 -1
- package/docs/09_Develop.md +1 -1
- package/docs/reference/components/ui/Photo.md +1 -1
- package/docs/reference/utils/API.md +1 -1
- package/docs/tutorials/migrate_v4.md +1 -1
- package/docs/tutorials/synced_coverage.md +1 -1
- package/package.json +1 -1
- package/src/components/core/PhotoViewer.js +5 -1
- package/src/components/core/Viewer.js +8 -3
- package/src/components/menus/PictureLegend.js +6 -2
- package/src/components/ui/Photo.js +1 -1
- package/src/utils/API.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,16 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- In report form, using space key was starting sequence play.
|
|
14
|
+
|
|
15
|
+
## [4.0.1] - 2025-05-05
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Drawer menu was not shown expanded picture legend on mobile.
|
|
20
|
+
|
|
11
21
|
## [4.0.0] - 2025-04-03
|
|
12
22
|
|
|
13
23
|
Major changes are introduced by this new version, please [check out the migration guide](https://docs.panoramax.fr/web-viewer/tutorials/migrate_v4/) for more details.
|
|
@@ -28,7 +38,7 @@ Major changes are introduced by this new version, please [check out the migratio
|
|
|
28
38
|
### Changed
|
|
29
39
|
|
|
30
40
|
- All code is managed using _Web components_ (with [Lit JS](https://lit.dev/)), and should be initialized through DOM instead of class constructors.
|
|
31
|
-
- Code is
|
|
41
|
+
- Code is split into more components, classes and packages.
|
|
32
42
|
- Events are moved nearer their dedicated component (map, photo). The `addEventListener` can still be called on parent component using a sub-component prefix (like `map:moveend` to pass event from Viewer to its Map).
|
|
33
43
|
- Styles are manage through common JS or CSS files.
|
|
34
44
|
- Viewer widgets can be fine-tuned using web component slots.
|
|
@@ -364,7 +374,7 @@ Major changes are introduced by this new version, please [check out the migratio
|
|
|
364
374
|
|
|
365
375
|
### Added
|
|
366
376
|
- A `destroy` function is now available to properly get rid of the viewer, which is useful for single-page applications.
|
|
367
|
-
- A new component named `StandaloneMap` is available to show a coverage map of pictures and sequences, without full picture display. It can be controlled
|
|
377
|
+
- A new component named `StandaloneMap` is available to show a coverage map of pictures and sequences, without full picture display. It can be controlled programmatically.
|
|
368
378
|
|
|
369
379
|
### Changed
|
|
370
380
|
- Calls to API are now using STAC standard notation for IDs lists (`ids=bla` instead of `ids=["bla"]`). Old notation was based on GeoVisio API misunderstanding of STAC docs. This __breaks compatibility__ with GeoVisio API <= 2.1.4, but makes viewer compatible with any STAC-compliant API.
|
|
@@ -538,7 +548,8 @@ Empty release to follow the API's minor version
|
|
|
538
548
|
- [A Photo Sphere Viewer under Chrome issue](https://github.com/mistic100/Photo-Sphere-Viewer/issues/937) was making classic pictures not visible
|
|
539
549
|
|
|
540
550
|
|
|
541
|
-
[Unreleased]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/4.0.
|
|
551
|
+
[Unreleased]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/4.0.1...develop
|
|
552
|
+
[4.0.1]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/4.0.0...4.0.1
|
|
542
553
|
[4.0.0]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.2.3...4.0.0
|
|
543
554
|
[3.2.3]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.2.2...3.2.3
|
|
544
555
|
[3.2.2]: https://gitlab.com/panoramax/clients/web-viewer/-/compare/3.2.1...3.2.2
|