@plone/volto 17.11.0 → 17.11.2
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
CHANGED
|
@@ -17,6 +17,19 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 17.11.2 (2024-01-17)
|
|
21
|
+
|
|
22
|
+
### Bugfix
|
|
23
|
+
|
|
24
|
+
- Merge the StyleWrapper styles with the draggable props from b-D&D. @sneridagh
|
|
25
|
+
This fixes the D&D bug introduced in https://github.com/plone/volto/pull/5581 [#5652](https://github.com/plone/volto/issues/5652)
|
|
26
|
+
|
|
27
|
+
## 17.11.1 (2024-01-17)
|
|
28
|
+
|
|
29
|
+
### Bugfix
|
|
30
|
+
|
|
31
|
+
- Fix order of preference in addons-registry for the theme definition (THEME, volto.config.js, package.json) @sneridagh [#5650](https://github.com/plone/volto/issues/5650)
|
|
32
|
+
|
|
20
33
|
## 17.11.0 (2024-01-15)
|
|
21
34
|
|
|
22
35
|
### Feature
|
package/addon-registry.js
CHANGED
|
@@ -134,10 +134,10 @@ class AddonConfigurationRegistry {
|
|
|
134
134
|
this.packages = {};
|
|
135
135
|
this.customizations = new Map();
|
|
136
136
|
|
|
137
|
-
// Theme from
|
|
138
|
-
//
|
|
137
|
+
// Theme from an ENV VAR, from volto.config.js or from a package.json key
|
|
138
|
+
// in this order of preference
|
|
139
139
|
this.theme =
|
|
140
|
-
|
|
140
|
+
process.env.THEME || this.voltoConfigJS.theme || packageJson.theme;
|
|
141
141
|
|
|
142
142
|
this.initDevelopmentPackages();
|
|
143
143
|
this.initPublishedPackages();
|
package/news/5652.bugfix
ADDED
package/package.json
CHANGED
|
@@ -61,17 +61,22 @@ const EditBlockWrapper = (props) => {
|
|
|
61
61
|
const classNames = buildStyleClassNamesFromData(data.styles);
|
|
62
62
|
const style = buildStyleObjectFromData(data.styles);
|
|
63
63
|
|
|
64
|
+
// We need to merge the StyleWrapper styles with the draggable props from b-D&D
|
|
65
|
+
const styleMergedWithDragProps = {
|
|
66
|
+
...draginfo.draggableProps,
|
|
67
|
+
style: { ...style, ...draginfo.draggableProps.style },
|
|
68
|
+
};
|
|
69
|
+
|
|
64
70
|
return (
|
|
65
71
|
<div
|
|
66
72
|
ref={draginfo.innerRef}
|
|
67
|
-
{...
|
|
73
|
+
{...styleMergedWithDragProps}
|
|
68
74
|
// Right now, we can have the alignment information in the styles property or in the
|
|
69
75
|
// block data root, we inject the classname here for having control over the whole
|
|
70
76
|
// Block Edit wrapper
|
|
71
77
|
className={cx(`block-editor-${data['@type']}`, classNames, {
|
|
72
78
|
[data.align]: data.align,
|
|
73
79
|
})}
|
|
74
|
-
style={style}
|
|
75
80
|
>
|
|
76
81
|
<div style={{ position: 'relative' }}>
|
|
77
82
|
<div
|