@innovastudio/contentbuilder 1.3.29 → 1.3.30

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.3.29",
4
+ "version": "1.3.30",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -54990,7 +54990,9 @@ class RowTool {
54990
54990
  if (elm) dom.addEventListener(elm, 'click', () => {
54991
54991
  this.grid.duplicateRow(); // this.rowMore.style.display = '';
54992
54992
 
54993
- util.hidePop(rowMore);
54993
+ util.hidePop(rowMore); //Hide Column tool (new!)
54994
+
54995
+ util.hideColumnTool();
54994
54996
  util.clearControls();
54995
54997
  });
54996
54998
  elm = rowMore.querySelector('.row-html');
@@ -64620,10 +64622,11 @@ class ElementTool {
64620
64622
  left = elmMore.getBoundingClientRect().left;
64621
64623
  top = top + adjY;
64622
64624
  left = left + adjX;
64623
- }
64625
+ } // elementMore.style.display = 'flex';
64624
64626
 
64625
- elementMore.style.display = 'flex'; // this.util.showPop(elementMore);
64626
64627
 
64628
+ const btnMore = elementTool.querySelector('.elm-more');
64629
+ this.util.showPop(elementMore, false, btnMore);
64627
64630
  const w = elementMore.offsetWidth; //to get value, element must not hidden (display:none). So set display:flex before this.
64628
64631
 
64629
64632
  const h = elementMore.offsetHeight;