@sequent-org/moodboard 1.2.92 → 1.2.93

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": "@sequent-org/moodboard",
3
- "version": "1.2.92",
3
+ "version": "1.2.93",
4
4
  "type": "module",
5
5
  "description": "Interactive moodboard",
6
6
  "main": "./src/index.js",
@@ -2040,7 +2040,16 @@ export class SelectTool extends BaseTool {
2040
2040
  console.log('🔍 Browser zoom detection:', {
2041
2041
  zoomFactor,
2042
2042
  basePos: { left: baseLeftPx, top: baseTopPx },
2043
- correctedPos: { left: correctedBaseLeftPx, top: correctedBaseTopPx }
2043
+ correctedPos: { left: correctedBaseLeftPx, top: correctedBaseTopPx },
2044
+ screenPos,
2045
+ window: {
2046
+ innerWidth: window.innerWidth,
2047
+ outerWidth: window.outerWidth,
2048
+ visualViewport: window.visualViewport ? {
2049
+ width: window.visualViewport.width,
2050
+ height: window.visualViewport.height
2051
+ } : null
2052
+ }
2044
2053
  });
2045
2054
 
2046
2055
  const leftPx = Math.round(correctedBaseLeftPx - padLeft);