@innovastudio/contentbuilder 1.5.97 → 1.5.98
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
@@ -4975,9 +4975,10 @@ class Util {
|
|
4975
4975
|
const dom = this.dom;
|
4976
4976
|
pop.style.display = '';
|
4977
4977
|
dom.removeClass(pop, 'active');
|
4978
|
-
|
4979
|
-
|
4980
|
-
//
|
4978
|
+
|
4979
|
+
// this.builder.doc.activeElement.blur();
|
4980
|
+
// document.activeElement.blur();
|
4981
|
+
this.builder.doc.body.focus();
|
4981
4982
|
pop.setAttribute('aria-hidden', true);
|
4982
4983
|
|
4983
4984
|
// pop.removeEventListener('keydown', this.handlePopKeyDown);
|
@@ -51717,6 +51718,8 @@ class RowTool {
|
|
51717
51718
|
constructor(builder) {
|
51718
51719
|
this.builder = builder;
|
51719
51720
|
this.grid = new Grid(builder); // a must (also for ContentBox's command.js)
|
51721
|
+
|
51722
|
+
this.renderRowMore();
|
51720
51723
|
}
|
51721
51724
|
|
51722
51725
|
// Render row & column tools on each row
|
@@ -53611,6 +53614,7 @@ class ColumnTool {
|
|
53611
53614
|
});
|
53612
53615
|
});
|
53613
53616
|
}
|
53617
|
+
this.renderColMore();
|
53614
53618
|
}
|
53615
53619
|
renderColMore() {
|
53616
53620
|
const builder = this.builder;
|