@innovastudio/contentbuilder 1.5.16 → 1.5.17

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.16",
4
+ "version": "1.5.17",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -83334,7 +83334,9 @@ class Resizable {
83334
83334
  target.setAttribute('data--l-' + breakpoint, target.style.left);
83335
83335
  target.setAttribute('data--b-' + breakpoint, target.style.bottom);
83336
83336
  target.setAttribute('data--r-' + breakpoint, target.style.right);
83337
- if (!target.classList.contains('fluid')) target.setAttribute('data--w-' + breakpoint, target.style.width);
83337
+ if (!(target.classList.contains('fluid') && target.closest('.autolayout'))) {
83338
+ target.setAttribute('data--w-' + breakpoint, target.style.width);
83339
+ }
83338
83340
  target.setAttribute('data--h-' + breakpoint, target.style.height);
83339
83341
  } else {
83340
83342
  target.setAttribute('data--t', target.style.top);