@plone/volto 16.30.3 → 16.31.0

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.
Files changed (34) hide show
  1. package/.changelog.draft +4 -5
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +7 -0
  4. package/locales/ca/LC_MESSAGES/volto.po +899 -902
  5. package/locales/de/LC_MESSAGES/volto.po +899 -900
  6. package/locales/en/LC_MESSAGES/volto.po +899 -899
  7. package/locales/en.json +1 -1
  8. package/locales/es/LC_MESSAGES/volto.po +899 -903
  9. package/locales/eu/LC_MESSAGES/volto.po +899 -899
  10. package/locales/fi/LC_MESSAGES/volto.po +899 -905
  11. package/locales/fr/LC_MESSAGES/volto.po +899 -909
  12. package/locales/it/LC_MESSAGES/volto.po +899 -899
  13. package/locales/ja/LC_MESSAGES/volto.po +899 -902
  14. package/locales/nl/LC_MESSAGES/volto.po +899 -902
  15. package/locales/pt/LC_MESSAGES/volto.po +899 -902
  16. package/locales/pt_BR/LC_MESSAGES/volto.po +899 -903
  17. package/locales/ro/LC_MESSAGES/volto.po +899 -899
  18. package/locales/volto.pot +901 -901
  19. package/locales/zh_CN/LC_MESSAGES/volto.po +899 -899
  20. package/package.json +1 -1
  21. package/packages/volto-slate/news/5779.bugfix +1 -0
  22. package/packages/volto-slate/package.json +1 -1
  23. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +5 -11
  24. package/src/actions/form/form.js +19 -0
  25. package/src/actions/form/form.test.js +14 -0
  26. package/src/actions/index.js +1 -0
  27. package/src/components/manage/Add/Add.jsx +1 -0
  28. package/src/components/manage/Contents/ContentsUploadModal.jsx +31 -4
  29. package/src/components/manage/Edit/Edit.jsx +1 -0
  30. package/src/components/manage/Form/Form.jsx +92 -48
  31. package/src/constants/ActionTypes.js +1 -0
  32. package/src/reducers/form/form.js +15 -3
  33. package/src/reducers/form/form.test.js +13 -1
  34. package/theme/themes/pastanaga/extras/contents.less +11 -0
package/.changelog.draft CHANGED
@@ -1,9 +1,8 @@
1
- ## 16.30.3 (2024-02-15)
1
+ ## 16.31.0 (2024-02-26)
2
2
 
3
- ### Bugfix
3
+ ### Feature
4
4
 
5
- - Fix `links-to-item` should be a protected route. @iFlameing [#5666](https://github.com/plone/volto/issues/5666)
6
- - Fixed listing SSR rendering by sending `subrequestId` instead of `id` only within `getAsyncData`, similar to calling `getQueryStringResults` directly. @ichim-david [#5688](https://github.com/plone/volto/issues/5688)
7
- - Add extra wait calls to listing block tests to avoid sporadic failures. @ichim-david [#5753](https://github.com/plone/volto/issues/5753)
5
+ - Allow editor to edit metadata during bulk upload. @iFlameing [#5549](https://github.com/plone/volto/issues/5549)
6
+ - Add global form state. @robgietema [#5721](https://github.com/plone/volto/issues/5721)
8
7
 
9
8
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,13 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 16.31.0 (2024-02-26)
12
+
13
+ ### Feature
14
+
15
+ - Allow editor to edit metadata during bulk upload. @iFlameing [#5549](https://github.com/plone/volto/issues/5549)
16
+ - Add global form state. @robgietema [#5721](https://github.com/plone/volto/issues/5721)
17
+
11
18
  ## 16.30.3 (2024-02-15)
12
19
 
13
20
  ### Bugfix