@innovastudio/contentbuilder 1.5.97 → 1.5.99
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);
|
@@ -50047,6 +50048,7 @@ class Module {
|
|
50047
50048
|
class Code {
|
50048
50049
|
constructor(builder) {
|
50049
50050
|
this.builder = builder;
|
50051
|
+
this.renderTool();
|
50050
50052
|
}
|
50051
50053
|
renderTool() {
|
50052
50054
|
const builderStuff = this.builder.builderStuff;
|
@@ -51717,6 +51719,8 @@ class RowTool {
|
|
51717
51719
|
constructor(builder) {
|
51718
51720
|
this.builder = builder;
|
51719
51721
|
this.grid = new Grid(builder); // a must (also for ContentBox's command.js)
|
51722
|
+
|
51723
|
+
this.renderRowMore();
|
51720
51724
|
}
|
51721
51725
|
|
51722
51726
|
// Render row & column tools on each row
|
@@ -53611,6 +53615,7 @@ class ColumnTool {
|
|
53611
53615
|
});
|
53612
53616
|
});
|
53613
53617
|
}
|
53618
|
+
this.renderColMore();
|
53614
53619
|
}
|
53615
53620
|
renderColMore() {
|
53616
53621
|
const builder = this.builder;
|