@panoramax/web-viewer 4.1.0-develop-381f3f1a → 4.1.0-develop-b60f7e56
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 +8 -0
- package/build/index.js +138 -75
- package/build/index.js.map +1 -1
- package/docs/reference/components/menus/SemanticsMetadata.md +15 -0
- package/docs/reference/utils/API.md +14 -0
- package/docs/reference.md +2 -0
- package/mkdocs.yml +2 -0
- package/package.json +1 -1
- package/src/components/core/Basic.js +5 -1
- package/src/components/menus/PictureMetadata.js +8 -86
- package/src/components/menus/SemanticsMetadata.js +186 -0
- package/src/components/menus/index.js +1 -0
- package/src/components/styles.js +22 -0
- package/src/components/ui/SemanticsEditor.js +1 -1
- package/src/components/ui/SemanticsTable.js +1 -0
- package/src/translations/da.json +2 -1
- package/src/translations/en.json +6 -0
- package/src/translations/fr.json +6 -0
- package/src/utils/API.js +40 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ Before _2.0.0_, Viewer was embed in the [API repository](https://gitlab.com/pano
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- On an instance with accounts, you can now edits picture semantic attributes through the picture legend "Tags" tab.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- The semantics legend tab is now in a separated component named _SemanticsMetadata_.
|
|
18
|
+
|
|
11
19
|
### Fixed
|
|
12
20
|
|
|
13
21
|
- Widgets used from third parties didn't have correctly their parent component associated.
|