ugcinc-render 1.8.67 → 1.8.68

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/dist/index.js CHANGED
@@ -2902,6 +2902,7 @@ function DebugOverlay({
2902
2902
  );
2903
2903
  const handleMouseDown = (0, import_react7.useCallback)((e) => {
2904
2904
  if (e.target.tagName === "BUTTON") return;
2905
+ e.preventDefault();
2905
2906
  setIsDragging(true);
2906
2907
  setLastDragPos({ x: e.clientX, y: e.clientY });
2907
2908
  }, []);
package/dist/index.mjs CHANGED
@@ -2010,6 +2010,7 @@ function DebugOverlay({
2010
2010
  );
2011
2011
  const handleMouseDown = useCallback((e) => {
2012
2012
  if (e.target.tagName === "BUTTON") return;
2013
+ e.preventDefault();
2013
2014
  setIsDragging(true);
2014
2015
  setLastDragPos({ x: e.clientX, y: e.clientY });
2015
2016
  }, []);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc-render",
3
- "version": "1.8.67",
3
+ "version": "1.8.68",
4
4
  "description": "Unified rendering package for UGC Inc - shared types, components, and compositions for pixel-perfect client/server rendering",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",