@innovastudio/contentbuilder 1.5.16 → 1.5.18

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.16",
4
+ "version": "1.5.18",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -65887,6 +65887,7 @@ class Rte {
65887
65887
  // Reset Zoom
65888
65888
  const btnResetZoom = builderStuff.querySelector('.reset-zoom');
65889
65889
  btnResetZoom.addEventListener('click', () => {
65890
+ this.rteZoomSlider.value = 100;
65890
65891
  this.builder.opts.zoom = 1;
65891
65892
  localStorage.setItem('_zoom', 1); // Save
65892
65893
 
@@ -83334,7 +83335,9 @@ class Resizable {
83334
83335
  target.setAttribute('data--l-' + breakpoint, target.style.left);
83335
83336
  target.setAttribute('data--b-' + breakpoint, target.style.bottom);
83336
83337
  target.setAttribute('data--r-' + breakpoint, target.style.right);
83337
- if (!target.classList.contains('fluid')) target.setAttribute('data--w-' + breakpoint, target.style.width);
83338
+ if (!(target.classList.contains('fluid') && target.closest('.autolayout'))) {
83339
+ target.setAttribute('data--w-' + breakpoint, target.style.width);
83340
+ }
83338
83341
  target.setAttribute('data--h-' + breakpoint, target.style.height);
83339
83342
  } else {
83340
83343
  target.setAttribute('data--t', target.style.top);