@blorkfield/overlay-core 0.11.5 → 0.11.6

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.cjs CHANGED
@@ -2318,6 +2318,9 @@ var OverlayScene = class {
2318
2318
  y: entry.originalPosition.y + dy
2319
2319
  };
2320
2320
  }
2321
+ if (entry.domElement && entry.tags.includes("static")) {
2322
+ this.updateDOMElementTransform(entry);
2323
+ }
2321
2324
  if (entry.domShadowElement) {
2322
2325
  const currentLeft = parseFloat(entry.domShadowElement.style.left) || 0;
2323
2326
  const currentTop = parseFloat(entry.domShadowElement.style.top) || 0;