@plone/volto 17.0.0-alpha.9 → 17.0.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 (365) hide show
  1. package/.eslintrc +26 -3
  2. package/CHANGELOG.md +774 -5
  3. package/CONTRIBUTING.md +5 -1
  4. package/README.md +12 -9
  5. package/RELEASING.md +5 -5
  6. package/addon-registry.js +10 -1
  7. package/create-addons-loader.js +1 -1
  8. package/cypress/support/commands.js +70 -14
  9. package/cypress/support/e2e.js +1 -2
  10. package/cypress/support/volto-slate.js +4 -5
  11. package/cypress.config.js +1 -0
  12. package/docker-compose.yml +1 -1
  13. package/locales/ca/LC_MESSAGES/volto.po +281 -53
  14. package/locales/ca.json +1 -1
  15. package/locales/de/LC_MESSAGES/volto.po +289 -61
  16. package/locales/de.json +1 -1
  17. package/locales/en/LC_MESSAGES/volto.po +279 -51
  18. package/locales/en.json +1 -1
  19. package/locales/es/LC_MESSAGES/volto.po +318 -90
  20. package/locales/es.json +1 -1
  21. package/locales/eu/LC_MESSAGES/volto.po +280 -52
  22. package/locales/eu.json +1 -1
  23. package/locales/fi/LC_MESSAGES/volto.po +280 -52
  24. package/locales/fi.json +1 -1
  25. package/locales/fr/LC_MESSAGES/volto.po +281 -53
  26. package/locales/fr.json +1 -1
  27. package/locales/it/LC_MESSAGES/volto.po +474 -246
  28. package/locales/it.json +1 -1
  29. package/locales/ja/LC_MESSAGES/volto.po +280 -52
  30. package/locales/ja.json +1 -1
  31. package/locales/nl/LC_MESSAGES/volto.po +281 -53
  32. package/locales/nl.json +1 -1
  33. package/locales/pt/LC_MESSAGES/volto.po +281 -53
  34. package/locales/pt.json +1 -1
  35. package/locales/pt_BR/LC_MESSAGES/volto.po +314 -86
  36. package/locales/pt_BR.json +1 -1
  37. package/locales/ro/LC_MESSAGES/volto.po +281 -53
  38. package/locales/ro.json +1 -1
  39. package/locales/volto.pot +284 -52
  40. package/locales/zh_CN/LC_MESSAGES/volto.po +281 -53
  41. package/locales/zh_CN.json +1 -1
  42. package/package.json +44 -34
  43. package/packages/volto-slate/package.json +1 -1
  44. package/packages/volto-slate/src/actions/index.js +1 -1
  45. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
  46. package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
  47. package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
  48. package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +21 -16
  49. package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
  50. package/packages/volto-slate/src/blocks/Text/index.js +10 -7
  51. package/packages/volto-slate/src/editor/config.jsx +5 -4
  52. package/packages/volto-slate/src/editor/index.js +4 -4
  53. package/packages/volto-slate/src/editor/less/slate.less +28 -0
  54. package/packages/volto-slate/src/editor/plugins/Link/render.jsx +5 -6
  55. package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
  56. package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
  57. package/packages/volto-slate/src/editor/render.jsx +77 -8
  58. package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
  59. package/packages/volto-slate/src/editor/ui/index.js +15 -15
  60. package/packages/volto-slate/src/index.js +2 -2
  61. package/packages/volto-slate/src/utils/blocks.js +7 -0
  62. package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
  63. package/razzle.config.js +4 -6
  64. package/src/actions/index.js +4 -0
  65. package/src/actions/navroot/navroot.js +16 -0
  66. package/src/actions/navroot/navroot.test.js +15 -0
  67. package/src/actions/relations/rebuild.js +7 -7
  68. package/src/actions/relations/relations.js +17 -0
  69. package/src/actions/site/site.js +16 -0
  70. package/src/actions/site/site.test.js +15 -0
  71. package/src/actions/userSession/userSession.js +17 -1
  72. package/src/components/index.js +194 -192
  73. package/src/components/manage/Actions/Actions.jsx +133 -243
  74. package/src/components/manage/Add/Add.jsx +7 -8
  75. package/src/components/manage/AnchorPlugin/index.jsx +2 -2
  76. package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
  77. package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
  78. package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
  79. package/src/components/manage/Blocks/Block/Settings.jsx +2 -0
  80. package/src/components/manage/Blocks/Block/Settings.test.jsx +92 -0
  81. package/src/components/manage/Blocks/Block/Style.jsx +2 -2
  82. package/src/components/manage/Blocks/Container/Data.jsx +32 -0
  83. package/src/components/manage/Blocks/Container/Edit.jsx +177 -0
  84. package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +121 -0
  85. package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
  86. package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
  87. package/src/components/manage/Blocks/Grid/Edit.jsx +47 -0
  88. package/src/components/manage/Blocks/Grid/View.jsx +43 -0
  89. package/src/components/manage/Blocks/Grid/adapter.js +14 -0
  90. package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
  91. package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
  92. package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
  93. package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
  94. package/src/components/manage/Blocks/Grid/schema.js +35 -0
  95. package/src/components/manage/Blocks/Grid/templates.js +47 -0
  96. package/src/components/manage/Blocks/HTML/Edit.jsx +8 -8
  97. package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +36 -26
  98. package/src/components/manage/Blocks/Image/Edit.jsx +51 -12
  99. package/src/components/manage/Blocks/Image/Edit.test.jsx +2 -0
  100. package/src/components/manage/Blocks/Image/ImageSidebar.jsx +66 -16
  101. package/src/components/manage/Blocks/Image/View.jsx +26 -5
  102. package/src/components/manage/Blocks/Image/View.test.jsx +20 -0
  103. package/src/components/manage/Blocks/Image/schema.js +17 -10
  104. package/src/components/manage/Blocks/Image/utils.js +14 -0
  105. package/src/components/manage/Blocks/LeadImage/Edit.jsx +32 -10
  106. package/src/components/manage/Blocks/LeadImage/Edit.test.jsx +11 -1
  107. package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +28 -9
  108. package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +8 -2
  109. package/src/components/manage/Blocks/LeadImage/View.jsx +50 -38
  110. package/src/components/manage/Blocks/LeadImage/View.test.jsx +11 -1
  111. package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
  112. package/src/components/manage/Blocks/Listing/ListingBody.jsx +32 -8
  113. package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
  114. package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +1 -1
  115. package/src/components/manage/Blocks/Listing/getAsyncData.js +3 -5
  116. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +27 -17
  117. package/src/components/manage/Blocks/Maps/Edit.jsx +135 -209
  118. package/src/components/manage/Blocks/Maps/Edit.test.jsx +1 -2
  119. package/src/components/manage/Blocks/Maps/View.test.jsx +1 -2
  120. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +3 -2
  121. package/src/components/manage/Blocks/Search/components/Facets.jsx +66 -7
  122. package/src/components/manage/Blocks/Search/components/FilterList.jsx +4 -6
  123. package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
  124. package/src/components/manage/Blocks/Search/components/SelectFacet.jsx +2 -9
  125. package/src/components/manage/Blocks/Search/components/index.js +13 -13
  126. package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
  127. package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +5 -2
  128. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +70 -36
  129. package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
  130. package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
  131. package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
  132. package/src/components/manage/Blocks/Search/schema.js +29 -14
  133. package/src/components/manage/Blocks/Table/Cell.jsx +2 -3
  134. package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
  135. package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +5 -10
  136. package/src/components/manage/Blocks/Teaser/schema.js +5 -0
  137. package/src/components/manage/Blocks/Text/Edit.jsx +2 -3
  138. package/src/components/manage/Blocks/Title/View.jsx +0 -23
  139. package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
  140. package/src/components/manage/Blocks/ToC/Schema.jsx +40 -7
  141. package/src/components/manage/Blocks/ToC/View.jsx +84 -14
  142. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +8 -3
  143. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.jsx +44 -0
  144. package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +149 -10
  145. package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
  146. package/src/components/manage/Blocks/Video/View.test.jsx +1 -1
  147. package/src/components/manage/Contents/Contents.jsx +285 -114
  148. package/src/components/manage/Contents/ContentsPropertiesModal.jsx +90 -166
  149. package/src/components/manage/Contents/ContentsRenameModal.jsx +88 -139
  150. package/src/components/manage/Contents/ContentsRenameModal.stories.jsx +61 -0
  151. package/src/components/manage/Contents/ContentsTagsModal.jsx +83 -130
  152. package/src/components/manage/Contents/ContentsTagsModal.stories.jsx +68 -0
  153. package/src/components/manage/Contents/ContentsUploadModal.jsx +11 -7
  154. package/src/components/manage/Contents/ContentsWorkflowModal.jsx +87 -154
  155. package/src/components/manage/Controlpanels/Aliases.jsx +4 -12
  156. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
  157. package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +2 -2
  158. package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +38 -13
  159. package/src/components/manage/Controlpanels/Relations/Relations.jsx +5 -5
  160. package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +8 -7
  161. package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +68 -68
  162. package/src/components/manage/Controlpanels/Rules/AddRule.jsx +3 -10
  163. package/src/components/manage/Controlpanels/Rules/EditRule.jsx +1 -1
  164. package/src/components/manage/Controlpanels/UndoControlpanel.jsx +6 -9
  165. package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +97 -7
  166. package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +127 -99
  167. package/src/components/manage/Delete/Delete.jsx +96 -171
  168. package/src/components/manage/Diff/DiffField.jsx +25 -1
  169. package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
  170. package/src/components/manage/Form/BlockDataForm.jsx +3 -2
  171. package/src/components/manage/Form/BlockDataForm.test.jsx +51 -17
  172. package/src/components/manage/Form/Form.jsx +7 -6
  173. package/src/components/manage/Form/InlineForm.test.jsx +16 -14
  174. package/src/components/manage/History/History.jsx +11 -1
  175. package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
  176. package/src/components/manage/LinksToItem/LinksToItem.test.jsx +100 -0
  177. package/src/components/manage/LockingToastsFactory/LockingToastsFactory.jsx +1 -2
  178. package/src/components/manage/Messages/Messages.jsx +32 -99
  179. package/src/components/manage/Messages/Messages.test.jsx +0 -1
  180. package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
  181. package/src/components/manage/Sharing/Sharing.jsx +80 -22
  182. package/src/components/manage/Sidebar/AlignBlock.jsx +1 -1
  183. package/src/components/manage/Sidebar/Sidebar.jsx +139 -220
  184. package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
  185. package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
  186. package/src/components/manage/TemplateChooser/template.svg +10 -0
  187. package/src/components/manage/Toast/Toast.jsx +1 -1
  188. package/src/components/manage/Toolbar/More.jsx +17 -2
  189. package/src/components/manage/Toolbar/PersonalTools.jsx +97 -155
  190. package/src/components/manage/Toolbar/Toolbar.jsx +2 -2
  191. package/src/components/manage/UniversalLink/UniversalLink.jsx +6 -12
  192. package/src/components/manage/UniversalLink/UniversalLink.test.jsx +37 -0
  193. package/src/components/manage/Widgets/AlignWidget.jsx +2 -4
  194. package/src/components/manage/Widgets/ArrayWidget.jsx +3 -1
  195. package/src/components/manage/Widgets/ArrayWidget.test.jsx +45 -1
  196. package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
  197. package/src/components/manage/Widgets/ColorPickerWidget.test.jsx +9 -7
  198. package/src/components/manage/Widgets/DatetimeWidget.jsx +2 -8
  199. package/src/components/manage/Widgets/FileWidget.jsx +2 -1
  200. package/src/components/manage/Widgets/FormFieldWrapper.jsx +1 -1
  201. package/src/components/manage/Widgets/IdWidget.jsx +1 -2
  202. package/src/components/manage/Widgets/ObjectBrowserWidget.jsx +2 -9
  203. package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +3 -10
  204. package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.jsx +4 -4
  205. package/src/components/manage/Widgets/RegistryImageWidget.jsx +210 -0
  206. package/src/components/manage/Widgets/RegistryImageWidget.test.jsx +91 -0
  207. package/src/components/manage/Widgets/SchemaWidget.jsx +6 -9
  208. package/src/components/manage/Widgets/SelectUtils.js +1 -1
  209. package/src/components/manage/Widgets/SelectWidget.jsx +15 -1
  210. package/src/components/manage/Widgets/SelectWidget.test.jsx +45 -1
  211. package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -9
  212. package/src/components/manage/Workflow/Workflow.jsx +75 -184
  213. package/src/components/theme/Anontools/Anontools.jsx +44 -72
  214. package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
  215. package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
  216. package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
  217. package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
  218. package/src/components/theme/Comments/Comment.stories.jsx +84 -0
  219. package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
  220. package/src/components/theme/Comments/Comments.jsx +268 -380
  221. package/src/components/theme/Component/Component.jsx +1 -1
  222. package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
  223. package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
  224. package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
  225. package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +41 -3
  226. package/src/components/theme/Error/ServerError.jsx +29 -0
  227. package/src/components/theme/Header/Header.jsx +37 -63
  228. package/src/components/theme/Header/Header.test.jsx +18 -0
  229. package/src/components/theme/Image/Image.jsx +96 -0
  230. package/src/components/theme/Image/Image.test.jsx +125 -0
  231. package/src/components/theme/Login/Login.jsx +160 -243
  232. package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
  233. package/src/components/theme/Logo/Logo.jsx +35 -27
  234. package/src/components/theme/Logo/Logo.test.jsx +135 -1
  235. package/src/components/theme/Logout/Logout.jsx +36 -83
  236. package/src/components/theme/Navigation/Navigation.jsx +86 -171
  237. package/src/components/theme/PasswordReset/PasswordReset.jsx +7 -5
  238. package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +95 -170
  239. package/src/components/theme/PreviewImage/PreviewImage.jsx +31 -15
  240. package/src/components/theme/PreviewImage/PreviewImage.test.js +53 -13
  241. package/src/components/theme/Register/Register.jsx +2 -4
  242. package/src/components/theme/Search/SearchTags.jsx +30 -60
  243. package/src/components/theme/SearchWidget/SearchWidget.jsx +49 -97
  244. package/src/components/theme/SearchWidget/SearchWidget.test.jsx +8 -0
  245. package/src/components/theme/Sitemap/Sitemap.jsx +24 -13
  246. package/src/components/theme/Sitemap/Sitemap.test.jsx +23 -2
  247. package/src/components/theme/TsTest/TsTest.test.tsx +11 -0
  248. package/src/components/theme/TsTest/TsTest.tsx +15 -0
  249. package/src/components/theme/View/AlbumView.jsx +21 -16
  250. package/src/components/theme/View/EventView.jsx +36 -25
  251. package/src/components/theme/View/FileView.jsx +23 -18
  252. package/src/components/theme/View/ImageView.jsx +40 -32
  253. package/src/components/theme/View/ImageView.test.jsx +4 -0
  254. package/src/components/theme/View/LinkView.jsx +53 -78
  255. package/src/components/theme/View/ListingView.jsx +36 -28
  256. package/src/components/theme/View/NewsItemView.jsx +16 -17
  257. package/src/components/theme/View/RenderBlocks.jsx +56 -27
  258. package/src/components/theme/View/RenderEmptyBlock.jsx +5 -0
  259. package/src/components/theme/View/SummaryView.jsx +49 -39
  260. package/src/components/theme/View/TabularView.jsx +59 -53
  261. package/src/components/theme/View/View.jsx +2 -0
  262. package/src/components/theme/Widgets/ImageWidget.stories.jsx +1 -2
  263. package/src/config/Blocks.jsx +46 -0
  264. package/src/config/Components.jsx +3 -1
  265. package/src/config/ControlPanels.js +0 -1
  266. package/src/config/Loadables.jsx +1 -1
  267. package/src/config/NonContentRoutes.jsx +1 -0
  268. package/src/config/RichTextEditor/Blocks.jsx +4 -5
  269. package/src/config/RichTextEditor/FromHTML.jsx +2 -2
  270. package/src/config/RichTextEditor/Plugins.jsx +2 -3
  271. package/src/config/RichTextEditor/Styles.jsx +1 -1
  272. package/src/config/RichTextEditor/ToHTML.jsx +12 -10
  273. package/src/config/RichTextEditor/index.js +2 -3
  274. package/src/config/Views.jsx +6 -4
  275. package/src/config/Widgets.jsx +3 -0
  276. package/src/config/index.js +36 -2
  277. package/src/config/server.js +2 -0
  278. package/src/constants/ActionTypes.js +4 -0
  279. package/src/constants/Indexes.js +3 -1
  280. package/src/express-middleware/devproxy.js +1 -1
  281. package/src/express-middleware/files.js +11 -9
  282. package/src/express-middleware/images.js +12 -5
  283. package/src/express-middleware/ok.js +16 -0
  284. package/src/express-middleware/robotstxt.js +1 -1
  285. package/src/express-middleware/sitemap.js +1 -1
  286. package/src/express-middleware/static.js +3 -3
  287. package/src/helpers/Blocks/Blocks.js +52 -6
  288. package/src/helpers/Blocks/Blocks.test.js +92 -13
  289. package/src/helpers/Extensions/index.js +2 -1
  290. package/src/helpers/Extensions/withBlockSchemaEnhancer.js +63 -61
  291. package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
  292. package/src/helpers/FormValidation/FormValidation.js +37 -7
  293. package/src/helpers/FormValidation/FormValidation.test.js +32 -0
  294. package/src/helpers/Html/Html.jsx +2 -8
  295. package/src/helpers/Loadable/__mocks__/Loadable.js +18 -18
  296. package/src/helpers/MessageLabels/MessageLabels.js +39 -4
  297. package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
  298. package/src/helpers/Site/index.js +21 -0
  299. package/src/helpers/Url/Url.js +22 -1
  300. package/src/helpers/Url/Url.test.js +41 -0
  301. package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +190 -0
  302. package/src/helpers/Utils/Utils.js +35 -0
  303. package/src/helpers/Utils/Utils.test.js +13 -0
  304. package/src/helpers/Utils/usePagination.js +67 -14
  305. package/src/helpers/Utils/usePagination.test.js +115 -0
  306. package/src/helpers/index.js +15 -8
  307. package/src/hooks/client/useClient.js +11 -0
  308. package/src/hooks/clipboard/useClipboard.js +26 -0
  309. package/src/hooks/index.js +2 -0
  310. package/src/icons/grid-block.svg +11 -0
  311. package/src/middleware/api.js +203 -173
  312. package/src/middleware/blacklistRoutes.js +25 -22
  313. package/src/middleware/index.js +2 -2
  314. package/src/middleware/storeProtectLoadUtils.js +61 -62
  315. package/src/middleware/storeProtectLoadUtils.test.js +47 -43
  316. package/src/reducers/actions/actions.js +7 -5
  317. package/src/reducers/actions/actions.test.js +70 -0
  318. package/src/reducers/content/content.test.js +4 -4
  319. package/src/reducers/index.js +4 -0
  320. package/src/reducers/navigation/navigation.js +5 -5
  321. package/src/reducers/navigation/navigation.test.js +30 -0
  322. package/src/reducers/navroot/navroot.js +79 -0
  323. package/src/reducers/navroot/navroot.test.js +110 -0
  324. package/src/reducers/relations/relations.js +74 -46
  325. package/src/reducers/site/site.js +51 -0
  326. package/src/reducers/site/site.test.js +67 -0
  327. package/src/reducers/userSession/userSession.js +15 -1
  328. package/src/registry.js +2 -2
  329. package/src/routes.js +9 -0
  330. package/src/server.jsx +9 -0
  331. package/src/start-server.js +6 -2
  332. package/src/storybook.jsx +24 -38
  333. package/test-setup-config.js +11 -1
  334. package/theme/themes/pastanaga/collections/form.overrides +46 -0
  335. package/theme/themes/pastanaga/collections/menu.overrides +3 -2
  336. package/theme/themes/pastanaga/elements/container.overrides +5 -2
  337. package/theme/themes/pastanaga/elements/input.overrides +11 -1
  338. package/theme/themes/pastanaga/elements/label.overrides +10 -0
  339. package/theme/themes/pastanaga/elements/step.overrides +2 -1
  340. package/theme/themes/pastanaga/extras/blocks.less +25 -15
  341. package/theme/themes/pastanaga/extras/color-picker-widget.less +1 -1
  342. package/theme/themes/pastanaga/extras/contents.less +6 -1
  343. package/theme/themes/pastanaga/extras/draftjs.less +4 -4
  344. package/theme/themes/pastanaga/extras/grid.less +427 -0
  345. package/theme/themes/pastanaga/extras/login.less +3 -0
  346. package/theme/themes/pastanaga/extras/main.less +14 -7
  347. package/theme/themes/pastanaga/extras/react-dates-overrides.less +4 -2
  348. package/theme/themes/pastanaga/extras/search.less +7 -1
  349. package/theme/themes/pastanaga/extras/sidebar.less +5 -4
  350. package/theme/themes/pastanaga/extras/time-picker-overrides.less +5 -3
  351. package/theme/themes/pastanaga/extras/toc.less +29 -0
  352. package/theme/themes/pastanaga/extras/toolbar.less +6 -2
  353. package/theme/themes/pastanaga/extras/userscontrolpanel.less +17 -9
  354. package/theme/themes/pastanaga/extras/widgets.less +1 -1
  355. package/theme/themes/pastanaga/modules/rating.overrides +2 -1
  356. package/theme/themes/pastanaga-cms-ui/elements/container.overrides +2 -1
  357. package/theme/themes/pastanaga-cms-ui/extras/cms-ui.elements.container.less +6 -2
  358. package/theme/themes/pastanaga-cms-ui/extras/cms-ui.site.less +2 -2
  359. package/tsconfig.json +33 -0
  360. package/webpack-plugins/webpack-less-plugin.js +19 -0
  361. package/.yarn/install-state.gz +0 -0
  362. package/.yarn/releases/yarn-3.2.3.cjs +0 -783
  363. package/src/components/manage/Blocks/Teaser/utils.js +0 -44
  364. package/src/components/manage/Blocks/Teaser/utils.test.jsx +0 -229
  365. package/src/components/theme/Header/Header.md +0 -27
package/CHANGELOG.md CHANGED
@@ -3,11 +3,741 @@
3
3
  <!-- You should *NOT* be adding new change log entries to this file.
4
4
  You should create a file in the news directory instead.
5
5
  For helpful instructions, please see:
6
- https://6.docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request
6
+ https://6.docs.plone.org/contributing/index.html#contributing-change-log-label
7
7
  -->
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 17.0.1 (2023-10-03)
12
+
13
+ ### Bugfix
14
+
15
+ - issue #5126 a11y for checkboxes on the sharing page @Wagner3UB [#5201](https://github.com/plone/volto/issues/5201)
16
+ - Adjust DNS resolution to prefer IPv4 addresses when both IPv4 and IPv6 are resolved. @davisagli [#5261](https://github.com/plone/volto/issues/5261)
17
+
18
+ ### Documentation
19
+
20
+ - Fix tests and documentation broken because the renaming master->main @sneridagh [#5251](https://github.com/plone/volto/issues/5251)
21
+ - Disable GHA vale checking, it started to fail with a gazillion of violations. @sneridagh [#5253](https://github.com/plone/volto/issues/5253)
22
+ - Reenable GHA vale checking, but with configuration from `plone/documentation`. It now runs Vale, but with the flag `--no-exit` which means "Don't return a nonzero exit code on errors." It also eliminates reviewdog as the test runner. @stevepiercy [#5256](https://github.com/plone/volto/issues/5256)
23
+
24
+
25
+ ## 17.0.0 (2023-09-30)
26
+
27
+ ### Breaking
28
+
29
+ - Volto 17 drops support for NodeJS 14, and adds support for Node.js 18.
30
+ Please see the [upgrade guide](https://6.docs.plone.org/volto/upgrade-guide/index.html)
31
+ for more information.
32
+
33
+ Volto 17 now uses Webpack 5. [#4086](https://github.com/plone/volto/issues/4086)
34
+
35
+ - Add custom CSS animation to hamburger menu. Removed `hamburgers` dependency. @danalvrz [#4433](https://github.com/plone/volto/issues/4433)
36
+ - Improve i18n script ordering of addons, so that addons can override translations from their dependencies. @davisagli [#4495](https://github.com/plone/volto/issues/4495)
37
+ - Use proper heading tag (depending on the headline) in default listing template @sneridagh [#4848](https://github.com/plone/volto/issues/4848)
38
+ - Remove useToken & useContent hooks-@Tishasoumya-02 [#4951](https://github.com/plone/volto/issues/4951)
39
+ - Added new Image component to render optimized images @pnicolli @davisagli [#3337](https://github.com/plone/volto/issues/3337)
40
+ - Update `@plone/scripts` to 3.0.0. @davisagli [#5040](https://github.com/plone/volto/issues/5040)
41
+ - Spin off relation stats action. Get relation stats with getRelationStats() instead of with queryRelations(). @ksuess
42
+ Refactor relations actions: slightly change the shape of the redux state for `queryRelations` to follow common signatures. @ksuess [#5041](https://github.com/plone/volto/issues/5041)
43
+ - Upgrade to Cypress 13 @sneridagh [#5163](https://github.com/plone/volto/issues/5163)
44
+ - Removed support for Node.js 16. It is no longer supported by the Node.js community. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
45
+ - Updated Prettier @sneridagh
46
+ Upgrade Stylelint @sneridagh
47
+ Fixed introduced violations due to the upgrades @sneridagh
48
+ Updated HTML block and prettier loadables to match the new async Prettier plugin API @sneridagh [#5216](https://github.com/plone/volto/issues/5216)
49
+ - Improve linked headlines after feedback:
50
+ Disable the feature for anonymous users of the website
51
+ Disable it for the page title
52
+ Change the wording of the notification from "Link copied to clipboard" to "Anchor link copied to the clipboard" to make it more obvious that an anchor link has been copied
53
+ Normalize the slug to use only ascii characters
54
+ @sneridagh [#5225](https://github.com/plone/volto/issues/5225)
55
+
56
+ ### Feature
57
+
58
+ - Add directive to cache stable resources in browser or intermediate server for 365 days by default directly in the SSR Express server, static resource that could change after a new deployment for 1 minute. @mamico [#2216](https://github.com/plone/volto/issues/2216)
59
+ - Use popperjs in BlockChooser, move the markup to the bottom of the body tag. @sneridagh [#4141](https://github.com/plone/volto/issues/4141)
60
+ - Improvements to the dev API proxy:
61
+ - Prefer RAZZLE_INTERNAL_API_PATH over RAZZLE_API_PATH as the target of the proxy.
62
+ The target of the API proxy is now always logged on startup, even in production mode.
63
+ - Support proxying to a backend served over https. For this configuration it
64
+ might be necessary to set RAZZLE_DEV_PROXY_INSECURE=1 if the backend
65
+ certificate can't be verified.
66
+
67
+ [davisagli] [#4434](https://github.com/plone/volto/issues/4434)
68
+ - Add option to hide empty listing blocks @ksuess [#4393](https://github.com/plone/volto/issues/4393)
69
+ - Add Vale to CI for spell and style checks. @MAX-786 [#4423](https://github.com/plone/volto/issues/4423)
70
+ - DefaultView (view of fields for content types with blocks disabled): Show field name as tip on hover of label. @ksuess [#4598](https://github.com/plone/volto/issues/4598)
71
+ - Support RelationList field with named StaticCatalogVocabulary and SelectWidget. @ksuess [#4614](https://github.com/plone/volto/issues/4614)
72
+ - Support for declaring a theme in `volto.config.js` or in `package.json`
73
+ Add two entry points to allow extension of a theme from other add-ons. @sneridagh [#4625](https://github.com/plone/volto/issues/4625)
74
+ - Set sameSite in I18N_LANGUAGE cookie @sneridagh [#4627](https://github.com/plone/volto/issues/4627)
75
+ - Added querystring search get option. @robgietema [#4658](https://github.com/plone/volto/issues/4658)
76
+ - Changed control panel list to be fetched server-side not client-side
77
+ @JeffersonBledsoe [#3749](https://github.com/plone/volto/issues/3749)
78
+ - Add Finnish translation (contributed by @rioksane) @erral [#4084](https://github.com/plone/volto/issues/4084)
79
+ - Search Block: Add support for advanced facets that are only displayed on demand.
80
+ [pbauer, razvanMiu, claudiaifrim] [#4783](https://github.com/plone/volto/issues/4783)
81
+ - Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
82
+ - Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
83
+ - Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
84
+ - Update Brazilian Portuguese translations @ericof [#4853](https://github.com/plone/volto/issues/4853)
85
+ - Allow to deselect color in ColorPickerWidget. @ksuess [#4838](https://github.com/plone/volto/issues/4838)
86
+ - Configurable Container component from registry for some key route views. @sneridagh [#4871](https://github.com/plone/volto/issues/4871)
87
+ - Add and enforce a new config setting, `maxFileUploadSize`. @davisagli [#4868](https://github.com/plone/volto/issues/4868)
88
+ - Added slug-based linked headings in `volto-slate`. @tiberiuichim, @nileshgulia1 [#4287](https://github.com/plone/volto/issues/4287)
89
+ - Refactored Anontools components. @Tishasoumya-02 [#4845](https://github.com/plone/volto/issues/4845)
90
+ - New block: Grid - A container of blocks, arranged in horizontal direction. @sneridagh
91
+ New primitive: Container - A primitive to build blocks containing other blocks. @sneridagh [#3180](https://github.com/plone/volto/issues/3180)
92
+ - Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
93
+ - Refactor CommentEdit -@Tishasoumya-02 [#4075](https://github.com/plone/volto/issues/4075)
94
+ - Facets should be able to decide themselves if they should show or not. Made defaultShowFacet to be a fallback in case there is no custom function for each facet type. @tedw87 [#4579](https://github.com/plone/volto/issues/4579)
95
+ - Add backward compatibility to `slate_richtext` with fields that are plain text @razvanMiu [#4796](https://github.com/plone/volto/issues/4796)
96
+ - Refactor-Contact Form @Tishasoumya-02 [#4850](https://github.com/plone/volto/issues/4850)
97
+ - Refactor BreadcrumbsComponent @Tishasoumya-02 [#4858](https://github.com/plone/volto/issues/4858)
98
+ - Refactor SearchWidget @Tishasoumya-02 [#4864](https://github.com/plone/volto/issues/4864)
99
+ - Refactor LinkView -@Tishasoumya-02 [#4866](https://github.com/plone/volto/issues/4866)
100
+ - Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
101
+ - Add /ok route as an express middleware @ionlizarazu [#4375](https://github.com/plone/volto/issues/4375)
102
+ - Add `Links to item` view (available via object's more menu) @pgrunewald [#4787](https://github.com/plone/volto/issues/4787)
103
+ - Tune 'Links to item' view to 'Links and references' view. Show all relation types. @ksuess @stevepiercy [#4842](https://github.com/plone/volto/issues/4842)
104
+ - Update browserlist to latest @sneridagh [#4977](https://github.com/plone/volto/issues/4977)
105
+ - Use all the apiExpanders in use, so we perform a single request for getting all the required data. @sneridagh [#4946](https://github.com/plone/volto/issues/4946)
106
+ - Add getFieldURL helper function used to get the url value of a field based on its structure. @razvanMiu [#2252](https://github.com/plone/volto/issues/2252)
107
+ - Refactor Delete -@Tishasoumya [#4890](https://github.com/plone/volto/issues/4890)
108
+ - Refactor workflow -@Tishasoumya-02 [#4902](https://github.com/plone/volto/issues/4902)
109
+ - Refactor Request Reset Password-@Tishasoumya-02 [#4938](https://github.com/plone/volto/issues/4938)
110
+ - Refactor Actions-@Tishasoumya-02 [#4939](https://github.com/plone/volto/issues/4939)
111
+ - Refactor Blocks/Maps/Edit component -@Tishasoumya-02 [#4958](https://github.com/plone/volto/issues/4958)
112
+ - Updated Italian translations @sabrina-bongiovanni [#4987](https://github.com/plone/volto/issues/4987)
113
+ - Made selectedView and className props available in the SearchBlockView.jsx to improve styling development. @danalvrz [#4997](https://github.com/plone/volto/issues/4997)
114
+ - Refactor Comment -@Tishasoumya-02 [#4074](https://github.com/plone/volto/issues/4074)
115
+ - Refactor Logout component @Tishasoumya-02 [#4860](https://github.com/plone/volto/issues/4860)
116
+ - Refactore SearchTags @Tishasoumya-02 [#4873](https://github.com/plone/volto/issues/4873)
117
+ - Use the `@navroot` endpoint to build the `title` tag. @erral
118
+ Use the `@site` endpoint to render the logo. @erral
119
+ Register a widget to set the logo in the site control panel. @erral [#3537](https://github.com/plone/volto/issues/3537)
120
+ - Refactor Navigation -@Tishasoumya-02 [#4076](https://github.com/plone/volto/issues/4076)
121
+ - Added loading spinner and disable search button while data is fetching. @tedw87 [#4551](https://github.com/plone/volto/issues/4551)
122
+ - User Control panel improvements. See #4551 @erral [#4572](https://github.com/plone/volto/issues/4572)
123
+ - Messages Component Refactor - @Tishasoumya-02 [#4926](https://github.com/plone/volto/issues/4926)
124
+ - Refactor Login -@Tishasoumya-02 [#4933](https://github.com/plone/volto/issues/4933)
125
+ - Add external className to UniversalLink for external link. @iFlameing [#5109](https://github.com/plone/volto/issues/5109)
126
+ - Updated Spanish translation @macagua [#5120](https://github.com/plone/volto/issues/5120)
127
+ - (feat): Update toc block entries @dobri1408 [#5146](https://github.com/plone/volto/issues/5146)
128
+ - Views cypress test -@Tishasoumya [#5149](https://github.com/plone/volto/issues/5149)
129
+ - Added support for Node.js 20. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
130
+ - Cypress test to test if 'Search results: number' text is present @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
131
+ - TypeScript support in core @sneridagh @ninanoleto [#4662](https://github.com/plone/volto/issues/4662)
132
+ - Add external className to slate Link view. @iFlameing [#5109](https://github.com/plone/volto/issues/5109)
133
+ - Refactor PersonalTools component -@Tishasoumya-02 [#4954](https://github.com/plone/volto/issues/4954)
134
+ - Refactor Sidebar component-@Tishasoumya-02 [#4964](https://github.com/plone/volto/issues/4964)
135
+ - Refactor ContentsPropertiesModal -@Tishasoumya-02 [#4968](https://github.com/plone/volto/issues/4968)
136
+ - Refactor ContentsWorkflowModal -@Tishasoumya-02 [#4969](https://github.com/plone/volto/issues/4969)
137
+ - Refactor ContentsRenameModal -@Tishasoumya-02 [#4970](https://github.com/plone/volto/issues/4970)
138
+ - Refactor ContentsTagsModal -@Tishasoumya-02 [#4971](https://github.com/plone/volto/issues/4971)
139
+ - Updated Spanish translations @macagua [#5200](https://github.com/plone/volto/issues/5200)
140
+ - add canonical link @mamico [#5215](https://github.com/plone/volto/issues/5215)
141
+
142
+ ### Bugfix
143
+
144
+ - fix: newsitem and event views wrapper classNames @nzambello [#4443](https://github.com/plone/volto/issues/4443)
145
+ - Fix weird GHA failure on config option not supported @sneridagh [#4466](https://github.com/plone/volto/issues/4466)
146
+ - Fix history view dropdown for first entry, showing 'Revert to this version option' always @sneridagh [#4471](https://github.com/plone/volto/issues/4471)
147
+ - Fix order of row of long table in edit and view mode @iFlameing [#4473](https://github.com/plone/volto/issues/4473)
148
+ - Improve flaky test in autofocus Cypress tests @sneridagh [#4475](https://github.com/plone/volto/issues/4475)
149
+ - Update build dependencies (razzle and react-dev-utils) @davisagli [#3997](https://github.com/plone/volto/issues/3997)
150
+ - Added block prop to BlockDataForm in the Edit component of ToC. If block is not passed, OnChangeBlock will be called with undefined block id. @tedw87 [#4110](https://github.com/plone/volto/issues/4110)
151
+ - Fix focus steal in Form @tedw87 [#4230](https://github.com/plone/volto/issues/4230)
152
+ - Fixed paste issue in Table Block and added cypress test for pasting text in Table Block. [#4301](https://github.com/plone/volto/issues/4301)
153
+ - Fixed i18n script to avoid overwriting translations with an empty msgstr @danalvrz [#4316](https://github.com/plone/volto/issues/4316)
154
+ - bugfix: conditionally render all delete items in confirm widget [#4336](https://github.com/plone/volto/issues/4336)
155
+ - Make the Site Setup control panel responsive for small screen devices. @lord2anil [#4484](https://github.com/plone/volto/issues/4484)
156
+ - The menu for the contents page was unresponsive on mobile devices. Fixed this by changing the menu overflow to scroll. @sudhanshu1309 [#4492](https://github.com/plone/volto/issues/4492)
157
+ - Make Drag and Drop list work with container-type inline-size. @robgietema [#4497](https://github.com/plone/volto/issues/4497)
158
+ - (fix): Paste button disappearing while coping from nested blocks @dobri1408 [#4505](https://github.com/plone/volto/issues/4505)
159
+ - Patch updates for some dependencies. @davisagli [#4520](https://github.com/plone/volto/issues/4520)
160
+ - Fix flaky Cypress test introduced in #4521 @sneridagh [#4522](https://github.com/plone/volto/issues/4522)
161
+ - Fix Search is case sensitive in Block chooser @iRohitSingh [#4526](https://github.com/plone/volto/issues/4526)
162
+ - InternalURl helper method should incorporate externalRoutes settings into consideration. @iFlameing [#4559](https://github.com/plone/volto/issues/4559)
163
+ - Update message add-on control panel: remove 'buildout', update reference. @ksuess [#4574](https://github.com/plone/volto/issues/4574)
164
+ - Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
165
+ - Fix regexp that checks valid URLs and improve tests [cekk] [#4601](https://github.com/plone/volto/issues/4601)
166
+ - Fixed wrong localization on password reset page @iRohitSingh [#4656](https://github.com/plone/volto/issues/4656)
167
+ - fix sitemap.xml.gz not is not compressed @dobri1408 [#4663](https://github.com/plone/volto/issues/4663)
168
+ - Generate a split sitemap @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
169
+ - Fix Move to top of folder ordering in folder content view @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
170
+ - Revert "Add current page parameter to the route in the listing and search block pagination (#4159)" @sneridagh [#4695](https://github.com/plone/volto/issues/4695)
171
+ - Fix search block in edit mode re-queries multiple blocks with an empty search text @reebalazs [#4697](https://github.com/plone/volto/issues/4697)
172
+ - Apply suggestion from browser for password field @lord2anil [#3990](https://github.com/plone/volto/issues/3990)
173
+ - Open all accordion'd content in InlineForm by default, allow arbitrarily close any number of them. @sneridagh [#4178](https://github.com/plone/volto/issues/4178)
174
+ - Fix duplicating listing block by removing block uid from blocks data. @ksuess [#4234](https://github.com/plone/volto/issues/4234)
175
+ - The tabs for the add page was unresponsive on mobile devices. Fixed this by changing flex-wrap property. @sudhanshu1309 [#4506](https://github.com/plone/volto/issues/4506)
176
+ - (fix):Object.normaliseMail: Cannot read properties of null @dobri1408 [#4558](https://github.com/plone/volto/issues/4558)
177
+ - Update add-on control panel tranlsations: install -> activate. @ksuess [#4582](https://github.com/plone/volto/issues/4582)
178
+ - Fix robot.txt - the sitemap link should respect x-forwarded headers @reebalazs [#4638](https://github.com/plone/volto/issues/4638)
179
+ - Fix Move to top of folder ordering in folder content view by searching also @iFlameing [#4690](https://github.com/plone/volto/issues/4690)
180
+ - Fix faulty D&D elements in ObjectBrowserList widget @sneridagh [#4703](https://github.com/plone/volto/issues/4703)
181
+ - Fix fetching API paths with urlencoded characters in the querystring. @davisagli [#4718](https://github.com/plone/volto/issues/4718)
182
+ - Fix language negotiation for language codes that include a region (e.g. `pt-br`). @davisagli [#4644](https://github.com/plone/volto/issues/4644)
183
+ - Fixed the issue "shouldn't use a hook like function name for a variable" @Kaku-g [#4693](https://github.com/plone/volto/issues/4693)
184
+ - Fix to not update breadrumbs, navigation, actions, and types when content is fetched as a subrequest and apiExpanders includes these components. @davisagli [#4760](https://github.com/plone/volto/issues/4760)
185
+ - Fix bug where editors could not see their own content in the Contents view if it was expired or has a future effective date. @davisagli [#4764](https://github.com/plone/volto/issues/4764)
186
+ - Fix bug showing logs at the browsers when richtext widget is use @claytonc [#4780](https://github.com/plone/volto/issues/4780)
187
+ - Update relations control panel layout @danalvrz [#4794](https://github.com/plone/volto/issues/4794)
188
+ - Fix hot module reloading of changes to `@plone/volto`. @davisagli [#4799](https://github.com/plone/volto/issues/4799)
189
+ - Add guard in case of malformed blocks are present (at least id and title should be present) @sneridagh [#4802](https://github.com/plone/volto/issues/4802)
190
+ - Fix html tag lang attribute in SSR @sneridagh [#4803](https://github.com/plone/volto/issues/4803)
191
+ - Add newest supported languages to `Language` constants list @sneridagh [#4811](https://github.com/plone/volto/issues/4811)
192
+ - Fix special characters in request urls @pnicolli @mamico @luca-bellenghi @cekk [#4825](https://github.com/plone/volto/issues/4825)
193
+ - Fix block is undefined in StyleWrapper helper when building classnames @sneridagh [#4827](https://github.com/plone/volto/issues/4827)
194
+ - Fix navigation sections in 404 pages @sneridagh [#4836](https://github.com/plone/volto/issues/4836)
195
+ - Convert header class to function. @gomez [#4767](https://github.com/plone/volto/issues/4767)
196
+ - Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)
197
+ - Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
198
+ - Fix regression in horizontal scroll in contents view, add it back @sneridagh [#4872](https://github.com/plone/volto/issues/4872)
199
+ - Fix and improve the `addStyling` helper @sneridagh [#4880](https://github.com/plone/volto/issues/4880)
200
+ - Update to version 6.0.5 of Plone backend. @davisagli [#4897](https://github.com/plone/volto/issues/4897)
201
+ - Remove anonymous function calls. Remove default exports from. @sneridagh [#4917](https://github.com/plone/volto/issues/4917)
202
+ - Fix Annontools StoryBook @sneridagh [#4921](https://github.com/plone/volto/issues/4921)
203
+ - Fix the experimental add new block button position, compensate the icon width to center it correctly @sneridagh [#4924](https://github.com/plone/volto/issues/4924)
204
+ - Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
205
+ - Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
206
+ - Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
207
+ - Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
208
+ - Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
209
+ - Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
210
+ - fix(styleMenu): Highlight selected block styles @nileshgulia1 [#4851](https://github.com/plone/volto/issues/4851)
211
+ - Fix tablet main menu. [#4859](https://github.com/plone/volto/issues/4859)
212
+ - Fix the table of contents block so that if one or more items get out of the viewport, a dropdown menu appears with all the items that do not fit the viewport and also added an option to make the TOC sticky. @MihaelaCretu11 [#4907](https://github.com/plone/volto/issues/4907)
213
+ - Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
214
+ - Typo in Italian locales @mamico [#4944](https://github.com/plone/volto/issues/4944)
215
+ - Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
216
+ - Fix slateTable still uses old style of sidebar generation @iFlameing [#4972](https://github.com/plone/volto/issues/4972)
217
+ - Fix password autocomplete hint for login form. @davisagli [#4976](https://github.com/plone/volto/issues/4976)
218
+ - Handle condition for yearly frequency in recurrence @BhuvaneshPatil [#4498](https://github.com/plone/volto/issues/4498)
219
+ - Fix search block input clear button doesn't reset the search @iFlameing [#4828](https://github.com/plone/volto/issues/4828)
220
+ - 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)
221
+ - Fix delete confirmation to handle empty `breaches`. @davisagli [#4832](https://github.com/plone/volto/issues/4832)
222
+ - Fix Volto contents - set properties Exclude from navigation - bad request, set exclude_from_nav to boolean [#4855](https://github.com/plone/volto/issues/4855)
223
+ - Add XSendfile headers to files and images middleware @instification [#4984](https://github.com/plone/volto/issues/4984)
224
+ - search-block: translate some missing strings to german and fix a typo. @pbauer [#4996](https://github.com/plone/volto/issues/4996)
225
+ - Add image block className support (Style wrapper). @sneridagh [#5018](https://github.com/plone/volto/issues/5018)
226
+ - Fix for 'no value' entry in table of content field. @satyam4p [#5022](https://github.com/plone/volto/issues/5022)
227
+ - Fix updating roles when username contains a period (.). @nileshgulia1 [#5025](https://github.com/plone/volto/issues/5025)
228
+ - Fix hover and focused border for block child. @claudiaifrim [#5028](https://github.com/plone/volto/issues/5028)
229
+ - Enhance display and repairing of broken relations. @ksuess [#5033](https://github.com/plone/volto/issues/5033)
230
+ - Fix selecting grid block when a sub-block is selected. @davisagli [#5036](https://github.com/plone/volto/issues/5036)
231
+ - Update versions of semver and release-it. @davisagli [#5053](https://github.com/plone/volto/issues/5053)
232
+ - Fix regression from v17a22: It was not possible to select a block in a grid
233
+ column unless the grid was already selected. @davisagli
234
+
235
+ Fix regression from v17a22: Block outline was blocking clicks in some cases.
236
+ @davisagli [#5039](https://github.com/plone/volto/issues/5039)
237
+ - Fix handling of exceptions in reducers. @davisagli [#5069](https://github.com/plone/volto/issues/5069)
238
+ - Add missing i18n for ToC block. @davisagli [#5073](https://github.com/plone/volto/issues/5073)
239
+ - Allow a user to register when they use an email address as their username. [#5031](https://github.com/plone/volto/issues/5031) @mehedikhan72 [#5031](https://github.com/plone/volto/issues/5031)
240
+ - Fix querystringResults subrequests id, to work properly in duplicate pages where blocks id's are the same. @giuliaghisini [#5070](https://github.com/plone/volto/issues/5070)
241
+ - Fix i18n for link settings fieldset in the image block @iRohitSingh [#5075](https://github.com/plone/volto/issues/5075)
242
+ - Prevent caching the outdated browser message in a shared cache. @davisagli [#5076](https://github.com/plone/volto/issues/5076)
243
+ - Fix accessibility of the content folder buttons. @SaraBianchi [#5101](https://github.com/plone/volto/issues/5101)
244
+ - For folders inside navigation roots, properly fetch navigation from the
245
+ navroot, rather then the site root @tiberiuichim [#5106](https://github.com/plone/volto/issues/5106)
246
+ - Fix uncached case when the widget is slate on diff @dobri1408 [#5107](https://github.com/plone/volto/issues/5107)
247
+ - Fix load addon translations: last addon translations wins @giuliaghisini [#5113](https://github.com/plone/volto/issues/5113)
248
+ - [Visual bugfix] Match the original mockups for PastanagaUI in regards of the error messages in form field elements @sneridagh [#5115](https://github.com/plone/volto/issues/5115)
249
+ - Fix default toc renderer for nested entries @pnicolli [#5116](https://github.com/plone/volto/issues/5116)
250
+ - Fix inherit checkbox in sharing view @sneridagh [#5514](https://github.com/plone/volto/issues/5514)
251
+ - Fix for responsive error in the login page when the width of the screen decreases. @suman9893 [#3250](https://github.com/plone/volto/issues/3250)
252
+ - Fix back button in the search block to execute the search by adding two useEffects that update the facets and search data based on the current URL. @MihaelaCretu11 [#4402](https://github.com/plone/volto/issues/4402)
253
+ - fix : RecursiveWidget is incorrectly translated. @suman9893 [#4503](https://github.com/plone/volto/issues/4503)
254
+ - Fix use of CSS modules in webpack 5. @wesleybl [#5019](https://github.com/plone/volto/issues/5019)
255
+ - Fix toc accessibility issue @dobri1408 [#5058](https://github.com/plone/volto/issues/5058)
256
+ - Fix storybook config for project generator. Add support for SCSS, upgrade to webpack 5 in there as well. @sneridagh [#5132](https://github.com/plone/volto/issues/5132)
257
+ - Don't show ``No value`` option in SelectWidget and ArrayWidget if default value is 0. @wesleybl [#5151](https://github.com/plone/volto/issues/5151)
258
+ - Fix SelectWidget throwing error when editing a recently created content. @iFlameing [#5154](https://github.com/plone/volto/issues/5154)
259
+ - Fix editing layout for blocks using schema enhancers. @iFlameing, @davisagli [#5158](https://github.com/plone/volto/issues/5158)
260
+ - Fix ContentRules add and edit forms for languages other than English. @ericof [#5161](https://github.com/plone/volto/issues/5161)
261
+ - Fix search block search results number @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
262
+ - fix flaky cypress in blocks-listing.js @nileshgulia1 [#5173](https://github.com/plone/volto/issues/5173)
263
+ - Fix regression in forms input in toolbar height related to (#5115) @sneridagh [#5176](https://github.com/plone/volto/issues/5176)
264
+ - Update delete-content modal to simplify text and improve UX @danlavrz [#4786](https://github.com/plone/volto/issues/4786)
265
+ - Improved accessibility by adding an `aria-label` to the search icon on sharing page. @ZubairImtiaz3 [#5124](https://github.com/plone/volto/issues/5124)
266
+ - Fixed PreviewImage component to work as Image component when testing image, and added showDefault prop to PreviewImage [#5153](https://github.com/plone/volto/issues/5153)
267
+ - Fix empty slate text block in table of contents. @kreafox [#5156](https://github.com/plone/volto/issues/5156)
268
+ - Remove integration with volto-style-block, as it's not working anymore @dobri1408 [#5192](https://github.com/plone/volto/issues/5192)
269
+ - Fix standalone navigation action call if expander is set @sneridagh [#5197](https://github.com/plone/volto/issues/5197)
270
+ - Updated the deprecated Buffer.from package in create-addons-loader.js @Junko-Takeguchi [#5205](https://github.com/plone/volto/issues/5205)
271
+ - restrict moment.js locales to supported languages @mamico [#5207](https://github.com/plone/volto/issues/5207)
272
+ - Fix links to link integrity in delete modal @sneridagh [#5226](https://github.com/plone/volto/issues/5226)
273
+ - Fix dependency problem, 'moment-locales-webpack-plugin' can't be in devDeps, since Razzle needs it in the projects. @sneridagh [#5236](https://github.com/plone/volto/issues/5236)
274
+
275
+ ### Internal
276
+
277
+ - Add HI-ERN website to "Volto in Production" section in README @steffenri [#4172](https://github.com/plone/volto/issues/4172)
278
+ - Trigger CI workflows to run from external pull requests. @davisagli [#4629](https://github.com/plone/volto/issues/4629)
279
+ - Update to p.restapi 8.36.0 and Plone 6.0.3 @sneridagh [#4682](https://github.com/plone/volto/issues/4682)
280
+ - Change conditional checking to optional chaining for a theme icon @nilootpal [#4567](https://github.com/plone/volto/issues/4567)
281
+ - Security upgrade for momentjs [#4715](https://github.com/plone/volto/issues/4715)
282
+ - Upgrade to Plone 6.0.4 @sneridagh [#4743](https://github.com/plone/volto/issues/4743)
283
+ - Remove max_line_length from .editorconfig @pnicolli [#4776](https://github.com/plone/volto/issues/4776)
284
+ - Fix unannounced breaking change in cypress-io/github-action @sneridagh [#4795](https://github.com/plone/volto/issues/4795)
285
+ - Add Storybook story for useDetectClickOutside hook with several demos @sneridagh [#4923](https://github.com/plone/volto/issues/4923)
286
+ - Upgrade bundlewatch to 0.3.3. @wesleybl [#4967](https://github.com/plone/volto/issues/4967)
287
+ - Update to latest plone.restapi and Plone 6.0.6 @sneridagh [#4979](https://github.com/plone/volto/issues/4979)
288
+ - Remove dangling out of place Guillotina Cypress tests @sneridagh [#4980](https://github.com/plone/volto/issues/4980)
289
+ - Upgrade to Cypress 12.17.1 (latest) @sneridagh [#4981](https://github.com/plone/volto/issues/4981)
290
+ - Add https://www.dlr.de/de to "Volto in production" list. @tisto [#5112](https://github.com/plone/volto/pull/5112)
291
+ - Improved spellcheck to keep spellings consistent. @chirayu-humar [#1190](https://github.com/plone/volto/issues/1190)
292
+ - Redistribute Cypress Basic Core tests into other jobs @sneridagh [#5199](https://github.com/plone/volto/issues/5199)
293
+ - Update to latest plone.restapi and Plone 6.0.7 @sneridagh [#5213](https://github.com/plone/volto/issues/5213)
294
+
295
+ ### Documentation
296
+
297
+ - Add a new Volto site to the README @erral [#4158](https://github.com/plone/volto/issues/4158), [#4170](https://github.com/plone/volto/issues/4170)
298
+ - Add new websites Lanku and UEU
299
+ [erral] [#4310](https://github.com/plone/volto/issues/4310)
300
+ - Fix English and MyST grammar and syntax from PR #4285 @stevepiercy [#4331](https://github.com/plone/volto/issues/4331)
301
+ - Use a universal static path for both documentation and volto repos. @stevepiercy [#4376](https://github.com/plone/volto/issues/4376)
302
+ - Complete teaser docs, add new section in `Blocks`: `Core Blocks developers notes` @sneridagh [#4461](https://github.com/plone/volto/issues/4461)
303
+ - Change from links to inline literals in `CHANGELOG.md` to fix linkcheckbroken. @stevepiercy [#4470](https://github.com/plone/volto/issues/4470)
304
+ - Fix training urls @ksuess [#4502](https://github.com/plone/volto/issues/4502)
305
+ - Add upgrade guide for 4504 @sneridagh [#4542](https://github.com/plone/volto/issues/4542)
306
+ - Deleted duplicate import and fixed training URLs. @yahya-cloud [#4523](https://github.com/plone/volto/issues/4523)
307
+ - Fix grammar in PR #4542. @stevepiercy [#4555](https://github.com/plone/volto/issues/4555)
308
+ - Fix broken links at `ReactJS.org`. @stevepiercy [#4569](https://github.com/plone/volto/issues/4569)
309
+ - Fix video warnings and link errors. @stevepiercy [#4578](https://github.com/plone/volto/issues/4578)
310
+ - Added `JavaScript` and `NodeJS` as accepted spellings, and deviations of them as rejected spellings. @utkkkarshhh [#3092](https://github.com/plone/volto/issues/3092)
311
+ - Fix documentation build, add pins @sneridagh [#4626](https://github.com/plone/volto/issues/4626)
312
+ - Update Volto contributing to align with and refer to the new Plone core code contributing requirements. @stevepiercy [#4634](https://github.com/plone/volto/issues/4634)
313
+ - Improve creating views documentation page. @rboixaderg [#4636](https://github.com/plone/volto/issues/4636)
314
+ - Razzle upgrade notice in upgrade guide @sneridagh [#4641](https://github.com/plone/volto/issues/4641)
315
+ - Rename "Developer Guidelines" to "Contributing". @stevepiercy [#4666](https://github.com/plone/volto/issues/4666)
316
+ - Fix broken link to `ReactJS.org`. @stevepiercy [#4667](https://github.com/plone/volto/issues/4667)
317
+ - Update links for 2022 Training archive. @stevepiercy [#4635](https://github.com/plone/volto/issues/4635)
318
+ - Added documentation regarding the static middleware. @BhardwajAditya-github [#4518](https://github.com/plone/volto/issues/4518)
319
+ - Use new URL `6.docs.plone.org`. @stevepiercy [#4726](https://github.com/plone/volto/issues/4726)
320
+ - Synch stuff from `16.x.x` branch that should have been in `master` as well. @stevepiercy [#4728](https://github.com/plone/volto/issues/4728)
321
+ - Fix link in Volto, remove from linkcheck ignore in Documentation. @stevepiercy [#4742](https://github.com/plone/volto/issues/4742)
322
+ - Fix glossary warning due to lack of empty line before a term. @stevepiercy [#4820](https://github.com/plone/volto/issues/4820)
323
+ - Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
324
+ - Added note that Pluggables are not compatible with server-side rendering (SSR). @Akshat2Jain [#4735](https://github.com/plone/volto/issues/4735)
325
+ - Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
326
+ - Exclude video markup from `make text` builder. @stevepiercy [#4966](https://github.com/plone/volto/issues/4966)
327
+ - Add short comment for easier finding registered components. @ksuess [#5017](https://github.com/plone/volto/issues/5017)
328
+ - Fix 302 redirect in changelog. @stevepiercy [#5068](https://github.com/plone/volto/issues/5068)
329
+ - Update links to contributing. @stevepiercy [#5084](https://github.com/plone/volto/issues/5084)
330
+ - Accept `plone` and `volto` in labels with janky regex. Include Vale styles directory for checking spelling and styles. @stevepiercy [#5095](https://github.com/plone/volto/issues/5095)
331
+ - Fix linkcheckbroken 301 redirect to https://www.dlr.de/de @stevepiercy [#5131](https://github.com/plone/volto/issues/5131)
332
+ - Update documentation: instruction 'make develop' to fetch add-on from repository. @ksuess [#5195](https://github.com/plone/volto/issues/5195)
333
+ - Document the `querystringSearchGet` setting @erral [#5206](https://github.com/plone/volto/issues/5206)
334
+ - Add new website IPN [pbauer] [#5241](https://github.com/plone/volto/issues/5241)
335
+
336
+ ## 17.0.0-alpha.30 (2023-09-28)
337
+
338
+ ### Bugfix
339
+
340
+ - Fix dependency problem, 'moment-locales-webpack-plugin' can't be in devDeps, since Razzle needs it in the projects. @sneridagh [#5236](https://github.com/plone/volto/issues/5236)
341
+
342
+
343
+ ## 17.0.0-alpha.28 (2023-09-28)
344
+
345
+ ### Breaking
346
+
347
+ - Updated Prettier @sneridagh
348
+ Upgrade Stylelint @sneridagh
349
+ Fixed introduced violations due to the upgrades @sneridagh
350
+ Updated HTML block and prettier loadables to match the new async Prettier plugin API @sneridagh [#5216](https://github.com/plone/volto/issues/5216)
351
+ - Improve linked headlines after feedback:
352
+ Disable the feature for anonymous users of the website
353
+ Disable it for the page title
354
+ Change the wording of the notification from "Link copied to clipboard" to "Anchor link copied to the clipboard" to make it more obvious that an anchor link has been copied
355
+ Normalize the slug to use only ascii characters
356
+ @sneridagh [#5225](https://github.com/plone/volto/issues/5225)
357
+
358
+ ### Feature
359
+
360
+ - Refactor PersonalTools component -@Tishasoumya-02 [#4954](https://github.com/plone/volto/issues/4954)
361
+ - Refactor Sidebar component-@Tishasoumya-02 [#4964](https://github.com/plone/volto/issues/4964)
362
+ - Refactor ContentsPropertiesModal -@Tishasoumya-02 [#4968](https://github.com/plone/volto/issues/4968)
363
+ - Refactor ContentsWorkflowModal -@Tishasoumya-02 [#4969](https://github.com/plone/volto/issues/4969)
364
+ - Refactor ContentsRenameModal -@Tishasoumya-02 [#4970](https://github.com/plone/volto/issues/4970)
365
+ - Refactor ContentsTagsModal -@Tishasoumya-02 [#4971](https://github.com/plone/volto/issues/4971)
366
+ - Updated Spanish translations @macagua [#5200](https://github.com/plone/volto/issues/5200)
367
+ - add canonical link @mamico [#5215](https://github.com/plone/volto/issues/5215)
368
+
369
+ ### Bugfix
370
+
371
+ - Improved accessibility by adding an `aria-label` to the search icon on sharing page. @ZubairImtiaz3 [#5124](https://github.com/plone/volto/issues/5124)
372
+ - Fixed PreviewImage component to work as Image component when testing image, and added showDefault prop to PreviewImage [#5153](https://github.com/plone/volto/issues/5153)
373
+ - Fix empty slate text block in table of contents. @kreafox [#5156](https://github.com/plone/volto/issues/5156)
374
+ - Remove integration with volto-style-block, as it's not working anymore @dobri1408 [#5192](https://github.com/plone/volto/issues/5192)
375
+ - Fix standalone navigation action call if expander is set @sneridagh [#5197](https://github.com/plone/volto/issues/5197)
376
+ - Updated the deprecated Buffer.from package in create-addons-loader.js @Junko-Takeguchi [#5205](https://github.com/plone/volto/issues/5205)
377
+ - restrict moment.js locales to supported languages @mamico [#5207](https://github.com/plone/volto/issues/5207)
378
+ - Fix links to link integrity in delete modal @sneridagh [#5226](https://github.com/plone/volto/issues/5226)
379
+
380
+ ### Internal
381
+
382
+ - Redistribute Cypress Basic Core tests into other jobs @sneridagh [#5199](https://github.com/plone/volto/issues/5199)
383
+ - Update to latest plone.restapi and Plone 6.0.7 @sneridagh [#5213](https://github.com/plone/volto/issues/5213)
384
+
385
+ ### Documentation
386
+
387
+ - Update documentation: instruction 'make develop' to fetch add-on from repository. @ksuess [#5195](https://github.com/plone/volto/issues/5195)
388
+ - Document the `querystringSearchGet` setting @erral [#5206](https://github.com/plone/volto/issues/5206)
389
+
390
+
391
+ ## 17.0.0-alpha.27 (2023-09-18)
392
+
393
+ ### Feature
394
+
395
+ - TypeScript support in core @sneridagh @ninanoleto [#4662](https://github.com/plone/volto/issues/4662)
396
+ - Add external className to slate Link view. @iFlameing [#5109](https://github.com/plone/volto/issues/5109)
397
+
398
+ ### Bugfix
399
+
400
+ - Update delete-content modal to simplify text and improve UX @danlavrz [#4786](https://github.com/plone/volto/issues/4786)
401
+
402
+
403
+ ## 17.0.0-alpha.26 (2023-09-14)
404
+
405
+ ### Breaking
406
+
407
+ - Upgrade to Cypress 13 @sneridagh [#5163](https://github.com/plone/volto/issues/5163)
408
+ - Removed support for Node.js 16. It is no longer supported by the Node.js community. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
409
+
410
+ ### Feature
411
+
412
+ - Use the `@navroot` endpoint to build the `title` tag. @erral
413
+
414
+ Use the `@site` endpoint to render the logo. @erral
415
+
416
+ Register a widget to set the logo in the site control panel. @erral [#3537](https://github.com/plone/volto/issues/3537)
417
+ - Refactor Navigation -@Tishasoumya-02 [#4076](https://github.com/plone/volto/issues/4076)
418
+ - Added loading spinner and disable search button while data is fetching. @tedw87 [#4551](https://github.com/plone/volto/issues/4551)
419
+ - User Control panel improvements. See #4551 @erral [#4572](https://github.com/plone/volto/issues/4572)
420
+ - Messages Component Refactor - @Tishasoumya-02 [#4926](https://github.com/plone/volto/issues/4926)
421
+ - Refactor Login -@Tishasoumya-02 [#4933](https://github.com/plone/volto/issues/4933)
422
+ - Add external className to UniversalLink for external link. @iFlameing [#5109](https://github.com/plone/volto/issues/5109)
423
+ - Updated Spanish translation @macagua [#5120](https://github.com/plone/volto/issues/5120)
424
+ - (feat): Update toc block entries @dobri1408 [#5146](https://github.com/plone/volto/issues/5146)
425
+ - Views cypress test -@Tishasoumya [#5149](https://github.com/plone/volto/issues/5149)
426
+ - Added support for Node.js 20. @davisagli [#5166](https://github.com/plone/volto/issues/5166)
427
+ - Cypress test to test if 'Search results: number' text is present @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
428
+
429
+ ### Bugfix
430
+
431
+ - Fix for responsive error in the login page when the width of the screen decreases. @suman9893 [#3250](https://github.com/plone/volto/issues/3250)
432
+ - Fix back button in the search block to execute the search by adding two useEffects that update the facets and search data based on the current URL. @MihaelaCretu11 [#4402](https://github.com/plone/volto/issues/4402)
433
+ - fix : RecursiveWidget is incorrectly translated. @suman9893 [#4503](https://github.com/plone/volto/issues/4503)
434
+ - Fix use of CSS modules in webpack 5. @wesleybl [#5019](https://github.com/plone/volto/issues/5019)
435
+ - Fix toc accessibility issue @dobri1408 [#5058](https://github.com/plone/volto/issues/5058)
436
+ - Fix storybook config for project generator. Add support for SCSS, upgrade to webpack 5 in there as well. @sneridagh [#5132](https://github.com/plone/volto/issues/5132)
437
+ - Don't show ``No value`` option in SelectWidget and ArrayWidget if default value is 0. @wesleybl [#5151](https://github.com/plone/volto/issues/5151)
438
+ - Fix SelectWidget throwing error when editing a recently created content. @iFlameing [#5154](https://github.com/plone/volto/issues/5154)
439
+ - Fix editing layout for blocks using schema enhancers. @iFlameing, @davisagli [#5158](https://github.com/plone/volto/issues/5158)
440
+ - Fix ContentRules add and edit forms for languages other than English. @ericof [#5161](https://github.com/plone/volto/issues/5161)
441
+ - Fix search block search results number @ionlizarazu [#5171](https://github.com/plone/volto/issues/5171)
442
+ - fix flaky cypress in blocks-listing.js @nileshgulia1 [#5173](https://github.com/plone/volto/issues/5173)
443
+ - Fix regression in forms input in toolbar height related to (#5115) @sneridagh [#5176](https://github.com/plone/volto/issues/5176)
444
+
445
+ ### Documentation
446
+
447
+ - Fix linkcheckbroken 301 redirect to https://www.dlr.de/de @stevepiercy [#5131](https://github.com/plone/volto/issues/5131)
448
+
449
+
450
+ ## 17.0.0-alpha.25 (2023-08-25)
451
+
452
+ ### Breaking
453
+
454
+ - Spin off relation stats action. Get relation stats with getRelationStats() instead of with queryRelations(). @ksuess
455
+ Refactor relations actions: slightly change the shape of the redux state for `queryRelations` to follow common signatures. @ksuess [#5041](https://github.com/plone/volto/issues/5041)
456
+
457
+ ### Feature
458
+
459
+ - Refactor Comment -@Tishasoumya-02 [#4074](https://github.com/plone/volto/issues/4074)
460
+ - Refactor Logout component @Tishasoumya-02 [#4860](https://github.com/plone/volto/issues/4860)
461
+ - Refactore SearchTags @Tishasoumya-02 [#4873](https://github.com/plone/volto/issues/4873)
462
+
463
+ ### Bugfix
464
+
465
+ - Allow a user to register when they use an email address as their username. [#5031](https://github.com/plone/volto/issues/5031) @mehedikhan72 [#5031](https://github.com/plone/volto/issues/5031)
466
+ - Fix querystringResults subrequests id, to work properly in duplicate pages where blocks id's are the same. @giuliaghisini [#5070](https://github.com/plone/volto/issues/5070)
467
+ - Fix i18n for link settings fieldset in the image block @iRohitSingh [#5075](https://github.com/plone/volto/issues/5075)
468
+ - Prevent caching the outdated browser message in a shared cache. @davisagli [#5076](https://github.com/plone/volto/issues/5076)
469
+ - Fix accessibility of the content folder buttons. @SaraBianchi [#5101](https://github.com/plone/volto/issues/5101)
470
+ - For folders inside navigation roots, properly fetch navigation from the
471
+ navroot, rather then the site root @tiberiuichim [#5106](https://github.com/plone/volto/issues/5106)
472
+ - Fix uncached case when the widget is slate on diff @dobri1408 [#5107](https://github.com/plone/volto/issues/5107)
473
+ - Fix load addon translations: last addon translations wins @giuliaghisini [#5113](https://github.com/plone/volto/issues/5113)
474
+ - [Visual bugfix] Match the original mockups for PastanagaUI in regards of the error messages in form field elements @sneridagh [#5115](https://github.com/plone/volto/issues/5115)
475
+ - Fix default toc renderer for nested entries @pnicolli [#5116](https://github.com/plone/volto/issues/5116)
476
+ - Fix inherit checkbox in sharing view @sneridagh [#5514](https://github.com/plone/volto/issues/5514)
477
+
478
+ ### Internal
479
+
480
+ - Improved spellcheck to keep spellings consistent. @chirayu-humar [#1190](https://github.com/plone/volto/issues/1190)
481
+
482
+ ### Documentation
483
+
484
+ - Update links to contributing. @stevepiercy [#5084](https://github.com/plone/volto/issues/5084)
485
+ - Accept `plone` and `volto` in labels with janky regex. Include Vale styles directory for checking spelling and styles. @stevepiercy [#5095](https://github.com/plone/volto/issues/5095)
486
+
487
+
488
+ ## 17.0.0-alpha.24 (2023-08-09)
489
+
490
+ ### Breaking
491
+
492
+ - Update `@plone/scripts` to 3.0.0. @davisagli [#5040](https://github.com/plone/volto/issues/5040)
493
+
494
+ ### Bugfix
495
+
496
+ - Fix handling of exceptions in reducers. @davisagli [#5069](https://github.com/plone/volto/issues/5069)
497
+ - Add missing i18n for ToC block. @davisagli [#5073](https://github.com/plone/volto/issues/5073)
498
+
499
+ ### Documentation
500
+
501
+ - Fix 302 redirect in changelog. @stevepiercy [#5068](https://github.com/plone/volto/issues/5068)
502
+
503
+ ### Internal
504
+
505
+ - Add https://www.dlr.de/de to "Volto in production" list. @tisto [#5112](https://github.com/plone/volto/pull/5112)
506
+
507
+ ## 17.0.0-alpha.23 (2023-07-28)
508
+
509
+ ### Bugfix
510
+
511
+ - Fix regression from v17a22: It was not possible to select a block in a grid
512
+ column unless the grid was already selected. @davisagli
513
+
514
+ Fix regression from v17a22: Block outline was blocking clicks in some cases.
515
+ @davisagli [#5039](https://github.com/plone/volto/issues/5039)
516
+
517
+
518
+ ## 17.0.0-alpha.22 (2023-07-28)
519
+
520
+ ### Feature
521
+
522
+ - Refactor Delete -@Tishasoumya [#4890](https://github.com/plone/volto/issues/4890)
523
+ - Refactor workflow -@Tishasoumya-02 [#4902](https://github.com/plone/volto/issues/4902)
524
+ - Refactor Request Reset Password-@Tishasoumya-02 [#4938](https://github.com/plone/volto/issues/4938)
525
+ - Refactor Actions-@Tishasoumya-02 [#4939](https://github.com/plone/volto/issues/4939)
526
+ - Refactor Blocks/Maps/Edit component -@Tishasoumya-02 [#4958](https://github.com/plone/volto/issues/4958)
527
+ - Updated Italian translations @sabrina-bongiovanni [#4987](https://github.com/plone/volto/issues/4987)
528
+ - Made selectedView and className props available in the SearchBlockView.jsx to improve styling development. @danalvrz [#4997](https://github.com/plone/volto/issues/4997)
529
+
530
+ ### Bugfix
531
+
532
+ - Fix Volto contents - set properties Exclude from navigation - bad request, set exclude_from_nav to boolean [#4855](https://github.com/plone/volto/issues/4855)
533
+ - Add XSendfile headers to files and images middleware @instification [#4984](https://github.com/plone/volto/issues/4984)
534
+ - search-block: translate some missing strings to german and fix a typo. @pbauer [#4996](https://github.com/plone/volto/issues/4996)
535
+ - Add image block className support (Style wrapper). @sneridagh [#5018](https://github.com/plone/volto/issues/5018)
536
+ - Fix for 'no value' entry in table of content field. @satyam4p [#5022](https://github.com/plone/volto/issues/5022)
537
+ - Fix updating roles when username contains a period (.). @nileshgulia1 [#5025](https://github.com/plone/volto/issues/5025)
538
+ - Fix hover and focused border for block child. @claudiaifrim [#5028](https://github.com/plone/volto/issues/5028)
539
+ - Enhance display and repairing of broken relations. @ksuess [#5033](https://github.com/plone/volto/issues/5033)
540
+ - Fix selecting grid block when a sub-block is selected. @davisagli [#5036](https://github.com/plone/volto/issues/5036)
541
+ - Update versions of semver and release-it. @davisagli [#5053](https://github.com/plone/volto/issues/5053)
542
+
543
+ ### Documentation
544
+
545
+ - Add short comment for easier finding registered components. @ksuess [#5017](https://github.com/plone/volto/issues/5017)
546
+
547
+
548
+ ## 17.0.0-alpha.21 (2023-07-23)
549
+
550
+ ### Breaking
551
+
552
+ - Added new Image component to render optimized images @pnicolli @davisagli [#3337](https://github.com/plone/volto/issues/3337)
553
+
554
+ ### Feature
555
+
556
+ - Add getFieldURL helper function used to get the url value of a field based on its structure. @razvanMiu [#2252](https://github.com/plone/volto/issues/2252)
557
+
558
+ ### Bugfix
559
+
560
+ - Fix delete confirmation to handle empty `breaches`. @davisagli [#4832](https://github.com/plone/volto/issues/4832)
561
+
562
+ ### Internal
563
+
564
+ - Upgrade to Cypress 12.17.1 (latest) @sneridagh [#4981](https://github.com/plone/volto/issues/4981)
565
+
566
+
567
+ ## 17.0.0-alpha.20 (2023-07-18)
568
+
569
+ ### Feature
570
+
571
+ - Use all the apiExpanders in use, so we perform a single request for getting all the required data. @sneridagh [#4946](https://github.com/plone/volto/issues/4946)
572
+
573
+ ### Bugfix
574
+
575
+ - 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)
576
+
577
+
578
+ ## 17.0.0-alpha.19 (2023-07-18)
579
+
580
+ ### Feature
581
+
582
+ - Add /ok route as an express middleware @ionlizarazu [#4375](https://github.com/plone/volto/issues/4375)
583
+ - Add `Links to item` view (available via object's more menu) @pgrunewald [#4787](https://github.com/plone/volto/issues/4787)
584
+ - Tune 'Links to item' view to 'Links and references' view. Show all relation types. @ksuess @stevepiercy [#4842](https://github.com/plone/volto/issues/4842)
585
+ - Update browserlist to latest @sneridagh [#4977](https://github.com/plone/volto/issues/4977)
586
+
587
+ ### Bugfix
588
+
589
+ - Handle condition for yearly frequency in recurrence @BhuvaneshPatil [#4498](https://github.com/plone/volto/issues/4498)
590
+ - Fix search block input clear button doesn't reset the search @iFlameing [#4828](https://github.com/plone/volto/issues/4828)
591
+
592
+ ### Internal
593
+
594
+ - Update to latest plone.restapi and Plone 6.0.6 @sneridagh [#4979](https://github.com/plone/volto/issues/4979)
595
+ - Remove dangling out of place Guillotina Cypress tests @sneridagh [#4980](https://github.com/plone/volto/issues/4980)
596
+
597
+
598
+ ## 17.0.0-alpha.18 (2023-07-16)
599
+
600
+ ### Feature
601
+
602
+ - Refactor CommentEdit -@Tishasoumya-02 [#4075](https://github.com/plone/volto/issues/4075)
603
+ - Facets should be able to decide themselves if they should show or not. Made defaultShowFacet to be a fallback in case there is no custom function for each facet type. @tedw87 [#4579](https://github.com/plone/volto/issues/4579)
604
+ - Add backward compatibility to `slate_richtext` with fields that are plain text @razvanMiu [#4796](https://github.com/plone/volto/issues/4796)
605
+ - Refactor-Contact Form @Tishasoumya-02 [#4850](https://github.com/plone/volto/issues/4850)
606
+ - Refactor BreadcrumbsComponent @Tishasoumya-02 [#4858](https://github.com/plone/volto/issues/4858)
607
+ - Refactor SearchWidget @Tishasoumya-02 [#4864](https://github.com/plone/volto/issues/4864)
608
+ - Refactor LinkView -@Tishasoumya-02 [#4866](https://github.com/plone/volto/issues/4866)
609
+ - Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
610
+
611
+ ### Bugfix
612
+
613
+ - Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
614
+ - Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
615
+ - fix(styleMenu): Highlight selected block styles @nileshgulia1 [#4851](https://github.com/plone/volto/issues/4851)
616
+ - Fix tablet main menu. [#4859](https://github.com/plone/volto/issues/4859)
617
+ - Fix the table of contents block so that if one or more items get out of the viewport, a dropdown menu appears with all the items that do not fit the viewport and also added an option to make the TOC sticky. @MihaelaCretu11 [#4907](https://github.com/plone/volto/issues/4907)
618
+ - Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
619
+ - Typo in Italian locales @mamico [#4944](https://github.com/plone/volto/issues/4944)
620
+ - Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
621
+ - Fix slateTable still uses old style of sidebar generation @iFlameing [#4972](https://github.com/plone/volto/issues/4972)
622
+ - Fix password autocomplete hint for login form. @davisagli [#4976](https://github.com/plone/volto/issues/4976)
623
+
624
+ ### Internal
625
+
626
+ - Upgrade bundlewatch to 0.3.3. @wesleybl [#4967](https://github.com/plone/volto/issues/4967)
627
+
628
+ ### Documentation
629
+
630
+ - Added note that Pluggables are not compatible with server-side rendering (SSR). @Akshat2Jain [#4735](https://github.com/plone/volto/issues/4735)
631
+ - Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
632
+ - Exclude video markup from `make text` builder. @stevepiercy [#4966](https://github.com/plone/volto/issues/4966)
633
+
634
+
635
+ ## 17.0.0-alpha.17 (2023-07-11)
636
+
637
+ ### Breaking
638
+
639
+ - Remove useToken & useContent hooks-@Tishasoumya-02 [#4951](https://github.com/plone/volto/issues/4951)
640
+
641
+ ### Feature
642
+
643
+ - Use container from component registry in content type views, if defined. @sneridagh [#4962](https://github.com/plone/volto/issues/4962)
644
+
645
+ ### Bugfix
646
+
647
+ - Fix temporary rendering of folder contents while query results are loading. @davisagli [#4351](https://github.com/plone/volto/issues/4351)
648
+ - Fix isBlacklisted method check for volto externalRoutes [#4725](https://github.com/plone/volto/issues/4725)
649
+ - Add a marker in the props passed to `RenderBlocks` in the Grid block view @sneridagh [#4932](https://github.com/plone/volto/issues/4932)
650
+ - Fix handling of overriden image in Teaser, improve in case that a custom image component is present. @sneridagh [#4964](https://github.com/plone/volto/issues/4964)
651
+
652
+ ### Documentation
653
+
654
+ - Replace broken link for @albertcasado to use GitHub instead of Twitter. @stevepiercy [#4941](https://github.com/plone/volto/issues/4941)
655
+
656
+
657
+ ## 17.0.0-alpha.16 (2023-06-28)
658
+
659
+ ### Feature
660
+
661
+ - New block: Grid - A container of blocks, arranged in horizontal direction. @sneridagh
662
+ New primitive: Container - A primitive to build blocks containing other blocks. @sneridagh [#3180](https://github.com/plone/volto/issues/3180)
663
+
664
+
665
+ ## 17.0.0-alpha.15 (2023-06-28)
666
+
667
+ ### Breaking
668
+
669
+ - Use proper heading tag (depending on the headline) in default listing template @sneridagh [#4848](https://github.com/plone/volto/issues/4848)
670
+
671
+ ### Bugfix
672
+
673
+ - Remove anonymous function calls. Remove default exports from. @sneridagh [#4917](https://github.com/plone/volto/issues/4917)
674
+ - Fix Annontools StoryBook @sneridagh [#4921](https://github.com/plone/volto/issues/4921)
675
+ - Fix the experimental add new block button position, compensate the icon width to center it correctly @sneridagh [#4924](https://github.com/plone/volto/issues/4924)
676
+
677
+ ### Internal
678
+
679
+ - Add Storybook story for useDetectClickOutside hook with several demos @sneridagh [#4923](https://github.com/plone/volto/issues/4923)
680
+
681
+
682
+ ## 17.0.0-alpha.14 (2023-06-23)
683
+
684
+ ### Feature
685
+
686
+ - Added slug-based linked headings in `volto-slate`. @tiberiuichim, @nileshgulia1 [#4287](https://github.com/plone/volto/issues/4287)
687
+ - Refactored Anontools components. @Tishasoumya-02 [#4845](https://github.com/plone/volto/issues/4845)
688
+
689
+ ### Bugfix
690
+
691
+ - Update to version 6.0.5 of Plone backend. @davisagli [#4897](https://github.com/plone/volto/issues/4897)
692
+
693
+
694
+ ## 17.0.0-alpha.13 (2023-06-15)
695
+
696
+ ### Feature
697
+
698
+ - Add and enforce a new config setting, `maxFileUploadSize`. @davisagli [#4868](https://github.com/plone/volto/issues/4868)
699
+
700
+ ### Bugfix
701
+
702
+ - Fix and improve the `addStyling` helper @sneridagh [#4880](https://github.com/plone/volto/issues/4880)
703
+
704
+
705
+ ## 17.0.0-alpha.12 (2023-06-14)
706
+
707
+ ### Feature
708
+
709
+ - Allow to deselect color in ColorPickerWidget. @ksuess [#4838](https://github.com/plone/volto/issues/4838)
710
+ - Configurable Container component from registry for some key route views. @sneridagh [#4871](https://github.com/plone/volto/issues/4871)
711
+
712
+ ### Bugfix
713
+
714
+ - Fix regression in horizontal scroll in contents view, add it back @sneridagh [#4872](https://github.com/plone/volto/issues/4872)
715
+
716
+
717
+ ## 17.0.0-alpha.11 (2023-06-09)
718
+
719
+ ### Bugfix
720
+
721
+ - Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
722
+
723
+
724
+ ## 17.0.0-alpha.10 (2023-06-09)
725
+
726
+ ### Feature
727
+
728
+ - Search Block: Add support for advanced facets that are only displayed on demand.
729
+ [pbauer, razvanMiu, claudiaifrim] [#4783](https://github.com/plone/volto/issues/4783)
730
+ - Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
731
+ - Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
732
+ - Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
733
+ - Update Brazilian Portuguese translations @ericof [#4853](https://github.com/plone/volto/issues/4853)
734
+
735
+ ### Bugfix
736
+
737
+ - Convert header class to function. @gomez [#4767](https://github.com/plone/volto/issues/4767)
738
+ - Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)
739
+
740
+
11
741
  ## 17.0.0-alpha.9 (2023-06-01)
12
742
 
13
743
  ### Bugfix
@@ -219,7 +949,7 @@
219
949
 
220
950
  ### Breaking
221
951
 
222
- - Volto 17 drops support for NodeJS 14, and adds support for NodeJS 18.
952
+ - Volto 17 drops support for NodeJS 14, and adds support for Node.js 18.
223
953
  Please see the [upgrade guide](https://6.docs.plone.org/volto/upgrade-guide/index.html)
224
954
  for more information.
225
955
 
@@ -238,6 +968,44 @@
238
968
  - Use a universal static path for both documentation and volto repos. @stevepiercy [#4376](https://github.com/plone/volto/issues/4376)
239
969
 
240
970
 
971
+ ## 16.21.1 (2023-06-23)
972
+
973
+ ### Bugfix
974
+
975
+ - Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)
976
+
977
+
978
+ ## 16.21.0 (2023-06-16)
979
+
980
+ ### Feature
981
+
982
+ - Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
983
+ - Allow to deselect color in ColorPickerWidget. @ksuess [#4838](https://github.com/plone/volto/issues/4838)
984
+ - Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
985
+ - Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
986
+ - Add and enforce a new config setting, `maxFileUploadSize`. @davisagli [#4868](https://github.com/plone/volto/issues/4868)
987
+ - Configurable Container component from registry for some key route views. @sneridagh [#4871](https://github.com/plone/volto/issues/4871)
988
+
989
+ ### Bugfix
990
+
991
+ - Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)
992
+ - Fix regression in horizontal scroll in contents view, add it back @sneridagh [#4872](https://github.com/plone/volto/issues/4872)
993
+ - Fix and improve the `addStyling` helper @sneridagh [#4880](https://github.com/plone/volto/issues/4880)
994
+
995
+
996
+ ## 16.20.8 (2023-06-01)
997
+
998
+ ### Bugfix
999
+
1000
+ - Fix special characters in request urls @pnicolli @mamico @luca-bellenghi @cekk [#4826](https://github.com/plone/volto/issues/4826)
1001
+ - Fix block is undefined in StyleWrapper helper when building classnames @sneridagh [#4827](https://github.com/plone/volto/issues/4827)
1002
+ - Fix navigation sections in 404 pages @sneridagh [#4836](https://github.com/plone/volto/issues/4836)
1003
+
1004
+ ### Documentation
1005
+
1006
+ - Fix glossary warning due to lack of empty line before a term. @stevepiercy [#4820](https://github.com/plone/volto/issues/4820)
1007
+
1008
+
241
1009
  ## 16.20.7 (2023-05-24)
242
1010
 
243
1011
  ### Bugfix
@@ -1081,7 +1849,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
1081
1849
  - Update README with latest versions, point to Plone 6 as recommended default @sneridagh
1082
1850
  - Trigger a new deploy core Plone documentation when Volto documentation is updated @esteele
1083
1851
  - Update supported Python versions. @stevepiercy
1084
- - Add NodeJS 18 (LTS) usage notice @sneridagh
1852
+ - Add Node.js 18 (LTS) usage notice @sneridagh
1085
1853
  - Fix Netlify build @sneridagh
1086
1854
  - Fix grammar in Theming Strategy. Fixes #954. @stevepiercy
1087
1855
  - Fix wording in About Semantic UI. Fixes #953. @stevepiercy
@@ -1209,6 +1977,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
1209
1977
  - Add support for loading core add-ons from the `packages` folder defined in Volto's `package.json` @sneridagh
1210
1978
  - Implement the Upgrade Control Panel @ericof
1211
1979
  - Allow addons to customize modules from the project root, via the `@root` namespace and folder @tiberiuichim
1980
+ - Updated Spanish translation @macagua
1212
1981
 
1213
1982
  ### Bugfix
1214
1983
 
@@ -1293,7 +2062,7 @@ See https://6.docs.plone.org/volto/upgrade-guide/index.html for more information
1293
2062
 
1294
2063
  ### Documentation
1295
2064
 
1296
- - Add NodeJS 18 (LTS) usage notice @sneridagh
2065
+ - Add Node.js 18 (LTS) usage notice @sneridagh
1297
2066
  - Fix Netlify build @sneridagh
1298
2067
 
1299
2068
  ## 16.0.0-alpha.45 (2022-10-24)
@@ -2640,7 +3409,7 @@ new users/evaluators. @fredvd
2640
3409
  ### Internal
2641
3410
 
2642
3411
  - Fix URL for Climate-Energy, a Volto website @tiberiuichim
2643
- - Fix quirky Cypress test in "DX control panel schema" (see https://github.com/plone/volto/actions/runs/1692689792/jobs/2306969715) @sneridagh
3412
+ - Fix quirky Cypress test in "DX control panel schema" @sneridagh
2644
3413
 
2645
3414
  ## 14.2.1 (2022-01-12)
2646
3415