sparkecode-devtools 0.1.42 → 0.1.43

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": "sparkecode-devtools",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "Sparkecode Dev Tools for selecting and sharing components.",
5
5
  "type": "module",
6
6
  "main": "sparkecode-select.js",
@@ -598,13 +598,12 @@
598
598
  toggleActive();
599
599
  }
600
600
  isDragging = false;
601
- };
602
-
603
- document.addEventListener('mousemove', onMove);
604
- document.addEventListener('mouseup', onUp);
605
- document.addEventListener('touchmove', onMove, { passive: false });
606
- document.addEventListener('touchend', onUp);
607
- }
601
+ };
602
+
603
+ document.addEventListener('mousemove', onMove);
604
+ document.addEventListener('mouseup', onUp);
605
+ document.addEventListener('touchmove', onMove, { passive: false });
606
+ document.addEventListener('touchend', onUp);
608
607
  }
609
608
 
610
609
  function createOverlay() {