lost-sia 2.0.0-alpha14 → 2.0.0-alpha15

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-alpha14",
3
+ "version": "2.0.0-alpha15",
4
4
  "description": "Single Image Annotation Tool",
5
5
  "license": "MIT",
6
6
  "repository": "l3p-cv/lost-sia",
package/src/Canvas.jsx CHANGED
@@ -1,5 +1,5 @@
1
1
  import React, { Component } from "react";
2
- import uniqueId from "lodash/uniqueId";
2
+ import { uniqueId } from "lodash/uniqueId";
3
3
  import Annotation from "./Annotation/Annotation";
4
4
  import AnnoLabelInput from "./AnnoLabelInput";
5
5
  import ImgBar from "./ImgBar";
@@ -1,7 +1,7 @@
1
1
  import * as transform from "./transform";
2
2
  import * as annoStatus from "../types/annoStatus";
3
3
  import * as modes from "../types/modes";
4
- import uniqueId from "lodash/uniqueId";
4
+ import { uniqueId } from "lodash/uniqueId";
5
5
  const _ = require("lodash");
6
6
 
7
7
  function _fixBackendAnnoElement(element) {