@plone/volto 18.0.0-alpha.31 → 18.0.0-alpha.32
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/CHANGELOG.md +26 -0
- package/locales/hi/LC_MESSAGES/volto.po +4977 -0
- package/locales/hi.json +1 -0
- package/package.json +5 -5
- package/razzle.config.js +2 -0
- package/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +2 -0
- package/src/components/manage/Form/Form.jsx +1 -1
- package/src/components/theme/View/View.jsx +4 -2
- package/src/components/theme/View/View.test.jsx +1 -0
- package/src/config/ControlPanels.js +7 -0
- package/src/config/config.test.js +232 -0
- package/src/constants/Languages.js +1 -0
- package/src/express-middleware/files.js +1 -0
- package/src/express-middleware/images.js +1 -0
- package/src/helpers/Api/Api.js +12 -0
- package/src/helpers/Api/Api.plone.rest.test.js +1 -0
- package/src/helpers/Api/Api.test.js +1 -0
- package/theme/themes/pastanaga/extras/blocks.less +10 -10
- package/types/config/config.test.d.ts +1 -0
- package/types/constants/Languages.d.ts +1 -0
|
@@ -318,6 +318,16 @@ body.has-toolbar.has-sidebar-collapsed .ui.wrapper > .ui.inner.block.full {
|
|
|
318
318
|
0 2px 4px rgba(0, 0, 0, 0.05);
|
|
319
319
|
transform: translate(-50%, 0);
|
|
320
320
|
|
|
321
|
+
.separator {
|
|
322
|
+
position: relative;
|
|
323
|
+
top: 5px;
|
|
324
|
+
display: inline-block;
|
|
325
|
+
height: 24px;
|
|
326
|
+
border-right: 1px solid #ddd;
|
|
327
|
+
margin: 0 0 4px 4px;
|
|
328
|
+
vertical-align: bottom;
|
|
329
|
+
}
|
|
330
|
+
|
|
321
331
|
form {
|
|
322
332
|
display: flex;
|
|
323
333
|
}
|
|
@@ -591,16 +601,6 @@ body.has-toolbar.has-sidebar-collapsed .ui.wrapper > .ui.inner.block.full {
|
|
|
591
601
|
height: 100%;
|
|
592
602
|
}
|
|
593
603
|
|
|
594
|
-
.separator {
|
|
595
|
-
position: relative;
|
|
596
|
-
top: 5px;
|
|
597
|
-
display: inline-block;
|
|
598
|
-
height: 24px;
|
|
599
|
-
border-right: 1px solid #ddd;
|
|
600
|
-
margin: 0 0 4px 4px;
|
|
601
|
-
vertical-align: bottom;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
604
|
// HTML block
|
|
605
605
|
.html-editor {
|
|
606
606
|
z-index: 1;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|