@innovastudio/contentbuilder 1.4.50 → 1.4.52
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 +18 -5
- package/public/contentbuilder/contentbuilder.esm.js +3458 -5591
- package/public/contentbuilder/contentbuilder.min.js +2 -2
- package/public/contentbuilder/lang/en.js +11 -1
- package/public/contentbuilder/lang/fr.js +11 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@innovastudio/contentbuilder",
|
3
3
|
"type": "module",
|
4
|
-
"version": "1.4.
|
4
|
+
"version": "1.4.52",
|
5
5
|
"description": "",
|
6
6
|
"main": "public/contentbuilder/contentbuilder.esm.js",
|
7
7
|
"files": [
|
@@ -37,6 +37,7 @@
|
|
37
37
|
"express-session": "^1.17.2",
|
38
38
|
"formidable-serverless": "^1.1.1",
|
39
39
|
"mini-css-extract-plugin": "^2.3.0",
|
40
|
+
"multer": "^1.4.5-lts.1",
|
40
41
|
"rollup": "^2.57.0",
|
41
42
|
"rollup-plugin-terser": "^7.0.2",
|
42
43
|
"sass": "^1.42.1",
|
@@ -1332,7 +1332,7 @@ button:focus-visible {
|
|
1332
1332
|
height: auto;
|
1333
1333
|
width: 0;
|
1334
1334
|
flex-direction: column;
|
1335
|
-
box-shadow: rgba(0, 0, 0, 0.
|
1335
|
+
box-shadow: rgba(0, 0, 0, 0.04) 5px 0px 9px 0px;
|
1336
1336
|
}
|
1337
1337
|
#_cbhtml[toolbarleft] .is-rte-pop > div,
|
1338
1338
|
.is-ui[toolbarleft] .is-rte-pop > div {
|
@@ -1587,7 +1587,7 @@ button:focus-visible {
|
|
1587
1587
|
height: auto;
|
1588
1588
|
width: 0;
|
1589
1589
|
flex-direction: column;
|
1590
|
-
box-shadow: rgba(0, 0, 0, 0.
|
1590
|
+
box-shadow: rgba(0, 0, 0, 0.04) -6px 1px 9px 0px;
|
1591
1591
|
}
|
1592
1592
|
#_cbhtml[toolbarright] .is-rte-pop > div,
|
1593
1593
|
.is-ui[toolbarright] .is-rte-pop > div {
|
@@ -1846,7 +1846,7 @@ button:focus-visible {
|
|
1846
1846
|
left: 0;
|
1847
1847
|
display: none;
|
1848
1848
|
z-index: 10004;
|
1849
|
-
background: rgba(
|
1849
|
+
background: rgba(0, 0, 0, 0.07);
|
1850
1850
|
justify-content: center;
|
1851
1851
|
align-items: center;
|
1852
1852
|
flex-direction: column;
|
@@ -1854,6 +1854,19 @@ button:focus-visible {
|
|
1854
1854
|
font-weight: 300;
|
1855
1855
|
outline: none;
|
1856
1856
|
}
|
1857
|
+
#_cbhtml .is-modal .pickcolorclass, #_cbhtml .is-modal .imagesource, #_cbhtml .is-modal .imageadjust, #_cbhtml .is-modal .imageadjust2,
|
1858
|
+
#_cbhtml .is-modal .audioselect, #_cbhtml .is-modal .imageselect, #_cbhtml .is-modal .mediaselect, #_cbhtml .is-modal .videoselect, #_cbhtml .is-modal .mediasource,
|
1859
|
+
.is-ui .is-modal .pickcolorclass,
|
1860
|
+
.is-ui .is-modal .imagesource,
|
1861
|
+
.is-ui .is-modal .imageadjust,
|
1862
|
+
.is-ui .is-modal .imageadjust2,
|
1863
|
+
.is-ui .is-modal .audioselect,
|
1864
|
+
.is-ui .is-modal .imageselect,
|
1865
|
+
.is-ui .is-modal .mediaselect,
|
1866
|
+
.is-ui .is-modal .videoselect,
|
1867
|
+
.is-ui .is-modal .mediasource {
|
1868
|
+
z-index: 10005 !important;
|
1869
|
+
}
|
1857
1870
|
#_cbhtml .is-modal a:focus,
|
1858
1871
|
.is-ui .is-modal a:focus {
|
1859
1872
|
outline: #3e93f7 2px solid;
|
@@ -1936,14 +1949,14 @@ button:focus-visible {
|
|
1936
1949
|
left: 0;
|
1937
1950
|
width: 100%;
|
1938
1951
|
height: 100%;
|
1939
|
-
background: rgba(
|
1952
|
+
background: rgba(0, 0, 0, 0.07);
|
1940
1953
|
z-index: -1;
|
1941
1954
|
max-width: none !important;
|
1942
1955
|
margin: 0 !important;
|
1943
1956
|
}
|
1944
1957
|
#_cbhtml .is-modal .is-modal-overlay.overlay-stay,
|
1945
1958
|
.is-ui .is-modal .is-modal-overlay.overlay-stay {
|
1946
|
-
background: rgba(
|
1959
|
+
background: rgba(0, 0, 0, 0.07);
|
1947
1960
|
}
|
1948
1961
|
#_cbhtml .is-modal.is-modal-content,
|
1949
1962
|
#_cbhtml .is-modal .is-modal-content,
|