lost-sia 2.0.0-alpha5 → 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-alpha5",
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
@@ -15,6 +15,6 @@ export { default as annoConversion } from './utils/annoConversion'
15
15
  export { default as canvasActions } from './types/canvasActions'
16
16
  export { default as toolbarEvents } from './types/toolbarEvents'
17
17
  export { default as tools } from './types/tools'
18
- export { default as filterTools } from './filterTools/'
18
+ export { default as filterTools } from './filterTools'
19
19
  export { default as notificationType } from './types/notificationType'
20
20
 
@@ -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}