@innovastudio/contentbuilder 1.3.29 → 1.3.31
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
|
@@ -4525,7 +4525,8 @@ button:focus-visible {
|
|
|
4525
4525
|
.is-tool.is-col-tool svg {
|
|
4526
4526
|
width: 23px;
|
|
4527
4527
|
height: 23px;
|
|
4528
|
-
fill: #fff;
|
|
4528
|
+
fill: #fff !important;
|
|
4529
|
+
/* $ui-columntool-colored-button-svg-fill */
|
|
4529
4530
|
}
|
|
4530
4531
|
.is-tool.is-col-tool .cell-more svg {
|
|
4531
4532
|
width: 14px;
|
|
@@ -4597,7 +4598,8 @@ button:focus-visible {
|
|
|
4597
4598
|
.is-builder[gray] .is-tool.is-col-tool svg {
|
|
4598
4599
|
width: 18px;
|
|
4599
4600
|
height: 18px;
|
|
4600
|
-
fill: #000;
|
|
4601
|
+
fill: #000 !important;
|
|
4602
|
+
/* $ui-columntool-grayed-button-svg-fill */
|
|
4601
4603
|
}
|
|
4602
4604
|
.is-builder[gray] .is-tool.is-col-tool .cell-more svg {
|
|
4603
4605
|
width: 12px;
|
|
@@ -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;
|
|
@@ -73529,7 +73532,7 @@ class ContentStuff {
|
|
|
73529
73532
|
.is-tool.is-col-tool svg {
|
|
73530
73533
|
width: 23px;
|
|
73531
73534
|
height: 23px;
|
|
73532
|
-
fill: #fff;
|
|
73535
|
+
fill: #fff !important;
|
|
73533
73536
|
}
|
|
73534
73537
|
.is-tool.is-col-tool .cell-more svg {
|
|
73535
73538
|
width: 14px;
|
|
@@ -73558,7 +73561,7 @@ class ContentStuff {
|
|
|
73558
73561
|
.is-builder[gray] .is-tool.is-col-tool svg {
|
|
73559
73562
|
width: 18px;
|
|
73560
73563
|
height: 18px;
|
|
73561
|
-
fill: #000;
|
|
73564
|
+
fill: #000 !important;
|
|
73562
73565
|
}
|
|
73563
73566
|
.is-builder[gray] .is-tool.is-col-tool .cell-more svg {
|
|
73564
73567
|
width: 12px;
|
|
@@ -75135,7 +75138,7 @@ class ContentBuilder {
|
|
|
75135
75138
|
.is-tool.is-col-tool svg {
|
|
75136
75139
|
width: 23px;
|
|
75137
75140
|
height: 23px;
|
|
75138
|
-
fill: #fff;
|
|
75141
|
+
fill: #fff !important;
|
|
75139
75142
|
}
|
|
75140
75143
|
.is-tool.is-col-tool .cell-more svg {
|
|
75141
75144
|
width: 14px;
|
|
@@ -75166,7 +75169,7 @@ class ContentBuilder {
|
|
|
75166
75169
|
.is-builder[gray] .is-tool.is-col-tool svg {
|
|
75167
75170
|
width: 18px;
|
|
75168
75171
|
height: 18px;
|
|
75169
|
-
fill: #000;
|
|
75172
|
+
fill: #000 !important;
|
|
75170
75173
|
}
|
|
75171
75174
|
.is-builder[gray] .is-tool.is-col-tool .cell-more svg {
|
|
75172
75175
|
width: 12px;
|