lost-sia 0.7.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 CHANGED
@@ -4,6 +4,36 @@ 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
22
+
23
+ ## [0.9.0] - 2021-12-23
24
+ ### Added
25
+ - Delete annotation in creation mode when hitting *Escape*-Key
26
+ - Show img description in ImgBar if available
27
+ - Max canvas size mode. Where canvas takes the maximum container size and is not
28
+ image oriented as before. Add prop *maxCanvas={true}* to canvas in order to enable.
29
+ ### Changed
30
+ - Be able to deal with mixed color possible labels -> where a part of labels
31
+ will have a specified color and the other part has no provided color
32
+
33
+ ## [0.8.0] - 2021-10-14
34
+ ### Added
35
+ - Added lockedAnnos prop for Canvas in order to lock annos by id. Locked annos
36
+ can not be edited
7
37
 
8
38
  ## [0.7.0] - 2021-10-13
9
39
  ### 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: 9999;
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.5;
34
- stroke-opacity: 0.5;
33
+ fill-opacity: 0.1;
34
+ stroke-opacity: 0.2;
35
35
  cursor: grab; }
36
36
 
37
37
  .node-halo-off {