@threedddplus/logoeditor 0.0.64 → 0.0.65

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.
@@ -4601,7 +4601,6 @@ var initCanvas = function initCanvas() {
4601
4601
  getAllColors();
4602
4602
  };
4603
4603
  var onObjectMoving = function onObjectMoving(e) {
4604
- console.log("logoeditor on moving function", e);
4605
4604
  use3dddPlus.getState().updateModifaction(false);
4606
4605
  var obj = e.target;
4607
4606
  // if (
@@ -4693,14 +4692,14 @@ var initCanvas = function initCanvas() {
4693
4692
  return Math.abs(scaledObjCenterX - canvasCenterX) < threshold;
4694
4693
  }
4695
4694
  var horizontalLine = new fabric.Line([0, canv.height / 2, canv.height, canv.height / 2], {
4696
- stroke: "red",
4695
+ stroke: 'red',
4697
4696
  scaleX: 11,
4698
4697
  visible: false,
4699
4698
  selectable: false,
4700
4699
  type: 'line'
4701
4700
  });
4702
4701
  var verticalLine = new fabric.Line([canv.width / 2, 0, canv.width / 2, canv.width], {
4703
- stroke: "red",
4702
+ stroke: 'red',
4704
4703
  visible: false,
4705
4704
  selectable: false,
4706
4705
  type: 'line'
@@ -4821,7 +4820,7 @@ var initCanvas = function initCanvas() {
4821
4820
  }
4822
4821
 
4823
4822
  var removeItem = function removeItem(value) {
4824
- //@ts-ignore
4823
+ //@ts-ignore
4825
4824
  var index = use3dddPlus.getState().storeAllObject.findIndex(function (obj) {
4826
4825
  return obj.id === value.id;
4827
4826
  });