@innovastudio/contentbox 1.6.36 → 1.6.37
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innovastudio/contentbox",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.37",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "public/contentbox/contentbox.esm.js",
|
|
7
7
|
"files": [
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"ws": "^8.13.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@innovastudio/contentbuilder": "^1.5.
|
|
55
|
+
"@innovastudio/contentbuilder": "^1.5.17",
|
|
56
56
|
"js-beautify": "^1.14.0"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -108797,7 +108797,9 @@ class Resizable {
|
|
|
108797
108797
|
target.setAttribute('data--l-' + breakpoint, target.style.left);
|
|
108798
108798
|
target.setAttribute('data--b-' + breakpoint, target.style.bottom);
|
|
108799
108799
|
target.setAttribute('data--r-' + breakpoint, target.style.right);
|
|
108800
|
-
if (!target.classList.contains('fluid')
|
|
108800
|
+
if (!(target.classList.contains('fluid') && target.closest('.autolayout'))) {
|
|
108801
|
+
target.setAttribute('data--w-' + breakpoint, target.style.width);
|
|
108802
|
+
}
|
|
108801
108803
|
target.setAttribute('data--h-' + breakpoint, target.style.height);
|
|
108802
108804
|
} else {
|
|
108803
108805
|
target.setAttribute('data--t', target.style.top);
|