@plone/volto 16.30.3 → 16.31.1

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 (40) hide show
  1. package/.changelog.draft +3 -4
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +14 -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/config/index.js +1 -0
  32. package/src/constants/ActionTypes.js +1 -0
  33. package/src/helpers/Blocks/Blocks.js +25 -0
  34. package/src/helpers/Blocks/Blocks.test.js +37 -0
  35. package/src/helpers/Utils/usePagination.js +2 -7
  36. package/src/helpers/index.js +2 -0
  37. package/src/reducers/form/form.js +15 -3
  38. package/src/reducers/form/form.test.js +13 -1
  39. package/test-setup-config.js +1 -0
  40. 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.1 (2024-02-28)
2
2
 
3
3
  ### Bugfix
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
+ - Fix the condition deciding on listing pagination format so it takes into account container blocks as well @sneridagh [#4978](https://github.com/plone/volto/issues/4978)
6
+ - Enhance findBlocks to check for blocks also in data for add-ons such as @eeacms/volto-tabs-block. @ichim-david [#5796](https://github.com/plone/volto/issues/5796)
8
7
 
9
8
 
Binary file
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 16.31.1 (2024-02-28)
12
+
13
+ ### Bugfix
14
+
15
+ - Fix the condition deciding on listing pagination format so it takes into account container blocks as well @sneridagh [#4978](https://github.com/plone/volto/issues/4978)
16
+ - Enhance findBlocks to check for blocks also in data for add-ons such as @eeacms/volto-tabs-block. @ichim-david [#5796](https://github.com/plone/volto/issues/5796)
17
+
18
+ ## 16.31.0 (2024-02-26)
19
+
20
+ ### Feature
21
+
22
+ - Allow editor to edit metadata during bulk upload. @iFlameing [#5549](https://github.com/plone/volto/issues/5549)
23
+ - Add global form state. @robgietema [#5721](https://github.com/plone/volto/issues/5721)
24
+
11
25
  ## 16.30.3 (2024-02-15)
12
26
 
13
27
  ### Bugfix