@plone/volto 17.0.0-alpha.22 → 17.0.0-alpha.23
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
|
@@ -8,6 +8,17 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 17.0.0-alpha.23 (2023-07-28)
|
|
12
|
+
|
|
13
|
+
### Bugfix
|
|
14
|
+
|
|
15
|
+
- Fix regression from v17a22: It was not possible to select a block in a grid
|
|
16
|
+
column unless the grid was already selected. @davisagli
|
|
17
|
+
|
|
18
|
+
Fix regression from v17a22: Block outline was blocking clicks in some cases.
|
|
19
|
+
@davisagli [#5039](https://github.com/plone/volto/issues/5039)
|
|
20
|
+
|
|
21
|
+
|
|
11
22
|
## 17.0.0-alpha.22 (2023-07-28)
|
|
12
23
|
|
|
13
24
|
### Feature
|
package/package.json
CHANGED
|
@@ -21,7 +21,9 @@ const GridBlockEdit = (props) => {
|
|
|
21
21
|
})}
|
|
22
22
|
// This is required to enabling a small "in-between" clickable area
|
|
23
23
|
// for bringing the Grid sidebar alive once you have selected an inner block
|
|
24
|
-
onClick={(e) =>
|
|
24
|
+
onClick={(e) => {
|
|
25
|
+
if (!e.block) setSelectedBlock(null);
|
|
26
|
+
}}
|
|
25
27
|
role="presentation"
|
|
26
28
|
>
|
|
27
29
|
<ContainerEdit
|