lost-sia 0.9.0 → 1.0.3

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,33 @@ 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.3] - 2022-05-10
8
+ ### Fixed
9
+ - Export of toolbarEvents and tools
10
+
11
+ ## [1.0.2] - 2022-05-09
12
+ ### Fixed
13
+ - Improved internal uiConfig handling
14
+
15
+ ## [1.0.1] - 2022-05-06
16
+ ### Fixed
17
+ - Export of Sia and other components
18
+
19
+ ## [1.0.0] - 2022-05-06
20
+ ### Added
21
+ - Possibility to assign comments to 2D-Annotations
22
+ - 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)
23
+ - 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)
24
+ - Added auto save feature
25
+ - Anno Example Viewer + Image Example in LabelInfo box
26
+ ### Changed
27
+ - Move InfoBoxes to Canvas
28
+ ### Breaking Change
29
+ - Restructured props and event handling for canvas and toolbar
30
+ - Created new Sia component
31
+ ### Fixed
32
+ - Fixed correctAnnotation method to work correctly in maxCanvas mode
33
+ - Will prevent annotations from being created outside of the image
7
34
 
8
35
  ## [0.9.0] - 2021-12-23
9
36
  ### 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 {