@uniformdev/mesh-sdk 19.57.0 → 19.58.0

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.esm.js CHANGED
@@ -550,7 +550,7 @@ var createSdkWindow = ({
550
550
  return;
551
551
  }
552
552
  let maxBottom = windowInstance.document.documentElement.getBoundingClientRect().height;
553
- windowInstance.document.querySelectorAll("div, section, article, menu, nav, footer").forEach((div) => {
553
+ windowInstance.document.querySelectorAll("[data-auto-resize-opt-in]").forEach((div) => {
554
554
  const bottom = div.getBoundingClientRect().bottom;
555
555
  maxBottom = Math.max(maxBottom, bottom);
556
556
  });
package/dist/index.js CHANGED
@@ -587,7 +587,7 @@ var createSdkWindow = ({
587
587
  return;
588
588
  }
589
589
  let maxBottom = windowInstance.document.documentElement.getBoundingClientRect().height;
590
- windowInstance.document.querySelectorAll("div, section, article, menu, nav, footer").forEach((div) => {
590
+ windowInstance.document.querySelectorAll("[data-auto-resize-opt-in]").forEach((div) => {
591
591
  const bottom = div.getBoundingClientRect().bottom;
592
592
  maxBottom = Math.max(maxBottom, bottom);
593
593
  });
package/dist/index.mjs CHANGED
@@ -550,7 +550,7 @@ var createSdkWindow = ({
550
550
  return;
551
551
  }
552
552
  let maxBottom = windowInstance.document.documentElement.getBoundingClientRect().height;
553
- windowInstance.document.querySelectorAll("div, section, article, menu, nav, footer").forEach((div) => {
553
+ windowInstance.document.querySelectorAll("[data-auto-resize-opt-in]").forEach((div) => {
554
554
  const bottom = div.getBoundingClientRect().bottom;
555
555
  maxBottom = Math.max(maxBottom, bottom);
556
556
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "19.57.0",
3
+ "version": "19.58.0",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -33,14 +33,14 @@
33
33
  "access": "public"
34
34
  },
35
35
  "dependencies": {
36
- "@uniformdev/canvas": "19.57.0",
37
- "@uniformdev/context": "19.57.0",
38
- "@uniformdev/project-map": "19.57.0",
36
+ "@uniformdev/canvas": "19.58.0",
37
+ "@uniformdev/context": "19.58.0",
38
+ "@uniformdev/project-map": "19.58.0",
39
39
  "imagesloaded": "^5.0.0",
40
40
  "mitt": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/imagesloaded": "^4.1.2"
44
44
  },
45
- "gitHead": "34b8d4a74f9029d507640eb8ef52d7bcf7e6d552"
45
+ "gitHead": "1e355c1405dc744f333cbce45766965c160c535c"
46
46
  }