lost-sia 2.0.0-alpha4 → 2.0.0-alpha6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lost-sia",
3
- "version": "2.0.0-alpha4",
3
+ "version": "2.0.0-alpha6",
4
4
  "description": "Single Image Annotation Tool",
5
5
  "license": "MIT",
6
6
  "repository": "l3p-cv/lost-sia",
@@ -1,3 +1,6 @@
1
+
1
2
  export function active(filter) {
2
3
  return filter.clahe.active || filter.rotate.active;
3
4
  }
5
+
6
+ export default {active}
package/src/index.js CHANGED
@@ -7,10 +7,14 @@ export { default as Canvas } from "./Canvas";
7
7
  // export { Canvas }
8
8
  // export { Toolbar }
9
9
 
10
- export { default as Sia } from "./Sia";
11
- export { default as dummyData } from "./siaDummyData";
12
- export { default as transform } from "./utils/transform";
13
- export { default as annoConversion } from "./utils/annoConversion";
14
- export { default as canvasActions } from "./types/canvasActions";
15
- export { default as toolbarEvents } from "./types/toolbarEvents";
16
- export { default as tools } from "./types/tools";
10
+
11
+ export { default as Sia } from './Sia'
12
+ export { default as dummyData } from './siaDummyData'
13
+ export { default as transform } from './utils/transform'
14
+ export { default as annoConversion } from './utils/annoConversion'
15
+ export { default as canvasActions } from './types/canvasActions'
16
+ export { default as toolbarEvents } from './types/toolbarEvents'
17
+ export { default as tools } from './types/tools'
18
+ export { default as filterTools } from './filterTools'
19
+ export { default as notificationType } from './types/notificationType'
20
+
@@ -1,13 +1,13 @@
1
- // If you want to override variables do it here
2
- @import "variables";
1
+ // // If you want to override variables do it here
2
+ // @import 'variables';
3
3
 
4
- // Import CoreUI styles
5
- @import "@coreui/coreui/scss/coreui.scss";
4
+ // // Import CoreUI styles
5
+ // @import '@coreui/coreui/scss/coreui.scss';
6
6
 
7
- @import "layout";
7
+ // @import "layout";
8
8
 
9
- // Some temp fixes
10
- @import "fixes";
9
+ // // Some temp fixes
10
+ // @import 'fixes';
11
11
 
12
12
  // If you want to add something do it here
13
13
  @import "custom";
@@ -2,3 +2,5 @@ export const INFO = "info";
2
2
  export const SUCCESS = "success";
3
3
  export const WARNING = "warning";
4
4
  export const ERROR = "error";
5
+
6
+ export default {INFO,SUCCESS,WARNING,ERROR}