@plone/volto 18.27.1 → 18.27.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,14 @@ myst:
|
|
|
17
17
|
|
|
18
18
|
<!-- towncrier release notes start -->
|
|
19
19
|
|
|
20
|
+
## 18.27.2 (2025-09-29)
|
|
21
|
+
|
|
22
|
+
### Bugfix
|
|
23
|
+
|
|
24
|
+
- Update folder content search input to announce result count for screen readers on search or input change. @Wagner3UB [#7305](https://github.com/plone/volto/issues/7305)
|
|
25
|
+
- Check if we are editing a content type before rendering the Content Type control panel form. @ericof [#7396](https://github.com/plone/volto/issues/7396)
|
|
26
|
+
- Added guard in API REDUX middleware. @sneridagh [#7412](https://github.com/plone/volto/issues/7412)
|
|
27
|
+
|
|
20
28
|
## 18.27.1 (2025-09-26)
|
|
21
29
|
|
|
22
30
|
### Bugfix
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"license": "MIT",
|
|
12
|
-
"version": "18.27.
|
|
12
|
+
"version": "18.27.2",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "git@github.com:plone/volto.git"
|
|
@@ -237,8 +237,8 @@
|
|
|
237
237
|
"use-deep-compare-effect": "1.8.1",
|
|
238
238
|
"uuid": "^8.3.2",
|
|
239
239
|
"@plone/registry": "2.5.4",
|
|
240
|
-
"@plone/
|
|
241
|
-
"@plone/
|
|
240
|
+
"@plone/scripts": "3.10.2",
|
|
241
|
+
"@plone/volto-slate": "18.6.0"
|
|
242
242
|
},
|
|
243
243
|
"devDependencies": {
|
|
244
244
|
"@babel/core": "^7.0.0",
|
|
@@ -364,8 +364,8 @@
|
|
|
364
364
|
"webpack-dev-server": "4.11.1",
|
|
365
365
|
"webpack-node-externals": "3.0.0",
|
|
366
366
|
"why": "0.6.2",
|
|
367
|
-
"@plone/
|
|
368
|
-
"@plone/
|
|
367
|
+
"@plone/types": "1.4.5",
|
|
368
|
+
"@plone/volto-coresandbox": "1.0.0"
|
|
369
369
|
},
|
|
370
370
|
"volta": {
|
|
371
371
|
"node": "20.9.0"
|
|
@@ -182,7 +182,7 @@ class ContentType extends Component {
|
|
|
182
182
|
return <Error error={this.state.error} />;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
-
if (this.props.controlpanel) {
|
|
185
|
+
if (this.props.controlpanel?.data) {
|
|
186
186
|
let controlpanel = this.props.controlpanel;
|
|
187
187
|
if (controlpanel?.data?.filter_content_types === false) {
|
|
188
188
|
controlpanel.data.filter_content_types = { title: 'all', token: 'all' };
|
package/src/middleware/api.js
CHANGED
package/news/7305.fix
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Update folder content search input to announce result count for screen readers on search or input change. @Wagner3UB
|