@innovastudio/contentbox 1.6.44 → 1.6.45

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.44",
4
+ "version": "1.6.45",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -14926,15 +14926,17 @@ class PanelBlock {
14926
14926
  elms.forEach(target => {
14927
14927
  target.classList.add('block-steady');
14928
14928
  this.builder.editor.eb.common.clearBreakpoint(target);
14929
- this.builder.editor.eb.common.applyPixels(target);
14930
- this.builder.editor.eb.common.applyPercentage(target);
14929
+ this.builder.editor.eb.common.applyPixels(target); // this.builder.editor.eb.common.applyPercentage(target);
14930
+
14931
+ this.builder.editor.eb.resizable.updateBlockStyle(target);
14931
14932
  });
14932
14933
  } else {
14933
14934
  elms.forEach(target => {
14934
14935
  target.classList.remove('block-steady');
14935
14936
  this.builder.editor.eb.common.clearBreakpoint(target);
14936
- this.builder.editor.eb.common.applyPixels(target);
14937
- this.builder.editor.eb.common.applyPercentage(target);
14937
+ this.builder.editor.eb.common.applyPixels(target); // this.builder.editor.eb.common.applyPercentage(target);
14938
+
14939
+ this.builder.editor.eb.resizable.updateBlockStyle(target);
14938
14940
  });
14939
14941
  }
14940
14942
  });