@innovastudio/contentbuilder 1.2.19 → 1.2.22
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 -2
- package/public/contentbuilder/contentbuilder.css +40 -29
- package/public/contentbuilder/contentbuilder.esm.js +13602 -10121
- package/public/contentbuilder/contentbuilder.min.js +50 -22
- package/public/contentbuilder/plugins/preview/plugin.js +19 -2
- package/public/contentbuilder/plugins/searchreplace/plugin.js +98 -34
- package/public/contentbuilder/plugins/showgrid/plugin.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innovastudio/contentbuilder",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "public/contentbuilder/contentbuilder.esm.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"blueimp-load-image": "^5.16.0",
|
|
54
54
|
"cropperjs": "^1.5.12",
|
|
55
55
|
"js-beautify": "^1.14.0",
|
|
56
|
-
"moveable": "^0.
|
|
56
|
+
"moveable": "^0.30.0",
|
|
57
57
|
"rangy": "^1.3.0",
|
|
58
58
|
"sortablejs": "^1.14.0"
|
|
59
59
|
}
|
|
@@ -121,40 +121,40 @@ button:focus {
|
|
|
121
121
|
display: flex;
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
|
-
/*
|
|
125
124
|
.sortable-drag {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
125
|
+
background: transparent;
|
|
126
|
+
outline: none !important;
|
|
127
|
+
}
|
|
128
|
+
.sortable-drag * {
|
|
129
|
+
opacity: 0;
|
|
130
|
+
}
|
|
131
|
+
.sortable-drag .is-row-tool {
|
|
132
|
+
opacity: 0;
|
|
134
133
|
}
|
|
135
134
|
|
|
136
135
|
.sortable-ghost {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
136
|
+
background: rgba(204, 204, 204, 0.15);
|
|
137
|
+
width: 100%;
|
|
138
|
+
outline: none !important;
|
|
139
|
+
}
|
|
140
|
+
.sortable-ghost * {
|
|
141
|
+
outline: none !important;
|
|
142
|
+
}
|
|
143
|
+
.sortable-ghost .is-row-tool {
|
|
144
|
+
display: none !important;
|
|
146
145
|
}
|
|
147
146
|
|
|
148
147
|
.sortable-drag::before {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
148
|
+
content: " ";
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
position: absolute;
|
|
152
|
+
top: 0;
|
|
153
|
+
left: 0;
|
|
154
|
+
background: rgba(0, 0, 0, 0.03);
|
|
155
|
+
transform-origin: top left;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
158
|
#_cbhtml .snippet-item {
|
|
159
159
|
cursor: move !important;
|
|
160
160
|
}
|
|
@@ -2862,6 +2862,17 @@ button:focus {
|
|
|
2862
2862
|
z-index: 10;
|
|
2863
2863
|
touch-action: none;
|
|
2864
2864
|
}
|
|
2865
|
+
#_cbhtml .is-tool#divImageResizerOverlay,
|
|
2866
|
+
.is-ui .is-tool#divImageResizerOverlay {
|
|
2867
|
+
background: rgba(0, 0, 0, 0.01);
|
|
2868
|
+
position: fixed;
|
|
2869
|
+
width: 100vw;
|
|
2870
|
+
height: 100vh;
|
|
2871
|
+
top: 0;
|
|
2872
|
+
left: 0;
|
|
2873
|
+
z-index: 9;
|
|
2874
|
+
display: none;
|
|
2875
|
+
}
|
|
2865
2876
|
#_cbhtml .is-tool.is-spacer-tool,
|
|
2866
2877
|
.is-ui .is-tool.is-spacer-tool {
|
|
2867
2878
|
border: none;
|
|
@@ -4076,7 +4087,7 @@ button:focus {
|
|
|
4076
4087
|
font-size: 12px;
|
|
4077
4088
|
font-weight: 300;
|
|
4078
4089
|
text-transform: uppercase;
|
|
4079
|
-
text-align:
|
|
4090
|
+
text-align: center;
|
|
4080
4091
|
line-height: unset;
|
|
4081
4092
|
position: relative;
|
|
4082
4093
|
border-radius: 1px;
|
|
@@ -4473,7 +4484,7 @@ button:focus {
|
|
|
4473
4484
|
|
|
4474
4485
|
.row-add-initial {
|
|
4475
4486
|
width: 100%;
|
|
4476
|
-
height:
|
|
4487
|
+
height: 120px;
|
|
4477
4488
|
font-family: sans-serif;
|
|
4478
4489
|
font-size: 12px;
|
|
4479
4490
|
text-transform: uppercase;
|