@innovastudio/contentbox 1.4.11 → 1.4.12

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.4.11",
4
+ "version": "1.4.12",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -46,7 +46,7 @@
46
46
  "webpack-dev-server": "^4.0.0"
47
47
  },
48
48
  "dependencies": {
49
- "@innovastudio/contentbuilder": "^1.3.9",
49
+ "@innovastudio/contentbuilder": "^1.3.10",
50
50
  "js-beautify": "^1.14.0"
51
51
  }
52
52
  }
@@ -27655,9 +27655,12 @@ class HtmlUtil {
27655
27655
  col.style.cursor = '';
27656
27656
  });
27657
27657
  });
27658
- });
27658
+ }); // cleanup cursor from drag to resize columns
27659
+
27659
27660
  const rows = dom$h.elementChildren(tmp);
27660
27661
  rows.forEach(row => {
27662
+ row.style.cursor = ''; //if tmp is row html, then this is a column
27663
+
27661
27664
  const cols = dom$h.elementChildren(row);
27662
27665
  cols.forEach(col => {
27663
27666
  col.style.cursor = '';