@innovastudio/contentbuilder 1.0.83 → 1.0.86
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 +2 -1
- package/public/contentbuilder/contentbuilder.css +21 -5
- package/public/contentbuilder/contentbuilder.esm.js +5416 -747
- package/public/contentbuilder/contentbuilder.min.js +85 -85
- package/public/contentbuilder/plugins/buttoneditor/plugin.js +1 -1
- package/public/contentbuilder/plugins/preview/plugin.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innovastudio/contentbuilder",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.86",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "public/contentbuilder/contentbuilder.esm.js",
|
|
6
6
|
"files": [
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"js-beautify": "^1.14.0",
|
|
50
50
|
"moveable": "^0.26.0",
|
|
51
51
|
"nodemailer": "^6.7.2",
|
|
52
|
+
"rangy": "^1.3.0",
|
|
52
53
|
"serve-static": "^1.14.1",
|
|
53
54
|
"sortablejs": "^1.14.0"
|
|
54
55
|
}
|
|
@@ -8,6 +8,10 @@ svg {
|
|
|
8
8
|
pointer-events: none;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
[contenteditable] svg {
|
|
12
|
+
pointer-events: initial;
|
|
13
|
+
}
|
|
14
|
+
|
|
11
15
|
.is-icon-flex {
|
|
12
16
|
width: 16px;
|
|
13
17
|
height: 16px;
|
|
@@ -74,7 +78,7 @@ button:focus {
|
|
|
74
78
|
.is-builder table.default td {
|
|
75
79
|
border: transparent 1px dashed;
|
|
76
80
|
}
|
|
77
|
-
.is-builder .cell-active .elm-active {
|
|
81
|
+
.is-builder .cell-active .elm-active:not(button) {
|
|
78
82
|
background: rgba(200, 200, 201, 0.11);
|
|
79
83
|
}
|
|
80
84
|
.is-builder .cell-active table.elm-active {
|
|
@@ -2530,14 +2534,16 @@ button:focus {
|
|
|
2530
2534
|
.is-ui .is-tool.is-module-tool > button svg {
|
|
2531
2535
|
fill: #121212;
|
|
2532
2536
|
}
|
|
2533
|
-
#_cbhtml .is-tool#divLinkTool button,
|
|
2534
|
-
.is-ui .is-tool#divLinkTool button
|
|
2537
|
+
#_cbhtml .is-tool#divLinkTool button, #_cbhtml .is-tool#divSvgTool button,
|
|
2538
|
+
.is-ui .is-tool#divLinkTool button,
|
|
2539
|
+
.is-ui .is-tool#divSvgTool button {
|
|
2535
2540
|
width: 30px;
|
|
2536
2541
|
height: 30px;
|
|
2537
2542
|
background: rgba(243, 243, 243, 0.9);
|
|
2538
2543
|
}
|
|
2539
|
-
#_cbhtml .is-tool#divLinkTool button svg,
|
|
2540
|
-
.is-ui .is-tool#divLinkTool button svg
|
|
2544
|
+
#_cbhtml .is-tool#divLinkTool button svg, #_cbhtml .is-tool#divSvgTool button svg,
|
|
2545
|
+
.is-ui .is-tool#divLinkTool button svg,
|
|
2546
|
+
.is-ui .is-tool#divSvgTool button svg {
|
|
2541
2547
|
fill: #121212;
|
|
2542
2548
|
}
|
|
2543
2549
|
#_cbhtml .dot,
|
|
@@ -4479,3 +4485,13 @@ button:focus {
|
|
|
4479
4485
|
.is-ui svg {
|
|
4480
4486
|
max-width: unset;
|
|
4481
4487
|
}
|
|
4488
|
+
|
|
4489
|
+
/* Prevent css framework overide (Tailwind) */
|
|
4490
|
+
.is-ui svg {
|
|
4491
|
+
display: initial !important;
|
|
4492
|
+
}
|
|
4493
|
+
|
|
4494
|
+
.is-section-tool svg,
|
|
4495
|
+
.is-row-tool svg {
|
|
4496
|
+
display: initial !important;
|
|
4497
|
+
}
|