@innovastudio/contentbuilder 1.5.156 → 1.5.157
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
@@ -3974,7 +3974,9 @@ button:focus-visible {
|
|
3974
3974
|
box-shadow: none;
|
3975
3975
|
}
|
3976
3976
|
#_cbhtml input[type=text],
|
3977
|
-
|
3977
|
+
#_cbhtml input[type=number],
|
3978
|
+
.is-ui input[type=text],
|
3979
|
+
.is-ui input[type=number] {
|
3978
3980
|
width: 100%;
|
3979
3981
|
height: 43px;
|
3980
3982
|
box-sizing: border-box;
|
@@ -3992,14 +3994,20 @@ button:focus-visible {
|
|
3992
3994
|
background-color: #f6f6f6;
|
3993
3995
|
}
|
3994
3996
|
#_cbhtml input[type=text]:focus,
|
3995
|
-
|
3997
|
+
#_cbhtml input[type=number]:focus,
|
3998
|
+
.is-ui input[type=text]:focus,
|
3999
|
+
.is-ui input[type=number]:focus {
|
3996
4000
|
outline: #3e93f7 2px solid;
|
3997
4001
|
outline-offset: -2px;
|
3998
4002
|
box-shadow: none;
|
3999
4003
|
}
|
4000
4004
|
#_cbhtml input[type=text] [type=checkbox], #_cbhtml input[type=text] [type=radio],
|
4005
|
+
#_cbhtml input[type=number] [type=checkbox],
|
4006
|
+
#_cbhtml input[type=number] [type=radio],
|
4001
4007
|
.is-ui input[type=text] [type=checkbox],
|
4002
|
-
.is-ui input[type=text] [type=radio]
|
4008
|
+
.is-ui input[type=text] [type=radio],
|
4009
|
+
.is-ui input[type=number] [type=checkbox],
|
4010
|
+
.is-ui input[type=number] [type=radio] {
|
4003
4011
|
position: relative;
|
4004
4012
|
opacity: 1;
|
4005
4013
|
margin-top: 0;
|
@@ -14481,6 +14481,8 @@ class HtmlUtil {
|
|
14481
14481
|
}
|
14482
14482
|
util.clearControls(); // NEW
|
14483
14483
|
|
14484
|
+
// Re-init plugins
|
14485
|
+
if (this.builder.win.builderRuntime) this.builder.win.builderRuntime.reinitialize();
|
14484
14486
|
this.builder.hideModal(modal);
|
14485
14487
|
}
|
14486
14488
|
viewHtmlExternal() {
|
@@ -15910,7 +15912,7 @@ const prepareSvgIcons = builder => {
|
|
15910
15912
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
15911
15913
|
<path d="M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2"></path>
|
15912
15914
|
</symbol>
|
15913
|
-
<symbol id="icon-folder" viewBox="0 0 24 24" stroke-width="1" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
15915
|
+
<symbol id="icon-folder" viewBox="0 0 24 24" stroke-width="1.4" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
15914
15916
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
15915
15917
|
<path d="M11 19h-6a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2.5"></path>
|
15916
15918
|
<path d="M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"></path>
|