@innovastudio/contentbuilder 1.1.24 → 1.1.25

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
- "version": "1.1.24",
3
+ "version": "1.1.25",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
@@ -54046,11 +54046,18 @@ class ColumnTool {
54046
54046
  dom$m.addCssClass(cell, classes.end, classes);
54047
54047
  dom$m.addClass(elm, 'on');
54048
54048
  }
54049
+
54050
+ cell.style.justifyContent = '';
54051
+ cell.style.alignItems = '';
54049
54052
  } else {
54050
54053
  dom$m.removeCssClasses(cell, this.builder.cssClasses.display);
54051
54054
  dom$m.removeCssClasses(cell, this.builder.cssClasses.flexDirection);
54052
54055
  dom$m.removeCssClasses(cell, this.builder.cssClasses.justifyContent);
54053
54056
  dom$m.removeCssClasses(cell, this.builder.cssClasses.alignItems);
54057
+ cell.style.display = '';
54058
+ cell.style.flexDirection = '';
54059
+ cell.style.justifyContent = '';
54060
+ cell.style.alignItems = '';
54054
54061
  }
54055
54062
  } else {
54056
54063
  cell.style.display = 'flex';