lost-sia 0.9.0 → 1.0.0
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 +15 -0
- package/dist/index.css +3 -3
- package/dist/index.es.js +3353 -179
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3351 -177
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.0.0] - 2022-05-06
|
|
8
|
+
### Added
|
|
9
|
+
- Possibility to assign comments to 2D-Annotations
|
|
10
|
+
- InfoBox (AnnoStats) that shows the number of annotations per label (see https://github.com/l3p-cv/lost/issues/86 and https://github.com/l3p-cv/lost/issues/160)
|
|
11
|
+
- When clicking on a label in the InfoBox all annotations of this label will be hidden. Anothter click will show the annotations again. (see also https://github.com/l3p-cv/lost/issues/161)
|
|
12
|
+
- Added auto save feature
|
|
13
|
+
- Anno Example Viewer + Image Example in LabelInfo box
|
|
14
|
+
### Changed
|
|
15
|
+
- Move InfoBoxes to Canvas
|
|
16
|
+
### Breaking Change
|
|
17
|
+
- Restructured props and event handling for canvas and toolbar
|
|
18
|
+
- Created new Sia component
|
|
19
|
+
### Fixed
|
|
20
|
+
- Fixed correctAnnotation method to work correctly in maxCanvas mode
|
|
21
|
+
- Will prevent annotations from being created outside of the image
|
|
7
22
|
|
|
8
23
|
## [0.9.0] - 2021-12-23
|
|
9
24
|
### Added
|
package/dist/index.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
position: fixed;
|
|
3
3
|
top: 0;
|
|
4
4
|
left: 0;
|
|
5
|
-
z-index:
|
|
5
|
+
z-index: 6000;
|
|
6
6
|
width: 100%;
|
|
7
7
|
height: 100%;
|
|
8
8
|
background-color: #FFFF; }
|
|
@@ -30,8 +30,8 @@ circle.not-selected {
|
|
|
30
30
|
.node-halo-on {
|
|
31
31
|
fill: orange;
|
|
32
32
|
stroke: orange;
|
|
33
|
-
fill-opacity: 0.
|
|
34
|
-
stroke-opacity: 0.
|
|
33
|
+
fill-opacity: 0.1;
|
|
34
|
+
stroke-opacity: 0.2;
|
|
35
35
|
cursor: grab; }
|
|
36
36
|
|
|
37
37
|
.node-halo-off {
|