@innovastudio/contentbuilder 1.5.192 → 1.5.193

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/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.5.192",
4
+ "version": "1.5.193",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "types": "index.d.ts",
@@ -95294,6 +95294,10 @@ class ContentBuilder {
95294
95294
  const style = window.getComputedStyle(row);
95295
95295
  const gapValue = parseFloat(style.gap) || 0;
95296
95296
  const columns = row.querySelectorAll('.column');
95297
+ columns.forEach(col => {
95298
+ if (col.style.width === '100%') col.style.width = ''; // cleanup
95299
+ });
95300
+
95297
95301
  let allHaveWidth = true;
95298
95302
  let totalWidthPercent = 0;
95299
95303
  columns.forEach(col => {