@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.
- package/.changelog.draft +3 -4
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +14 -0
- package/locales/ca/LC_MESSAGES/volto.po +899 -902
- package/locales/de/LC_MESSAGES/volto.po +899 -900
- package/locales/en/LC_MESSAGES/volto.po +899 -899
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +899 -903
- package/locales/eu/LC_MESSAGES/volto.po +899 -899
- package/locales/fi/LC_MESSAGES/volto.po +899 -905
- package/locales/fr/LC_MESSAGES/volto.po +899 -909
- package/locales/it/LC_MESSAGES/volto.po +899 -899
- package/locales/ja/LC_MESSAGES/volto.po +899 -902
- package/locales/nl/LC_MESSAGES/volto.po +899 -902
- package/locales/pt/LC_MESSAGES/volto.po +899 -902
- package/locales/pt_BR/LC_MESSAGES/volto.po +899 -903
- package/locales/ro/LC_MESSAGES/volto.po +899 -899
- package/locales/volto.pot +901 -901
- package/locales/zh_CN/LC_MESSAGES/volto.po +899 -899
- package/package.json +1 -1
- package/packages/volto-slate/news/5779.bugfix +1 -0
- package/packages/volto-slate/package.json +1 -1
- package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +5 -11
- package/src/actions/form/form.js +19 -0
- package/src/actions/form/form.test.js +14 -0
- package/src/actions/index.js +1 -0
- package/src/components/manage/Add/Add.jsx +1 -0
- package/src/components/manage/Contents/ContentsUploadModal.jsx +31 -4
- package/src/components/manage/Edit/Edit.jsx +1 -0
- package/src/components/manage/Form/Form.jsx +92 -48
- package/src/config/index.js +1 -0
- package/src/constants/ActionTypes.js +1 -0
- package/src/helpers/Blocks/Blocks.js +25 -0
- package/src/helpers/Blocks/Blocks.test.js +37 -0
- package/src/helpers/Utils/usePagination.js +2 -7
- package/src/helpers/index.js +2 -0
- package/src/reducers/form/form.js +15 -3
- package/src/reducers/form/form.test.js +13 -1
- package/test-setup-config.js +1 -0
- package/theme/themes/pastanaga/extras/contents.less +11 -0
package/.changelog.draft
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
## 16.
|
|
1
|
+
## 16.31.1 (2024-02-28)
|
|
2
2
|
|
|
3
3
|
### Bugfix
|
|
4
4
|
|
|
5
|
-
- Fix
|
|
6
|
-
-
|
|
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
|
|
package/.yarn/install-state.gz
CHANGED
|
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
|