@innovastudio/contentbox 1.3.23 → 1.3.24
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,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@innovastudio/contentbox",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.24",
|
4
4
|
"type": "module",
|
5
5
|
"description": "",
|
6
6
|
"main": "public/contentbox/contentbox.esm.js",
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"webpack-dev-server": "^4.0.0"
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
|
-
"@innovastudio/contentbuilder": "^1.2.
|
49
|
+
"@innovastudio/contentbuilder": "^1.2.20",
|
50
50
|
"js-beautify": "^1.14.0"
|
51
51
|
}
|
52
52
|
}
|
@@ -15536,8 +15536,7 @@ class Util {
|
|
15536
15536
|
dom.removeClass(elm, 'active');
|
15537
15537
|
elm.setAttribute('aria-hidden', true);
|
15538
15538
|
}
|
15539
|
-
});
|
15540
|
-
if (pop.style.display === 'flex') return; // important
|
15539
|
+
}); // if(pop.style.display === 'flex') return;
|
15541
15540
|
|
15542
15541
|
this.clearAllEventListener(pop); // for safety of uncleared events as a result of closing without hidePop()
|
15543
15542
|
|
@@ -81496,8 +81495,8 @@ class ContentBuilder {
|
|
81496
81495
|
col.addEventListener('keydown', this.handleCellKeydown.bind(this, col)); // ON KEYUP
|
81497
81496
|
|
81498
81497
|
col.addEventListener('keyup', this.handleCellKeyup.bind(this, col)); // ON FOCUS
|
81499
|
-
|
81500
|
-
|
81498
|
+
// col.addEventListener('focus', this.handleCellFocus.bind(this, col));
|
81499
|
+
// ON PASTE
|
81501
81500
|
|
81502
81501
|
col.addEventListener('paste', this.handleCellPaste.bind(this));
|
81503
81502
|
col.setAttribute('data-click', true);
|