@innovastudio/contentbox 1.0.48 → 1.0.49
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
|
@@ -8201,6 +8201,8 @@ class EditBox {
|
|
|
8201
8201
|
container.style.maxWidth = val + 'px';
|
|
8202
8202
|
dom$G.addClass(container, 'is-content-' + val); //new
|
|
8203
8203
|
|
|
8204
|
+
dom$G.addClass(container, 'v2'); //new
|
|
8205
|
+
|
|
8204
8206
|
modalEditBox.querySelector('.inp-box-size').value = val; //Trigger Change event
|
|
8205
8207
|
|
|
8206
8208
|
this.builder.settings.onChange();
|
|
@@ -8243,6 +8245,8 @@ class EditBox {
|
|
|
8243
8245
|
if (val <= 300) val = 300;
|
|
8244
8246
|
if (val >= 2700) val = 2700;
|
|
8245
8247
|
dom$G.addClass(container, 'is-content-' + val); //new
|
|
8248
|
+
|
|
8249
|
+
dom$G.addClass(container, 'v2'); //new
|
|
8246
8250
|
} //Trigger Change event
|
|
8247
8251
|
|
|
8248
8252
|
|