@innovastudio/contentbox 1.2.31 → 1.2.32
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,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innovastudio/contentbox",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "1.2.32",
|
|
5
4
|
"description": "",
|
|
6
5
|
"main": "public/contentbox/contentbox.esm.js",
|
|
7
6
|
"files": [
|
|
@@ -46,7 +45,7 @@
|
|
|
46
45
|
"webpack-dev-server": "^4.0.0"
|
|
47
46
|
},
|
|
48
47
|
"dependencies": {
|
|
49
|
-
"@innovastudio/contentbuilder": "^1.1.
|
|
48
|
+
"@innovastudio/contentbuilder": "^1.1.25",
|
|
50
49
|
"js-beautify": "^1.14.0"
|
|
51
50
|
}
|
|
52
51
|
}
|
|
@@ -64660,11 +64660,18 @@ class ColumnTool {
|
|
|
64660
64660
|
dom$m.addCssClass(cell, classes.end, classes);
|
|
64661
64661
|
dom$m.addClass(elm, 'on');
|
|
64662
64662
|
}
|
|
64663
|
+
|
|
64664
|
+
cell.style.justifyContent = '';
|
|
64665
|
+
cell.style.alignItems = '';
|
|
64663
64666
|
} else {
|
|
64664
64667
|
dom$m.removeCssClasses(cell, this.builder.cssClasses.display);
|
|
64665
64668
|
dom$m.removeCssClasses(cell, this.builder.cssClasses.flexDirection);
|
|
64666
64669
|
dom$m.removeCssClasses(cell, this.builder.cssClasses.justifyContent);
|
|
64667
64670
|
dom$m.removeCssClasses(cell, this.builder.cssClasses.alignItems);
|
|
64671
|
+
cell.style.display = '';
|
|
64672
|
+
cell.style.flexDirection = '';
|
|
64673
|
+
cell.style.justifyContent = '';
|
|
64674
|
+
cell.style.alignItems = '';
|
|
64668
64675
|
}
|
|
64669
64676
|
} else {
|
|
64670
64677
|
cell.style.display = 'flex';
|