lost-sia 0.8.0 → 1.0.2

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,39 @@ 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.2] - 2022-05-09
8
+ ### Fixed
9
+ - Improved internal uiConfig handling
10
+
11
+ ## [1.0.1] - 2022-05-06
12
+ ### Fixed
13
+ - Export of Sia and other components
14
+
15
+ ## [1.0.0] - 2022-05-06
16
+ ### Added
17
+ - Possibility to assign comments to 2D-Annotations
18
+ - 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)
19
+ - 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)
20
+ - Added auto save feature
21
+ - Anno Example Viewer + Image Example in LabelInfo box
22
+ ### Changed
23
+ - Move InfoBoxes to Canvas
24
+ ### Breaking Change
25
+ - Restructured props and event handling for canvas and toolbar
26
+ - Created new Sia component
27
+ ### Fixed
28
+ - Fixed correctAnnotation method to work correctly in maxCanvas mode
29
+ - Will prevent annotations from being created outside of the image
30
+
31
+ ## [0.9.0] - 2021-12-23
32
+ ### Added
33
+ - Delete annotation in creation mode when hitting *Escape*-Key
34
+ - Show img description in ImgBar if available
35
+ - Max canvas size mode. Where canvas takes the maximum container size and is not
36
+ image oriented as before. Add prop *maxCanvas={true}* to canvas in order to enable.
37
+ ### Changed
38
+ - Be able to deal with mixed color possible labels -> where a part of labels
39
+ will have a specified color and the other part has no provided color
7
40
 
8
41
  ## [0.8.0] - 2021-10-14
9
42
  ### 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 {