@innovastudio/contentbox 1.4.71 → 1.4.72
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
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@innovastudio/contentbox",
|
3
3
|
"type": "module",
|
4
|
-
"version": "1.4.
|
4
|
+
"version": "1.4.72",
|
5
5
|
"description": "",
|
6
6
|
"main": "public/contentbox/contentbox.esm.js",
|
7
7
|
"files": [
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"webpack-dev-server": "^4.0.0"
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
|
-
"@innovastudio/contentbuilder": "^1.3.
|
49
|
+
"@innovastudio/contentbuilder": "^1.3.85",
|
50
50
|
"js-beautify": "^1.14.0"
|
51
51
|
}
|
52
52
|
}
|
@@ -484,6 +484,7 @@ const prepareSvgIcons$1 = builder => {
|
|
484
484
|
<circle cx="12" cy="17" r="1"></circle>
|
485
485
|
</symbol>
|
486
486
|
|
487
|
+
|
487
488
|
</defs>
|
488
489
|
</svg>`;
|
489
490
|
const builderStuff = builder.builderStuff;
|
@@ -66420,7 +66421,7 @@ class Hyperlink {
|
|
66420
66421
|
<input id="inpCreateLinkText" class="input-text" type="text" style="width:100%;"/>
|
66421
66422
|
|
66422
66423
|
<label for="inpCreateLinkTitle" style="margin-top:14px;display:block">${util.out('Title')}:</label>
|
66423
|
-
<input id="inpCreateLinkTitle" class="input-title" type="text" style="width:100%;
|
66424
|
+
<input id="inpCreateLinkTitle" class="input-title" type="text" style="width:100%;"/>
|
66424
66425
|
|
66425
66426
|
<div style="text-align:right;margin-top:14px;">
|
66426
66427
|
<button title="${util.out('Cancel')}" class="input-cancel classic-secondary">${util.out('Cancel')}</button>
|
@@ -69288,7 +69289,6 @@ class RowTool {
|
|
69288
69289
|
const dom = this.builder.dom;
|
69289
69290
|
this.dom = dom;
|
69290
69291
|
this.grid = new Grid(builder);
|
69291
|
-
const htmlutil = new HtmlUtil(builder);
|
69292
69292
|
let rowMore = builderStuff.querySelector('.rowmore');
|
69293
69293
|
let htmlbutton = '';
|
69294
69294
|
if (builder.opts.rowHtmlEditor) htmlbutton = `<button type="button" title="${util.out('HTML')}" class="row-html">
|
@@ -69337,6 +69337,7 @@ class RowTool {
|
|
69337
69337
|
}
|
69338
69338
|
|
69339
69339
|
if (!row) return;
|
69340
|
+
const htmlutil = new HtmlUtil(builder);
|
69340
69341
|
htmlutil.view('row');
|
69341
69342
|
});
|
69342
69343
|
}
|
@@ -89944,6 +89945,7 @@ class ContentBuilder {
|
|
89944
89945
|
|
89945
89946
|
this.colTool = new ColumnTool(this); // Render Column Tool
|
89946
89947
|
|
89948
|
+
this._rowTool = new RowTool(this);
|
89947
89949
|
this.mediaPicker = new MediaPicker(this); // Extend the onChange function
|
89948
89950
|
|
89949
89951
|
var oldget = this.opts.onChange;
|
@@ -90466,8 +90468,8 @@ class ContentBuilder {
|
|
90466
90468
|
// Render Row tool
|
90467
90469
|
|
90468
90470
|
|
90469
|
-
this.
|
90470
|
-
|
90471
|
+
this._rowTool.render(row); // Render Row Add tool
|
90472
|
+
|
90471
90473
|
|
90472
90474
|
const rowaddtool = new RowAddTool(this);
|
90473
90475
|
rowaddtool.render(row); // Apply behavior on each column
|
@@ -92081,8 +92083,7 @@ class ContentBuilder {
|
|
92081
92083
|
|
92082
92084
|
this.element.click(col, e);
|
92083
92085
|
this.colTool.click(col);
|
92084
|
-
this.elmTool.click(col, e);
|
92085
|
-
|
92086
|
+
this.elmTool.click(col, e);
|
92086
92087
|
this.rte.click(col, e); // Grid Editor Status
|
92087
92088
|
// On/off lock button
|
92088
92089
|
|