design-comuni-plone-theme 11.10.1 → 12.0.0-alpha.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 (194) hide show
  1. package/.github/workflows/slate.yml +47 -0
  2. package/.yarn/cache/@babel-helper-module-imports-npm-7.24.3-edb733448b-c23492189b.zip +0 -0
  3. package/.yarn/cache/@babel-types-npm-7.24.0-a0508cb308-4b574a37d4.zip +0 -0
  4. package/.yarn/cache/babel-plugin-lodash-npm-3.3.4-c7161075b6-044a4261e6.zip +0 -0
  5. package/.yarn/cache/require-package-name-npm-2.0.1-ac9a206b63-00f4e9e467.zip +0 -0
  6. package/.yarn/cache/{volto-form-block-npm-3.7.2-f24953a510-7387a1b85a.zip → volto-form-block-npm-3.8.2-e49cbe07d5-5b72a06a5e.zip} +0 -0
  7. package/.yarn/install-state.gz +0 -0
  8. package/CHANGELOG.md +878 -904
  9. package/RELEASE.md +8 -0
  10. package/locales/de/LC_MESSAGES/volto.po +86 -18
  11. package/locales/en/LC_MESSAGES/volto.po +86 -18
  12. package/locales/es/LC_MESSAGES/volto.po +86 -18
  13. package/locales/fr/LC_MESSAGES/volto.po +86 -18
  14. package/locales/it/LC_MESSAGES/volto.po +86 -18
  15. package/locales/volto.pot +87 -19
  16. package/package.json +4 -2
  17. package/publiccode.yml +2 -2
  18. package/src/components/Collapse.jsx +1 -0
  19. package/src/components/ItaliaTheme/Blocks/Accordion/Block/EditBlock.jsx +29 -24
  20. package/src/components/ItaliaTheme/Blocks/Accordion/Block/ViewBlock.jsx +4 -12
  21. package/src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx +67 -6
  22. package/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx +60 -113
  23. package/src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx +1 -0
  24. package/src/components/ItaliaTheme/Blocks/Alert/View.jsx +5 -14
  25. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block.jsx +16 -11
  26. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Body.jsx +2 -1
  27. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +39 -1
  28. package/src/components/ItaliaTheme/Blocks/CTABlock/Block.jsx +35 -95
  29. package/src/components/ItaliaTheme/Blocks/Callout/Edit.jsx +108 -0
  30. package/src/components/ItaliaTheme/Blocks/Callout/Sidebar.jsx +173 -0
  31. package/src/components/ItaliaTheme/Blocks/Callout/View.jsx +45 -0
  32. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/EditBlock.jsx +84 -63
  33. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/ViewBlock.jsx +19 -39
  34. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx +92 -19
  35. package/src/components/ItaliaTheme/Blocks/ContactsBlock/View.jsx +13 -21
  36. package/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx +21 -25
  37. package/src/components/ItaliaTheme/Blocks/CountDown/View.jsx +6 -15
  38. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/EditBlock.jsx +40 -15
  39. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/ViewBlock.jsx +6 -21
  40. package/src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx +93 -20
  41. package/src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx +1 -9
  42. package/src/components/ItaliaTheme/Blocks/IconBlocks/View.jsx +4 -17
  43. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/EditBlock.jsx +46 -15
  44. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/ViewBlock.jsx +2 -18
  45. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +84 -11
  46. package/src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx +2 -11
  47. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block.jsx +33 -67
  48. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Edit.jsx +2 -8
  49. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/BodyWrapper.jsx +2 -1
  50. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit.jsx +98 -84
  51. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/View.jsx +20 -3
  52. package/src/components/ItaliaTheme/Blocks/__tests__/Accordion.test.jsx +11 -28
  53. package/src/components/ItaliaTheme/Blocks/__tests__/Alert.test.jsx +10 -14
  54. package/src/components/ItaliaTheme/Blocks/__tests__/ArgumentsInEvidence.test.jsx +20 -28
  55. package/src/components/ItaliaTheme/Blocks/__tests__/CTABlock.test.jsx +14 -29
  56. package/src/components/ItaliaTheme/Blocks/__tests__/CardWithImage.test.jsx +11 -28
  57. package/src/components/ItaliaTheme/Blocks/__tests__/ContactsBlock.test.jsx +75 -140
  58. package/src/components/ItaliaTheme/Blocks/__tests__/Countdown.test.jsx +20 -28
  59. package/src/components/ItaliaTheme/Blocks/__tests__/IconBlocks.test.jsx +22 -56
  60. package/src/components/ItaliaTheme/Blocks/__tests__/NumbersBlock.test.jsx +14 -43
  61. package/src/components/ItaliaTheme/Blocks/__tests__/SimpleCard.test.jsx +14 -30
  62. package/src/components/ItaliaTheme/Footer/FooterInfos.jsx +22 -8
  63. package/src/components/ItaliaTheme/Footer/FooterNavigation.jsx +3 -3
  64. package/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx +5 -1
  65. package/src/components/ItaliaTheme/Slider/SingleSlideWrapper.jsx +2 -3
  66. package/src/components/ItaliaTheme/View/BandoView/BandoApprofondimenti.jsx +1 -2
  67. package/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx +14 -5
  68. package/src/components/ItaliaTheme/View/Commons/Attachment.jsx +19 -3
  69. package/src/components/ItaliaTheme/View/Commons/Attachments.jsx +0 -1
  70. package/src/components/ItaliaTheme/View/Commons/DownloadFileFormat.jsx +11 -7
  71. package/src/components/ItaliaTheme/View/Commons/Module.jsx +7 -6
  72. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderLinkServizio.jsx +6 -2
  73. package/src/components/ItaliaTheme/View/Commons/RichTextRender.jsx +8 -6
  74. package/src/components/ItaliaTheme/View/Commons/__tests__/RichText.test.jsx +14 -17
  75. package/src/components/ItaliaTheme/View/ServizioView/ServizioAccedi.jsx +5 -6
  76. package/src/components/ItaliaTheme/View/ServizioView/ServizioMetatag.jsx +4 -0
  77. package/src/components/ItaliaTheme/View/__tests__/CartellaModulisticaView.test.jsx +12 -1
  78. package/src/components/ItaliaTheme/View/__tests__/IncaricoView.test.jsx +24 -30
  79. package/src/components/ItaliaTheme/View/__tests__/PageView.test.jsx +24 -2
  80. package/src/components/ItaliaTheme/View/__tests__/PersonaView.test.jsx +96 -92
  81. package/src/components/ItaliaTheme/View/__tests__/ServizioAChiSiRivolge.test.jsx +240 -286
  82. package/src/components/ItaliaTheme/View/__tests__/ServizioAccedi.test.jsx +240 -286
  83. package/src/components/ItaliaTheme/View/__tests__/ServizioCasiParticolari.test.jsx +240 -286
  84. package/src/components/ItaliaTheme/View/__tests__/ServizioComeFare.test.jsx +240 -286
  85. package/src/components/ItaliaTheme/View/__tests__/ServizioCondizioni.test.jsx +240 -286
  86. package/src/components/ItaliaTheme/View/__tests__/ServizioContatti.test.jsx +240 -286
  87. package/src/components/ItaliaTheme/View/__tests__/ServizioCosE.test.jsx +240 -286
  88. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaServe.test.jsx +240 -286
  89. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaSiOttiene.test.jsx +240 -286
  90. package/src/components/ItaliaTheme/View/__tests__/ServizioCostiVincoli.test.jsx +240 -286
  91. package/src/components/ItaliaTheme/View/__tests__/ServizioMetadati.test.jsx +240 -286
  92. package/src/components/ItaliaTheme/View/__tests__/ServizioModulistica.test.jsx +240 -286
  93. package/src/components/ItaliaTheme/View/__tests__/ServizioProcedure.test.jsx +240 -286
  94. package/src/components/ItaliaTheme/View/__tests__/ServizioSitiEsterni.test.jsx +240 -286
  95. package/src/components/ItaliaTheme/View/__tests__/ServizioTempiScadenze.test.jsx +240 -286
  96. package/src/components/ItaliaTheme/View/__tests__/ServizioUlterioriInformazioni.test.jsx +240 -286
  97. package/src/components/ItaliaTheme/View/__tests__/ServizioView.test.jsx +470 -560
  98. package/src/components/ItaliaTheme/View/__tests__/TrasparenzaView.test.jsx +12 -1
  99. package/src/components/ItaliaTheme/manage/Widgets/ColorListWidget.jsx +11 -2
  100. package/src/components/ItaliaTheme/manage/Widgets/HtmlSlateWidget.jsx +154 -0
  101. package/src/components/ItaliaTheme/manage/Widgets/RichTextWidget.jsx +88 -0
  102. package/src/components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget.jsx +158 -0
  103. package/src/components/ItaliaTheme/manage/Widgets/TextEditorWidget.jsx +167 -270
  104. package/src/config/Blocks/ListingOptions/index.js +0 -1
  105. package/src/config/Blocks/ListingOptions/utils.js +0 -7
  106. package/src/config/Blocks/blocks.js +29 -8
  107. package/src/config/Blocks/listingVariations.js +1 -1
  108. package/src/config/Slate/Alignment/AlignMenu.jsx +169 -0
  109. package/src/config/Slate/Alignment/index.js +42 -0
  110. package/src/config/Slate/Blockquote/BlockquoteMenu.jsx +151 -0
  111. package/src/config/Slate/Blockquote/index.js +12 -0
  112. package/src/config/Slate/Headings/HeadingsMenu.jsx +139 -0
  113. package/src/config/Slate/Headings/headingsMenu.scss +44 -0
  114. package/src/config/Slate/Headings/index.js +62 -0
  115. package/src/config/Slate/Link/deserializer.js +25 -0
  116. package/src/config/Slate/Link/index.js +126 -0
  117. package/src/config/Slate/Link/renderer.jsx +99 -0
  118. package/src/config/Slate/LinkButton/index.js +47 -0
  119. package/src/config/Slate/TextLarger/index.js +51 -0
  120. package/src/config/Slate/Underline/index.js +10 -0
  121. package/src/config/Slate/config.js +43 -0
  122. package/src/config/Slate/deserializers.js +66 -0
  123. package/src/config/Slate/dropdownStyle.scss +14 -0
  124. package/src/config/Slate/dropdownUtils.js +422 -0
  125. package/src/config/Slate/extensions/breakList.js +91 -0
  126. package/src/config/Slate/handlers.js +243 -0
  127. package/src/config/Slate/utils.js +73 -0
  128. package/src/config/Widgets/widgets.js +1 -2
  129. package/src/config/italiaConfig.js +7 -54
  130. package/src/customizations/volto/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +360 -0
  131. package/src/customizations/volto/components/manage/Blocks/HeroImageLeft/Edit.jsx +75 -200
  132. package/src/customizations/volto/components/manage/Blocks/Video/Edit.jsx +1 -1
  133. package/src/customizations/volto/components/manage/Form/BlocksToolbar.jsx +1 -1
  134. package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +59 -6
  135. package/src/customizations/volto-form-block/components/Field.jsx +45 -22
  136. package/src/customizations/volto-form-block/components/FormResult.jsx +74 -0
  137. package/src/customizations/volto-form-block/components/FormView.jsx +79 -66
  138. package/src/customizations/volto-form-block/components/Widget/Button.jsx +50 -0
  139. package/src/helpers/EnhanceLink.js +44 -0
  140. package/src/helpers/FormValidation/FormValidationHelpers.js +3 -0
  141. package/src/helpers/blocks.js +86 -0
  142. package/src/helpers/files.js +14 -14
  143. package/src/helpers/index.js +4 -3
  144. package/src/helpers/richTextHelper.js +10 -0
  145. package/src/icons/Group.svg +1 -0
  146. package/src/icons/blocco-icone.svg +0 -3
  147. package/src/icons/blockquote-card-dark.svg +1 -0
  148. package/src/icons/blockquote-card.svg +1 -0
  149. package/src/icons/blockquote-simple.svg +1 -0
  150. package/src/icons/text-larger.svg +1 -0
  151. package/src/theme/ItaliaTheme/Blocks/_accordion.scss +1 -10
  152. package/src/theme/ItaliaTheme/Blocks/_alert.scss +53 -1
  153. package/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss +1 -0
  154. package/src/theme/ItaliaTheme/Blocks/_callout.scss +32 -0
  155. package/src/theme/ItaliaTheme/Blocks/_contacts.scss +15 -32
  156. package/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss +0 -14
  157. package/src/theme/ItaliaTheme/Blocks/_gridBlock.scss +1 -1
  158. package/src/theme/ItaliaTheme/Blocks/_hero.scss +1 -8
  159. package/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss +0 -30
  160. package/src/theme/ItaliaTheme/Blocks/_imageCardTextBlock.scss +3 -2
  161. package/src/theme/ItaliaTheme/Blocks/_numbers.scss +1 -5
  162. package/src/theme/ItaliaTheme/Blocks/_simpleCardTextBlock.scss +8 -2
  163. package/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss +1 -0
  164. package/src/theme/ItaliaTheme/Components/_megamenu.scss +0 -4
  165. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_cta.scss +1 -0
  166. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_searchSections.scss +1 -0
  167. package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_headercenter.scss +1 -0
  168. package/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss +11 -2
  169. package/src/theme/ItaliaTheme/Views/_slider.scss +3 -3
  170. package/src/theme/ItaliaTheme/Widgets/_iconWidget.scss +4 -0
  171. package/src/theme/ItaliaTheme/_main.scss +42 -54
  172. package/src/theme/_cms-ui.scss +59 -161
  173. package/src/theme/extras/_forms.scss +2 -14
  174. package/src/theme/site.scss +1 -0
  175. package/test-setup-config.js +58 -0
  176. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block.jsx +0 -151
  177. package/src/config/RichTextEditor/LinkEntity.jsx +0 -27
  178. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/Link/index.jsx +0 -44
  179. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +0 -349
  180. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/index.js +0 -150
  181. package/src/config/RichTextEditor/Plugins/AnchorPlugin/index.js +0 -88
  182. package/src/config/RichTextEditor/ToolbarButtons/AlignButton.jsx +0 -61
  183. package/src/config/RichTextEditor/ToolbarButtons/ButtonsButton.jsx +0 -14
  184. package/src/config/RichTextEditor/ToolbarButtons/CalloutsButton.jsx +0 -38
  185. package/src/config/RichTextEditor/ToolbarButtons/DraftJsDropdownButton.jsx +0 -106
  186. package/src/config/RichTextEditor/ToolbarButtons/HeadingsButton.jsx +0 -57
  187. package/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx +0 -65
  188. package/src/config/RichTextEditor/ToolbarButtons/UnderlineButton.jsx +0 -14
  189. package/src/config/RichTextEditor/config.js +0 -253
  190. package/src/config/volto-gdpr-privacy-defaultPanelConfig.js +0 -292
  191. package/src/customizations/volto/components/manage/Blocks/ToC/View.jsx +0 -134
  192. package/src/customizations/volto/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +0 -99
  193. package/src/customizations/volto/config/RichTextEditor/Plugins.jsx +0 -63
  194. package/src/helpers/redraftHelper.js +0 -9
package/CHANGELOG.md CHANGED
@@ -1,18 +1,200 @@
1
1
 
2
2
 
3
- ## [11.10.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.10.0...v11.10.1) (2024-04-22)
3
+ ## [12.0.0-alpha.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.10.0...v12.0.0-alpha.1) (2024-04-26)
4
4
 
5
5
 
6
- ### Bug Fixes
6
+ ### Features
7
7
 
8
+ * add icon for external link in edit mode ([11bd3d9](https://github.com/redturtle/design-comuni-plone-theme/commit/11bd3d9389bbdb0c96b9b8ca7c8fb6fe067085db))
9
+ * added Align, Headings, Underline and Blockquote styles in slate editor ([4fc6d8a](https://github.com/redturtle/design-comuni-plone-theme/commit/4fc6d8acab86e08554876ae3797a7f122f140fab))
10
+ * added block extra tags placeholders ([f3a7cef](https://github.com/redturtle/design-comuni-plone-theme/commit/f3a7cefd761fffbaaa24266ab619148d46515125))
11
+ * added Callout block ([3f04f5c](https://github.com/redturtle/design-comuni-plone-theme/commit/3f04f5c31c6e298c40d70ba5b645e765ad71856a))
12
+ * added control panel to manage cookie banner ([7ecca25](https://github.com/redturtle/design-comuni-plone-theme/commit/7ecca250bf7ecfed42099450ba1d0428cc4e9265))
13
+ * added csv icon for files ([679fba0](https://github.com/redturtle/design-comuni-plone-theme/commit/679fba0ab2c3a85f027b0fbb57a1c6948790620a))
14
+ * added htmlTagsToSlate deserializers and fixed volto-editablefooter error ([3c1477f](https://github.com/redturtle/design-comuni-plone-theme/commit/3c1477fb3afcf6b9c04aa16a762afa4a6f12501d))
15
+ * added ppt icon file format ([b3f524d](https://github.com/redturtle/design-comuni-plone-theme/commit/b3f524d5a1446d04341b7de6aed8487a7d8918b7))
16
+ * added validation for slate-blocks in FormValidation ([dc54b1c](https://github.com/redturtle/design-comuni-plone-theme/commit/dc54b1cc46a232474bb77f718e11bc7516b58a11))
17
+ * customizable Alert block colors and text color ([77bf2d1](https://github.com/redturtle/design-comuni-plone-theme/commit/77bf2d158eda24b8a6578a3009cc6da5a873f0b7))
18
+ * enhance all links with mime-type and size ([406e48d](https://github.com/redturtle/design-comuni-plone-theme/commit/406e48de965d48fcb8a7c359b13a18d645f6c964))
19
+ * enhance link ([0684d83](https://github.com/redturtle/design-comuni-plone-theme/commit/0684d837badaa5874279ddca5dedd78fca4d6039))
20
+ * handle enhancelink for files in slate text ([f935496](https://github.com/redturtle/design-comuni-plone-theme/commit/f93549655e92c91d796a165f883c652e5842dc54))
21
+ * make heading alignable ([d13d75d](https://github.com/redturtle/design-comuni-plone-theme/commit/d13d75de4da80ba12b80a59a89f483e44bad312f))
22
+ * open external link in new tab ([cf07f66](https://github.com/redturtle/design-comuni-plone-theme/commit/cf07f66c99ddec2b08eba03e8f59675257018069))
23
+ * otp code in volto-form-block for bcc email fields ([71ae262](https://github.com/redturtle/design-comuni-plone-theme/commit/71ae262e291e63f07285ce3c9582b6301cddf790))
24
+ * remove Draftjs ([2c0c20b](https://github.com/redturtle/design-comuni-plone-theme/commit/2c0c20bb073a7fc2bc52caed4e6645363e15b35c))
25
+ * set data field if fieldName is passed to TextEditorWidget ([f1774ca](https://github.com/redturtle/design-comuni-plone-theme/commit/f1774ca94cb6bd9bce37b94197f5b260493f3c98))
26
+ * Slate in Hero Block2 ([34f929c](https://github.com/redturtle/design-comuni-plone-theme/commit/34f929c7fa12bde790309d9dce3a4b51de1cfa87))
27
+ * use config.settings.openExternalLinkInNewTab ([dc0ab25](https://github.com/redturtle/design-comuni-plone-theme/commit/dc0ab2500c569e3c59ab6c49729e0a63198bc93a))
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * edit contact block ([289c5b9](https://github.com/redturtle/design-comuni-plone-theme/commit/289c5b9c6f49d97f34badda93e8b3d1f5a5aef7d))
33
+ * Accordion Block to use Slate ([a71b16b](https://github.com/redturtle/design-comuni-plone-theme/commit/a71b16baef7cf6e5d63e61b1b0752d11c4fb9116))
34
+ * Accordion slate edit ([28f0a4f](https://github.com/redturtle/design-comuni-plone-theme/commit/28f0a4fa42a529524774c8f1e02ee8c7b658c608))
35
+ * accordion title align ([4dc5923](https://github.com/redturtle/design-comuni-plone-theme/commit/4dc5923ecead865c6f8f67595134a0a82a6fc1c9))
36
+ * add inEvidence field ([6b78e01](https://github.com/redturtle/design-comuni-plone-theme/commit/6b78e01215c035bbdc9e85aaf0cc7a195d018874))
37
+ * add text after link ([bce053a](https://github.com/redturtle/design-comuni-plone-theme/commit/bce053a689b5a2c22e902ec2a16afd6901f38baf))
38
+ * added contentEditable=false to link renderer to avoid editing problems ([85f95b8](https://github.com/redturtle/design-comuni-plone-theme/commit/85f95b8024736443ee3820611b2bd6d1c8e0ff29))
39
+ * added margin-left to slate-inline-file-infos icon ([14983af](https://github.com/redturtle/design-comuni-plone-theme/commit/14983af3df740af16c59ee79fd211e452cccaf49))
40
+ * Alert block now uses Slate ([38636a6](https://github.com/redturtle/design-comuni-plone-theme/commit/38636a6f02af3ac79a4e44fcef9ebc353439c777))
41
+ * alert styles ([d9123f6](https://github.com/redturtle/design-comuni-plone-theme/commit/d9123f6d59907db66b4c10a1f01ebbb5805c3cdb))
42
+ * ArgumentsInEvidence block now uses Slate ([19f01c3](https://github.com/redturtle/design-comuni-plone-theme/commit/19f01c31017250747fb7f97d840badb74cc0c112))
8
43
  * better tolerance for files in highlighted content block ([44dc055](https://github.com/redturtle/design-comuni-plone-theme/commit/44dc055240b07575c8608c914a6d118dbccc5df5))
9
- * slider focus and external links ([#664](https://github.com/redturtle/design-comuni-plone-theme/issues/664)) ([e00e1a9](https://github.com/redturtle/design-comuni-plone-theme/commit/e00e1a970f526d357e617520ad51f915fb8d4e6e))
44
+ * bg-alert-warning text color ([0587f45](https://github.com/redturtle/design-comuni-plone-theme/commit/0587f45640e9508b6377f677a7142086403a0a4d))
45
+ * block Contacts view ([872f91e](https://github.com/redturtle/design-comuni-plone-theme/commit/872f91ec2cfc0164dd8e71817f63154d6f60eebe))
46
+ * blockextratags in completeBlocksLinksTemplate ([5b25a3a](https://github.com/redturtle/design-comuni-plone-theme/commit/5b25a3a51934b2e018e07c5e34c544da05695a00))
47
+ * blockquote align after image block aligned left or right ([90b26e3](https://github.com/redturtle/design-comuni-plone-theme/commit/90b26e327322df90af2364fcfd0168f2f8a60e25))
48
+ * blockquote links color ([ceb4051](https://github.com/redturtle/design-comuni-plone-theme/commit/ceb40518dc26e208fa8037562b1698e8e8b500f0))
49
+ * blockquote style ([3b01e9f](https://github.com/redturtle/design-comuni-plone-theme/commit/3b01e9f20d497989d3521c96485a3dee2b6c7d7a))
50
+ * bodytagdeserializer no node ([2702d4a](https://github.com/redturtle/design-comuni-plone-theme/commit/2702d4afab7afdaeb3e455470a97b97afc9c903f))
51
+ * break and softbreak and p ([2dddf5e](https://github.com/redturtle/design-comuni-plone-theme/commit/2dddf5e02cc3b2e16b944131449fad50b99a0ed3))
52
+ * broken tag ([308cfc5](https://github.com/redturtle/design-comuni-plone-theme/commit/308cfc5890e869d571f95776c4f4e39a6ef37094))
53
+ * button keyboard focus ([f50f6de](https://github.com/redturtle/design-comuni-plone-theme/commit/f50f6def0c6ce4f1409751e4988d40b2c698e491))
54
+ * callout edit title styles ([f64139a](https://github.com/redturtle/design-comuni-plone-theme/commit/f64139af6a2d7026977a0be8d6e8a57d0d7cc175))
55
+ * callout line after title ([de55654](https://github.com/redturtle/design-comuni-plone-theme/commit/de55654080ffd68a7436cf9e7ea70ca7d03f0a63))
56
+ * click on toolbar dropdown items ([6b6d118](https://github.com/redturtle/design-comuni-plone-theme/commit/6b6d118e0d3188937512b1e56cc300311470ca1f))
57
+ * color danger alert ([8842304](https://github.com/redturtle/design-comuni-plone-theme/commit/8842304928eb143c1e9e8e04cd3b8ec0b2e353e1))
58
+ * color text of alert ([8b007ff](https://github.com/redturtle/design-comuni-plone-theme/commit/8b007ffc8ad3701972263a4b45852d85d7519dda))
59
+ * condition for open in new tab ([70da0e8](https://github.com/redturtle/design-comuni-plone-theme/commit/70da0e8090369078dcb37c1fa356a8eed365227d))
60
+ * config and LinkServizio ([14b28ce](https://github.com/redturtle/design-comuni-plone-theme/commit/14b28ce022ca968caafbc837ab2c587ece11c4a4))
61
+ * ContactsBlock header now uses slate ([d1dbffb](https://github.com/redturtle/design-comuni-plone-theme/commit/d1dbffbef4822882c8b6eca377c0d9f4be8a195b))
62
+ * create new blockss ([18b721f](https://github.com/redturtle/design-comuni-plone-theme/commit/18b721fa5a96f1e65f44c2ca0a68b021dad7be3f))
63
+ * csv icon ([4663192](https://github.com/redturtle/design-comuni-plone-theme/commit/466319203a534e83314edec4517f0d98f24a829f))
64
+ * defaultValue in SimpleTextEditorWidget and value based on fieldName prop ([5111da9](https://github.com/redturtle/design-comuni-plone-theme/commit/5111da97bec1fb1f23e27720d9a881265627c532))
65
+ * display item in evidence in tertiary-menu ([79e8e80](https://github.com/redturtle/design-comuni-plone-theme/commit/79e8e8065cf91cfba9364a9161435920e722471a))
66
+ * editt description of contactsblock, iconblock, numbersblock ([5fa2c86](https://github.com/redturtle/design-comuni-plone-theme/commit/5fa2c860a2567891fd73549a158b9fdbd6f9ba85))
67
+ * enhance link ([29c30da](https://github.com/redturtle/design-comuni-plone-theme/commit/29c30dad240950b78e0849bd83a4ac5987f9dddb))
68
+ * enhanced link file size and format ([2a840d8](https://github.com/redturtle/design-comuni-plone-theme/commit/2a840d834e87e2efdf86a30640dbd90b35e95fa2))
69
+ * enhanced link infos moved inside element-data ([62e8e93](https://github.com/redturtle/design-comuni-plone-theme/commit/62e8e93789e4f115b46b592e7e3db6a5bbee37e7))
70
+ * error generating contact link ([438a0fd](https://github.com/redturtle/design-comuni-plone-theme/commit/438a0fd4112ca9943e6ca687e4670928c3fc6df3))
71
+ * fiapply block style only on selected element ([e0fdfde](https://github.com/redturtle/design-comuni-plone-theme/commit/e0fdfdec7c6b235796c03a4d8b96f07857d7b09a))
72
+ * fix blockquote align after image aligned left or right ([574816e](https://github.com/redturtle/design-comuni-plone-theme/commit/574816e3a8405e4f9c04399c952e5d78fef3f735))
73
+ * fix break when getBlockProps is not defined (detached Slate editor) ([712b750](https://github.com/redturtle/design-comuni-plone-theme/commit/712b750d188381158eea25f687ea79dce9fc97a1))
74
+ * fix enhance link in cartella modulistica ([de7a528](https://github.com/redturtle/design-comuni-plone-theme/commit/de7a528f8534ab4d502c12cb1cde9cf865c64dee))
75
+ * fix Enter on Subblocks blocks ([4427ee9](https://github.com/redturtle/design-comuni-plone-theme/commit/4427ee964026b35a549e34f314827743417cf6b3))
76
+ * fix font-style when adding new page ([d4e4a71](https://github.com/redturtle/design-comuni-plone-theme/commit/d4e4a71dc380166c71edfdc28384e8f1e75e6eb2))
77
+ * fix simpleTextEditorWidget onChange with fieldName ([364cc5a](https://github.com/redturtle/design-comuni-plone-theme/commit/364cc5a267eace34daf13c99d5d328cf5a2d9e10))
78
+ * fix slate block ([d2637e3](https://github.com/redturtle/design-comuni-plone-theme/commit/d2637e3691039fc6cec5a59e2a8672071ce27bd0))
79
+ * fix tests ([19fe9c4](https://github.com/redturtle/design-comuni-plone-theme/commit/19fe9c45cad75e7fdcb4f31980137e84e0d9bdce))
80
+ * fix TExtEditorWidgett handler ([d3d88b3](https://github.com/redturtle/design-comuni-plone-theme/commit/d3d88b32780e4a094a4bc41e4cd0f32eef84ff31))
81
+ * fix warning ([a5aa27a](https://github.com/redturtle/design-comuni-plone-theme/commit/a5aa27ab3b2c69ea0a63ac73b9832e8bae4cf3c0))
82
+ * fixed broken videos in Video Gallery block ([67822a1](https://github.com/redturtle/design-comuni-plone-theme/commit/67822a1e0cad870cb0ac1260c2c8c5b94e555770))
83
+ * fixed calculation of prefix of fontawesome icon if prefix is in icon string ([a290ba7](https://github.com/redturtle/design-comuni-plone-theme/commit/a290ba7a4d40837e82378a152e3879215ddf7b2d))
84
+ * fixed enhance link for no files ([f961828](https://github.com/redturtle/design-comuni-plone-theme/commit/f9618289295352c1d1109b3b98ea62a6e844da81))
85
+ * focus on link and card title links ([5545e26](https://github.com/redturtle/design-comuni-plone-theme/commit/5545e26e74fc007fc5e4099f55599ae659821f53))
86
+ * font style and size in edit mode ([83b7e35](https://github.com/redturtle/design-comuni-plone-theme/commit/83b7e3550ed025adf59e9743dbfde84756c35ee3))
87
+ * footer logo responsive height ([1e9c3f5](https://github.com/redturtle/design-comuni-plone-theme/commit/1e9c3f5f3f39ff184939bb2db60fc63d14b96cf5))
88
+ * fSimpleTextEEditorWidget default value ([966fcf4](https://github.com/redturtle/design-comuni-plone-theme/commit/966fcf4dfe9059dff8d20ebf47110f1d9fd97389))
89
+ * GridGalleryTemplate test ([9dd29b0](https://github.com/redturtle/design-comuni-plone-theme/commit/9dd29b0a8435116b89e2cd38bf5eb0b60551063f))
90
+ * handle break in texteditorwidget ([1a59a08](https://github.com/redturtle/design-comuni-plone-theme/commit/1a59a08f3b3171ab48fc5b861821fe1a6d21788e))
91
+ * handle breaklist and extensions in TextEditorWidget ([6b40315](https://github.com/redturtle/design-comuni-plone-theme/commit/6b4031554ce6c53e8a6ca985af60d015eb8b7d4d))
92
+ * handle enter new block ([8e3f61e](https://github.com/redturtle/design-comuni-plone-theme/commit/8e3f61e0a24d1260d40007b11f08fd310d8f17db))
93
+ * handle list in texteditor widget ([db0c167](https://github.com/redturtle/design-comuni-plone-theme/commit/db0c1676d3ee892cbd61a252e91d4f0279dae838))
94
+ * hero styles ([9d46db4](https://github.com/redturtle/design-comuni-plone-theme/commit/9d46db431b5cf26e2f8e1d6043c64122d97c89f6))
95
+ * hide enhance-link infos in slider ([2fb10e8](https://github.com/redturtle/design-comuni-plone-theme/commit/2fb10e8f80201a7e84661c9cb405ba76da089b66))
96
+ * icons in Callout block ([386eb22](https://github.com/redturtle/design-comuni-plone-theme/commit/386eb229cd01fe96ecbbfa0ce11f99c47cda7eab))
97
+ * icons width in slate-inline-file-infos ([8a24f86](https://github.com/redturtle/design-comuni-plone-theme/commit/8a24f866ec00a75334475d044a7fae844bafb9b4))
98
+ * image size in attachments ([696fce3](https://github.com/redturtle/design-comuni-plone-theme/commit/696fce3c9e7a3d6b274ad8f5ba5f586f4e61d5cf))
99
+ * imaged full width view in edit mode ([ce462e1](https://github.com/redturtle/design-comuni-plone-theme/commit/ce462e19c29034e440900f6de03711a065740dd7))
100
+ * import cloneBlock - fix merge ([0ab5523](https://github.com/redturtle/design-comuni-plone-theme/commit/0ab552302106e53daa01e1304114a75f2f4ce10d))
101
+ * import config ([0b91be2](https://github.com/redturtle/design-comuni-plone-theme/commit/0b91be2867ab48b68601bcc546fad6db852598ab))
102
+ * imports ([840f73c](https://github.com/redturtle/design-comuni-plone-theme/commit/840f73cf6a613f62a0e6b5354ea24afe95b69d43))
103
+ * imports ([286f4bd](https://github.com/redturtle/design-comuni-plone-theme/commit/286f4bd621cfc4156301982ba3e0900b2f177457))
104
+ * improve handle text in footer column when there is not a slate text ([#662](https://github.com/redturtle/design-comuni-plone-theme/issues/662)) ([7a8a6fd](https://github.com/redturtle/design-comuni-plone-theme/commit/7a8a6fdb8b095cfd0c1615eaa4f48cb67a6a18bc))
105
+ * link as button in cms ui ([6022ab0](https://github.com/redturtle/design-comuni-plone-theme/commit/6022ab074e5640ca61f01e170cae477a5b5d624a))
106
+ * link in cardWithImageAndInEvidence ([ce305f2](https://github.com/redturtle/design-comuni-plone-theme/commit/ce305f26668566a97cc5001d7075df7a68849c69))
107
+ * link widget in slate and added Callout to blocks widget ([6974462](https://github.com/redturtle/design-comuni-plone-theme/commit/697446207f16633730f11787e994a2ba2485ff4f))
108
+ * listing options order ([5f47374](https://github.com/redturtle/design-comuni-plone-theme/commit/5f47374088a4e3f6120a2be435727f42224b2088))
109
+ * merge ([eb4c0e2](https://github.com/redturtle/design-comuni-plone-theme/commit/eb4c0e2cf0426dc60520be0ef5a8aa177ecd573c))
110
+ * moved HeaderSlim compoonent inside his folder to enable customizations ([15d4619](https://github.com/redturtle/design-comuni-plone-theme/commit/15d4619aa112b9fa5f659e444476231d95fdb39f))
111
+ * null value in static text field in form block ([fbf928e](https://github.com/redturtle/design-comuni-plone-theme/commit/fbf928ef8c2c06ee4bab53135737b0c034166dc3))
112
+ * paste list without ul/ol wrapper ([31f9bd6](https://github.com/redturtle/design-comuni-plone-theme/commit/31f9bd6235e527c0eb1d73bcee426e7202f8518a))
113
+ * placeholder for SimpleTextEditorWidget ([00d0bdc](https://github.com/redturtle/design-comuni-plone-theme/commit/00d0bdc1ba061701e0a7d1322565f8fa74683285))
114
+ * pre alpha release ([849b27e](https://github.com/redturtle/design-comuni-plone-theme/commit/849b27eb8ca9dad88b3dbf04fc319db28770adfa))
115
+ * prevent xss in form block reading sent data from BE response ([1dad279](https://github.com/redturtle/design-comuni-plone-theme/commit/1dad279a7f5386c9be237696d2c91a243c03b983))
116
+ * print minutes instead month in last modified info ([b2622c8](https://github.com/redturtle/design-comuni-plone-theme/commit/b2622c8b83b028d2f7e33bdbf49600095c21915d))
117
+ * query for listing path filters ([fde1843](https://github.com/redturtle/design-comuni-plone-theme/commit/fde1843c2408d9083f54fdd693e67b3bc459a593))
118
+ * query listing path filter color status and a11y ([de2b64d](https://github.com/redturtle/design-comuni-plone-theme/commit/de2b64ddd37fdef5152a02de7da99c8565a5f14c))
119
+ * RELEASE.md ([4bf568c](https://github.com/redturtle/design-comuni-plone-theme/commit/4bf568cc8a8781078fa056deb69dfaaa34ca279e))
120
+ * remove deafault gdpr panel config ([e677809](https://github.com/redturtle/design-comuni-plone-theme/commit/e677809330e34538fcb9195b11910a45049381d2))
121
+ * remove debug ([3c0d8fb](https://github.com/redturtle/design-comuni-plone-theme/commit/3c0d8fbde0a287609fb45ff81b49a3dcc81329cc))
122
+ * remove redraft in IconsBlock ViewBlock ([d1b9f23](https://github.com/redturtle/design-comuni-plone-theme/commit/d1b9f23a21a80f70a7c826610eca1a5eaeda503c))
123
+ * removed blockHasOwnFocusManagement from alert block ([b0df547](https://github.com/redturtle/design-comuni-plone-theme/commit/b0df547463792aede4ac960558ecb4508b81ee14))
124
+ * removed some refused redraft ([a2b0fe3](https://github.com/redturtle/design-comuni-plone-theme/commit/a2b0fe3abaa12d1876609cd5d1eb6683685a9bde))
125
+ * removed unused var ([9ff48ac](https://github.com/redturtle/design-comuni-plone-theme/commit/9ff48acba4fc98ff7f45bac35f434a351bbf08b6))
126
+ * replaceMessage ([29b6dd7](https://github.com/redturtle/design-comuni-plone-theme/commit/29b6dd78bb6c56644fbd596d436959dc75347436))
127
+ * richtext render ([c2cb62e](https://github.com/redturtle/design-comuni-plone-theme/commit/c2cb62e310ccd9d6e6c0a14190e93ef71ecd8d72))
128
+ * richTextHelper.js condition ([fc6e1ea](https://github.com/redturtle/design-comuni-plone-theme/commit/fc6e1eae838c1e4e94c47741e66ef4028a801382))
129
+ * safer handle text in footer column ([#661](https://github.com/redturtle/design-comuni-plone-theme/issues/661)) ([b94218b](https://github.com/redturtle/design-comuni-plone-theme/commit/b94218bb7d358663f2e178e7f04fc6eaacd89839))
130
+ * selection in TextEditorWidget ([3cf2838](https://github.com/redturtle/design-comuni-plone-theme/commit/3cf283846bfc30cb2e4cd2d3d5cb9cef980c4e7e))
131
+ * SimpleTextEditorWidget ([6549aff](https://github.com/redturtle/design-comuni-plone-theme/commit/6549affc92a6d10c9daa47283f6a32c4f528bee6))
132
+ * SimpleTextEditorWidget autogrow and fix Callout view ([3b9ef34](https://github.com/redturtle/design-comuni-plone-theme/commit/3b9ef343100355834de1dd1500211e5d922f969f))
133
+ * size on creating link ([1907018](https://github.com/redturtle/design-comuni-plone-theme/commit/1907018beb0760a19574b056cf79ad304488dde5))
134
+ * slate bar for small screens ([#424](https://github.com/redturtle/design-comuni-plone-theme/issues/424)) ([ff539ed](https://github.com/redturtle/design-comuni-plone-theme/commit/ff539ed4e61c1ee32e34e24a53ab30168c647c9b))
135
+ * slate editor in static_text in block form ([ac3fdd8](https://github.com/redturtle/design-comuni-plone-theme/commit/ac3fdd80b77e0c1e14e099d3c910461bfa72e8a7))
136
+ * slate handleBreak ([e6d2f86](https://github.com/redturtle/design-comuni-plone-theme/commit/e6d2f86299b8d03da83519dfd88223ec72e83f06))
137
+ * slate handler ([3795fd6](https://github.com/redturtle/design-comuni-plone-theme/commit/3795fd6f46baac6fb2d42157950a2a26e9f28907))
138
+ * Slate in block Contacts subblocks ([70a1f48](https://github.com/redturtle/design-comuni-plone-theme/commit/70a1f488cb611460edbeb3e2369fccc59d9e48df))
139
+ * Slate in blocks ([595183b](https://github.com/redturtle/design-comuni-plone-theme/commit/595183b2958053e398aa872867b718eb1eb9c00e))
140
+ * Slate in blocks ([70862eb](https://github.com/redturtle/design-comuni-plone-theme/commit/70862ebd6057999609369f4e93cc390003af7b86))
141
+ * Slate in blocks ([6180f79](https://github.com/redturtle/design-comuni-plone-theme/commit/6180f79a798afa6fff3789673c03ebd5df9bca26))
142
+ * Slate in blocks ([5a7f8ee](https://github.com/redturtle/design-comuni-plone-theme/commit/5a7f8ee5911980c744909295f5364a4aac153d40))
143
+ * slate test ([5a2909f](https://github.com/redturtle/design-comuni-plone-theme/commit/5a2909fa7fd330e34adb520a5cd5b67ad6b4cf52))
144
+ * string formatting for modified date ([#608](https://github.com/redturtle/design-comuni-plone-theme/issues/608)) ([#610](https://github.com/redturtle/design-comuni-plone-theme/issues/610)) ([1e395d8](https://github.com/redturtle/design-comuni-plone-theme/commit/1e395d8b155618762954d760c49c4a0ec90fc1de))
145
+ * styles ([e2140a1](https://github.com/redturtle/design-comuni-plone-theme/commit/e2140a1675a44c767560843a87416eb21aecf267))
146
+ * test slate blocks content ([22a1e39](https://github.com/redturtle/design-comuni-plone-theme/commit/22a1e39994a47b94c42e6e61df6d62f6b6ebbe7f))
147
+ * unable to select h after style applyed ([4388d51](https://github.com/redturtle/design-comuni-plone-theme/commit/4388d512b6fd3ec8a63b8db45d44803bdee89a80))
148
+ * UniversalLink ([94d3c56](https://github.com/redturtle/design-comuni-plone-theme/commit/94d3c568999d045def59de487f460e2ab28d3345))
149
+ * update enhanced infos data structure ([953781d](https://github.com/redturtle/design-comuni-plone-theme/commit/953781dcf47c10282218e941a18ef8b3ed770964))
150
+ * updated comment ([e9addee](https://github.com/redturtle/design-comuni-plone-theme/commit/e9addee20e57bf50a38686326347f594a08a2186))
151
+ * use display-block only more specific ([a0cf7bf](https://github.com/redturtle/design-comuni-plone-theme/commit/a0cf7bf83c5c2fa5f7d2470595e14a0866c86eda))
152
+ * use Image component to render background image of icons block ([538487d](https://github.com/redturtle/design-comuni-plone-theme/commit/538487dd323cf1369994152d4b04fde163bebf52))
153
+ * Use new metadata to check if show or not the size in edit ([#479](https://github.com/redturtle/design-comuni-plone-theme/issues/479)) ([0b1668e](https://github.com/redturtle/design-comuni-plone-theme/commit/0b1668ee2d2c7526fc72fdd806b6b6de609deb13))
10
154
  * used underlined text decoration for footer link marker ([#660](https://github.com/redturtle/design-comuni-plone-theme/issues/660)) ([ad8c549](https://github.com/redturtle/design-comuni-plone-theme/commit/ad8c5498922a57a01b3b79f0cf0acd07324472a7))
155
+ * view background image in icons block ([7fbbf23](https://github.com/redturtle/design-comuni-plone-theme/commit/7fbbf23a197903d6df89ed0639750795a1b1fd6b))
156
+ * view Listing blocks inside Grid block ([f4675f5](https://github.com/redturtle/design-comuni-plone-theme/commit/f4675f5259cb7aa8576542696890f244f79b67e0))
157
+ * view luoghi se c'è solo il nome della sede ([28e1ed8](https://github.com/redturtle/design-comuni-plone-theme/commit/28e1ed8ae31f307b43b8bf297ded889e71e0a103))
158
+ * view text and external links in footer ([36eb473](https://github.com/redturtle/design-comuni-plone-theme/commit/36eb473034810696220d0e100de54eebb1670f77))
159
+ * widget otp ([f2ea371](https://github.com/redturtle/design-comuni-plone-theme/commit/f2ea371faccadf319b465a2fadf0754f7439d596))
11
160
 
12
161
 
13
162
  ### Documentation
14
163
 
15
- * updated publiccode ([74e29aa](https://github.com/redturtle/design-comuni-plone-theme/commit/74e29aa9ed25ae1dde57f5ab022bb88160647172))
164
+ * cleanup ([137b136](https://github.com/redturtle/design-comuni-plone-theme/commit/137b136ca3cbc2f18b72a66c83ee25c8b9b12029))
165
+
166
+
167
+ ### Maintenance
168
+
169
+ * added customization for FormResult component and updated volto-form-block ([2d01d15](https://github.com/redturtle/design-comuni-plone-theme/commit/2d01d153cd2036d7e6d95e7496b8ad2f05cfa86c))
170
+ * back to alpha version ([6a40776](https://github.com/redturtle/design-comuni-plone-theme/commit/6a40776c3b782ca1534c71195c0c5c794499ece1))
171
+ * blockquote slate ([f084598](https://github.com/redturtle/design-comuni-plone-theme/commit/f084598dfb80b75238901667f7a20bd7ced94fce))
172
+ * changed version for volto-gdpr-privacy, now uses control_panel branch ([5de7f09](https://github.com/redturtle/design-comuni-plone-theme/commit/5de7f09af09624289cb57c6e348108f90af7c308))
173
+ * la versione con slate è la nuova major 12 ([323c822](https://github.com/redturtle/design-comuni-plone-theme/commit/323c8229bc68c55d8fa1fc7a38df1a2b7ed6d9af))
174
+ * merged with 11-alpha ([#427](https://github.com/redturtle/design-comuni-plone-theme/issues/427)) ([fdc7ae9](https://github.com/redturtle/design-comuni-plone-theme/commit/fdc7ae9f01fae356d767cec58955b98219bca44b))
175
+ * remove debug ([ca5f889](https://github.com/redturtle/design-comuni-plone-theme/commit/ca5f889a59d2880050509303d50a574331654f4c))
176
+ * removed console.log ([a10836e](https://github.com/redturtle/design-comuni-plone-theme/commit/a10836e3c7572c0562f305017b37e6fac515fb5d))
177
+ * removed Toc customizations because it works well with Slate ([b8c2a5e](https://github.com/redturtle/design-comuni-plone-theme/commit/b8c2a5e296df42a876d39ca6ea6337b326783f3d))
178
+ * slate config ([5018988](https://github.com/redturtle/design-comuni-plone-theme/commit/5018988eea0e7440a48fdc8321a4e47fce642eae))
179
+ * slate link style button and blockquotes icon ([a9dc7b2](https://github.com/redturtle/design-comuni-plone-theme/commit/a9dc7b21c4601d4194031dc3164664d79cb080cb))
180
+ * Update slate.yml ([6010e99](https://github.com/redturtle/design-comuni-plone-theme/commit/6010e9941fef036709caf4d9b812d7e06f4f2ff7))
181
+ * update_volto_form_block_subdomain_mail_validation ([0009c35](https://github.com/redturtle/design-comuni-plone-theme/commit/0009c35f40e3b97f7084d9da0c64659e6b03095f))
182
+ * updated dcpt ([696ea55](https://github.com/redturtle/design-comuni-plone-theme/commit/696ea556dfe670624e73e816f2df331b8851cd11))
183
+ * updated RELEASE.md ([ebf4273](https://github.com/redturtle/design-comuni-plone-theme/commit/ebf42731d8378db8fd5836a3ee77b4a615714d78))
184
+ * updated voltlto-gdpr-privacy ([17bb8bb](https://github.com/redturtle/design-comuni-plone-theme/commit/17bb8bb5b04a2ea2eb4ecf85472134a42a267e5b))
185
+ * updated volto-editable-footer to fix view sidebar in edit config ([3e7804f](https://github.com/redturtle/design-comuni-plone-theme/commit/3e7804f817089dec37c87513eb0b6d785a75bb97))
186
+ * updated volto-form-block ([13c8ee3](https://github.com/redturtle/design-comuni-plone-theme/commit/13c8ee3e4c06ef11929a56e58a8d56e4e75f719c))
187
+ * updated volto-form-block ([dcaf23a](https://github.com/redturtle/design-comuni-plone-theme/commit/dcaf23ab758494473495bc3efd990c3169c355cc))
188
+ * updated volto-form-block ([abfa291](https://github.com/redturtle/design-comuni-plone-theme/commit/abfa2912c7a93a1061a9b02327308e12f55a558f))
189
+ * updated volto-form-block ([265c1da](https://github.com/redturtle/design-comuni-plone-theme/commit/265c1dad2103595413f94e9baebc4af5de84631f))
190
+ * updated volto-form-block ([7e2ae8f](https://github.com/redturtle/design-comuni-plone-theme/commit/7e2ae8f49889ea94078e235391ef5f890fd3f46e))
191
+ * updated volto-form-block ([0a95f55](https://github.com/redturtle/design-comuni-plone-theme/commit/0a95f55effbd883f92d4d3657070d9e5a0dd2d32))
192
+ * updated volto-form-block ([bc02bb8](https://github.com/redturtle/design-comuni-plone-theme/commit/bc02bb8ead2cdc5162130943e14f30c75c0c03f5))
193
+ * updated volto-gdpr-privacy ([7b012a6](https://github.com/redturtle/design-comuni-plone-theme/commit/7b012a61fd81b827e69ef8c39d5eb89c40ea2699))
194
+ * updated volto-gdpr-privacy ([805af5e](https://github.com/redturtle/design-comuni-plone-theme/commit/805af5ef7652931e4f3fa81c28a4e6fd0163ec3d))
195
+ * uupdated volto-blocks-widget ([350fba9](https://github.com/redturtle/design-comuni-plone-theme/commit/350fba9c905a8af880e36470285b1a13f792edc6))
196
+
197
+ ## [11.0.0-alpha.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.0.0-alpha.1...v11.0.0-alpha.2) (2023-11-29)
16
198
 
17
199
  ## [11.10.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.9.1...v11.10.0) (2024-04-17)
18
200
 
@@ -670,1945 +852,1737 @@
670
852
 
671
853
  ## [10.6.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.6.0...v10.6.1) (2023-12-13)
672
854
 
673
-
674
855
  ### Bug Fixes
675
856
 
676
- * patch data grid widget for allow_reorder ([41dd7ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/41dd7ea62d0af8557a61f558996fe076c9638d40))
677
-
857
+ - patch data grid widget for allow_reorder ([41dd7ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/41dd7ea62d0af8557a61f558996fe076c9638d40))
678
858
 
679
859
  ### Documentation
680
860
 
681
- * updated publiccode and release log ([055a8c8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/055a8c84e1d55974d59ca17ac7da6a3dbb6e101b))
861
+ - updated publiccode and release log ([055a8c8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/055a8c84e1d55974d59ca17ac7da6a3dbb6e101b))
682
862
 
683
863
  ## [10.6.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.5.0...v10.6.0) (2023-12-12)
684
864
 
685
-
686
865
  ### Features
687
866
 
688
- * added breadcrumbs for static routes ([#392](https://github.com/RedTurtle/design-comuni-plone-theme/issues/392)) ([55f9512](https://github.com/RedTurtle/design-comuni-plone-theme/commit/55f95123bcc69b6c15a3faf0ffa530937fe746f7))
689
- * new data grid widget version with allow_reorder param ([#435](https://github.com/RedTurtle/design-comuni-plone-theme/issues/435)) ([560576c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/560576cdb2b1cb75a3c39e58192c3f78ad5969cd))
690
-
867
+ - added breadcrumbs for static routes ([#392](https://github.com/RedTurtle/design-comuni-plone-theme/issues/392)) ([55f9512](https://github.com/RedTurtle/design-comuni-plone-theme/commit/55f95123bcc69b6c15a3faf0ffa530937fe746f7))
868
+ - new data grid widget version with allow_reorder param ([#435](https://github.com/RedTurtle/design-comuni-plone-theme/issues/435)) ([560576c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/560576cdb2b1cb75a3c39e58192c3f78ad5969cd))
691
869
 
692
870
  ### Bug Fixes
693
871
 
694
- * removed automatic pager-link and updated available manual data-elements ([2553322](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2553322f8e8e61d877546bc7303d3a1c460a70f6))
695
- * schema.org metadata per i servizi ([ee21c7d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ee21c7d4b0a4b4362f42239bb2ff7b4b7f6ac3b9))
696
- * traduzioni mancanti ([#432](https://github.com/RedTurtle/design-comuni-plone-theme/issues/432)) ([14ee678](https://github.com/RedTurtle/design-comuni-plone-theme/commit/14ee678fc710f15b0db8018ac508c5c5b13964ef))
697
-
872
+ - removed automatic pager-link and updated available manual data-elements ([2553322](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2553322f8e8e61d877546bc7303d3a1c460a70f6))
873
+ - schema.org metadata per i servizi ([ee21c7d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ee21c7d4b0a4b4362f42239bb2ff7b4b7f6ac3b9))
874
+ - traduzioni mancanti ([#432](https://github.com/RedTurtle/design-comuni-plone-theme/issues/432)) ([14ee678](https://github.com/RedTurtle/design-comuni-plone-theme/commit/14ee678fc710f15b0db8018ac508c5c5b13964ef))
698
875
 
699
876
  ### Documentation
700
877
 
701
- * update publiccode.yml con nuovi comuni ([#157](https://github.com/RedTurtle/design-comuni-plone-theme/issues/157)) ([43afda6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43afda6b780b5c6e5b1b86af49959108067d8b13))
702
- * updated publiccode and release log ([7e3dc2f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7e3dc2f915ae1b8d13753a3ff24b87a20cd9a7d2))
878
+ - update publiccode.yml con nuovi comuni ([#157](https://github.com/RedTurtle/design-comuni-plone-theme/issues/157)) ([43afda6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43afda6b780b5c6e5b1b86af49959108067d8b13))
879
+ - updated publiccode and release log ([7e3dc2f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7e3dc2f915ae1b8d13753a3ff24b87a20cd9a7d2))
703
880
 
704
881
  ## [10.5.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.3...v10.5.0) (2023-12-06)
705
882
 
706
-
707
883
  ### Features
708
884
 
709
- * added volto-querywidget-with-browser addon ([#426](https://github.com/RedTurtle/design-comuni-plone-theme/issues/426)) ([d1a6502](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d1a65021fe594eb15bc56b76207de7d74f8f1cca))
710
-
885
+ - added volto-querywidget-with-browser addon ([#426](https://github.com/RedTurtle/design-comuni-plone-theme/issues/426)) ([d1a6502](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d1a65021fe594eb15bc56b76207de7d74f8f1cca))
711
886
 
712
887
  ### Bug Fixes
713
888
 
714
- * calendar block header size ([#425](https://github.com/RedTurtle/design-comuni-plone-theme/issues/425)) ([2ab1035](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ab1035bb3bdc3da18726445009ddd37ef9c7288))
715
- * centered image in genericcard with image for related content ([#429](https://github.com/RedTurtle/design-comuni-plone-theme/issues/429)) ([38ffb45](https://github.com/RedTurtle/design-comuni-plone-theme/commit/38ffb452d903c2d39a9fe3d355f69cf9c220d2f2))
716
- * feedback form con risposta obbligatoria ([#430](https://github.com/RedTurtle/design-comuni-plone-theme/issues/430)) ([f653419](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f653419ae76e9cdf46edce1c9ad5b7d80e0506d7))
717
-
889
+ - calendar block header size ([#425](https://github.com/RedTurtle/design-comuni-plone-theme/issues/425)) ([2ab1035](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ab1035bb3bdc3da18726445009ddd37ef9c7288))
890
+ - centered image in genericcard with image for related content ([#429](https://github.com/RedTurtle/design-comuni-plone-theme/issues/429)) ([38ffb45](https://github.com/RedTurtle/design-comuni-plone-theme/commit/38ffb452d903c2d39a9fe3d355f69cf9c220d2f2))
891
+ - feedback form con risposta obbligatoria ([#430](https://github.com/RedTurtle/design-comuni-plone-theme/issues/430)) ([f653419](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f653419ae76e9cdf46edce1c9ad5b7d80e0506d7))
718
892
 
719
893
  ### Documentation
720
894
 
721
- * updated publiccode and release log ([05312b4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/05312b4f8705bc4805beee9b6b2ba98e9f399e62))
895
+ - updated publiccode and release log ([05312b4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/05312b4f8705bc4805beee9b6b2ba98e9f399e62))
722
896
 
723
897
  ## [10.4.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.2...v10.4.3) (2023-11-28)
724
898
 
725
-
726
899
  ### Bug Fixes
727
900
 
728
- * 404 page now sends user to homepage instead of search ([#419](https://github.com/RedTurtle/design-comuni-plone-theme/issues/419)) ([4331b59](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4331b5937dbcfad9fe6a22f3f8a0a53c1a17b838))
729
- * a11y of feedback form ([#418](https://github.com/RedTurtle/design-comuni-plone-theme/issues/418)) ([52da0c7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/52da0c73f67c8bb09b225e19a6535cd6a9613602))
730
- * changed styles for BandiInEvidenceTemplate for tablet size ([#412](https://github.com/RedTurtle/design-comuni-plone-theme/issues/412)) ([fd7688a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fd7688a80b6247243730ff01e55dd682ba2edbac))
731
- * removed pager-link data-element from prev item button in Pagination ([#420](https://github.com/RedTurtle/design-comuni-plone-theme/issues/420)) ([5812546](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58125465349699396b2719a79bf70a339f4ac7e6))
901
+ - background image for NumbersBlock and Countdown block ([#423](https://github.com/RedTurtle/design-comuni-plone-theme/issues/423)) ([28ba7ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/28ba7ea39701eed8e65843b68c62a29797dd7d4f))
902
+ - gallery component for ct views breaking with newer backend versions ([#422](https://github.com/RedTurtle/design-comuni-plone-theme/issues/422)) ([45a52f7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/45a52f7572cfc25b3adec897c089b848c215e359))
903
+ - image size in listing ([397ba93](https://github.com/RedTurtle/design-comuni-plone-theme/commit/397ba932c0742690535c9dd6868cd0bda740f11b))
904
+ - update volto-editablefooter to 5.0.3 ([8fcada1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8fcada1c5e36e67fd79f3fa99ec9077d0565a661))
732
905
 
906
+ ## [10.4.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.2...v10.4.3) (2023-11-28)
907
+
908
+ ### Bug Fixes
909
+
910
+ - 404 page now sends user to homepage instead of search ([#419](https://github.com/RedTurtle/design-comuni-plone-theme/issues/419)) ([4331b59](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4331b5937dbcfad9fe6a22f3f8a0a53c1a17b838))
911
+ - a11y of feedback form ([#418](https://github.com/RedTurtle/design-comuni-plone-theme/issues/418)) ([52da0c7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/52da0c73f67c8bb09b225e19a6535cd6a9613602))
912
+ - changed styles for BandiInEvidenceTemplate for tablet size ([#412](https://github.com/RedTurtle/design-comuni-plone-theme/issues/412)) ([fd7688a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fd7688a80b6247243730ff01e55dd682ba2edbac))
913
+ - removed pager-link data-element from prev item button in Pagination ([#420](https://github.com/RedTurtle/design-comuni-plone-theme/issues/420)) ([5812546](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58125465349699396b2719a79bf70a339f4ac7e6))
733
914
 
734
915
  ### Documentation
735
916
 
736
- * updated publiccode and release log ([33b267f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33b267f2f20d68b521a1452d300f7288f1d01fb1))
917
+ - updated publiccode and release log ([33b267f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33b267f2f20d68b521a1452d300f7288f1d01fb1))
737
918
 
738
919
  ## [10.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.1...v10.4.2) (2023-11-23)
739
920
 
740
-
741
921
  ### Bug Fixes
742
922
 
743
- * a11y of listing block read-more with card-slide-text template ([#415](https://github.com/RedTurtle/design-comuni-plone-theme/issues/415)) ([6260983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6260983016622af038d84d0f2efd3c9e13d2fbcf))
744
- * changed layout of readMore component to avoid overlapping ([#411](https://github.com/RedTurtle/design-comuni-plone-theme/issues/411)) ([a36a8b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a36a8b8b1be250a27fa48316bf514d43f2aac9b7))
745
- * error in search blocks with service-link lighthouse id ([#417](https://github.com/RedTurtle/design-comuni-plone-theme/issues/417)) ([69f1a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69f1a4243d13c077a0b0b469ce1de50a17527b95))
923
+ - a11y of listing block read-more with card-slide-text template ([#415](https://github.com/RedTurtle/design-comuni-plone-theme/issues/415)) ([6260983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6260983016622af038d84d0f2efd3c9e13d2fbcf))
924
+ - changed layout of readMore component to avoid overlapping ([#411](https://github.com/RedTurtle/design-comuni-plone-theme/issues/411)) ([a36a8b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a36a8b8b1be250a27fa48316bf514d43f2aac9b7))
925
+ - error in search blocks with service-link lighthouse id ([#417](https://github.com/RedTurtle/design-comuni-plone-theme/issues/417)) ([69f1a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69f1a4243d13c077a0b0b469ce1de50a17527b95))
746
926
 
927
+ ### Documentation
928
+
929
+ - updated publiccode and release log ([603c65d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/603c65d1de43952d7a1936127ea043d8a631a8b3))
747
930
 
748
931
  ### Maintenance
749
932
 
750
- * fix babel-eslint ([a7aa9a6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7aa9a6dff9f420bceef34809c2f7e23da883bcd))
751
- * upgrade linters ([9d8f13a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d8f13a34d82fb6cc9ce68f0881a46ffd8803eca))
933
+ - release v10.4.2 ([b7f8713](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7f87139d12ddeffcdcfcaaad730f46b64271cc2))
752
934
 
935
+ ## [11.0.0-alpha.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.0.0-alpha.0...v11.0.0-alpha.1) (2023-11-23)
753
936
 
754
- ### Documentation
937
+ ### ⚠ BREAKING CHANGES
755
938
 
756
- * updated publiccode and release log ([603c65d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/603c65d1de43952d7a1936127ea043d8a631a8b3))
939
+ - card image height from newest bootstrap-italia version (#406)
757
940
 
758
- ## [10.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.0...v10.4.1) (2023-11-21)
941
+ ### Features
759
942
 
943
+ - card image height from newest bootstrap-italia version ([#406](https://github.com/RedTurtle/design-comuni-plone-theme/issues/406)) ([2cf34bc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2cf34bcfc961673a94b3d76c39632a764b1e322a))
760
944
 
761
945
  ### Bug Fixes
762
946
 
763
- * BandiInEvidenceTemplate layout to space bando dati when titles have different lengths ([#410](https://github.com/RedTurtle/design-comuni-plone-theme/issues/410)) ([4780b12](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4780b127497e247df7dd59ffcba274537b2bc5a5))
764
- * class no-after added to simple card text block ([#413](https://github.com/RedTurtle/design-comuni-plone-theme/issues/413)) ([10073e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/10073e8bdf50c9e4b8d4245c05ad38bdac8423e3))
765
- * search block column template + button text color ([#408](https://github.com/RedTurtle/design-comuni-plone-theme/issues/408)) ([72f7eae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/72f7eae3bac35aaaa01e725a89a65de8a2b02b60))
947
+ - listing block card-slide-text-template read-more alignment ([#416](https://github.com/RedTurtle/design-comuni-plone-theme/issues/416)) ([39c756c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/39c756c9c350b9783b46259076842004df7751a6))
948
+
949
+ ## [11.0.0-alpha.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.1...v11.0.0-alpha.0) (2023-11-22)
950
+
951
+ ### ⚠ BREAKING CHANGES
952
+
953
+ - upgrade to design-react-kit 5.0.0-1 and bootstrap-italia 2.6.1 (#407)
954
+ - upgrade to volto 17.5.0 (#382)
955
+
956
+ ### Features
957
+
958
+ - upgrade to design-react-kit 5.0.0-1 and bootstrap-italia 2.6.1 ([#407](https://github.com/RedTurtle/design-comuni-plone-theme/issues/407)) ([ec1ec5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ec1ec5bd693df58653a7c10d17a4085305734625))
959
+ - upgrade to volto 17.5.0 ([#382](https://github.com/RedTurtle/design-comuni-plone-theme/issues/382)) ([cef3f09](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cef3f09ef971bfcc03b61dafe5e1c712ac6563da))
960
+
961
+ ## [10.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.1...v10.4.2) (2023-11-23)
962
+
963
+ ### Bug Fixes
766
964
 
965
+ - a11y of listing block read-more with card-slide-text template ([#415](https://github.com/RedTurtle/design-comuni-plone-theme/issues/415)) ([6260983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6260983016622af038d84d0f2efd3c9e13d2fbcf))
966
+ - changed layout of readMore component to avoid overlapping ([#411](https://github.com/RedTurtle/design-comuni-plone-theme/issues/411)) ([a36a8b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a36a8b8b1be250a27fa48316bf514d43f2aac9b7))
967
+ - error in search blocks with service-link lighthouse id ([#417](https://github.com/RedTurtle/design-comuni-plone-theme/issues/417)) ([69f1a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69f1a4243d13c077a0b0b469ce1de50a17527b95))
767
968
 
768
969
  ### Maintenance
769
970
 
770
- * how to customize the 503 file ([#405](https://github.com/RedTurtle/design-comuni-plone-theme/issues/405)) ([b444ba8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b444ba84de9a31edffb01f778b66677ac72971cb))
971
+ - fix babel-eslint ([a7aa9a6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7aa9a6dff9f420bceef34809c2f7e23da883bcd))
972
+ - upgrade linters ([9d8f13a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d8f13a34d82fb6cc9ce68f0881a46ffd8803eca))
973
+
974
+ ### Documentation
975
+
976
+ - updated publiccode and release log ([603c65d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/603c65d1de43952d7a1936127ea043d8a631a8b3))
977
+
978
+ ## [10.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.0...v10.4.1) (2023-11-21)
979
+
980
+ ### Bug Fixes
981
+
982
+ - BandiInEvidenceTemplate layout to space bando dati when titles have different lengths ([#410](https://github.com/RedTurtle/design-comuni-plone-theme/issues/410)) ([4780b12](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4780b127497e247df7dd59ffcba274537b2bc5a5))
983
+ - class no-after added to simple card text block ([#413](https://github.com/RedTurtle/design-comuni-plone-theme/issues/413)) ([10073e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/10073e8bdf50c9e4b8d4245c05ad38bdac8423e3))
984
+ - search block column template + button text color ([#408](https://github.com/RedTurtle/design-comuni-plone-theme/issues/408)) ([72f7eae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/72f7eae3bac35aaaa01e725a89a65de8a2b02b60))
771
985
 
986
+ ### Maintenance
987
+
988
+ - how to customize the 503 file ([#405](https://github.com/RedTurtle/design-comuni-plone-theme/issues/405)) ([b444ba8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b444ba84de9a31edffb01f778b66677ac72971cb))
772
989
 
773
990
  ### Documentation
774
991
 
775
- * updated publiccode and release log ([5be0543](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5be054313163816dd764149e8f7cb1717c52eab2))
992
+ - updated publiccode and release log ([5be0543](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5be054313163816dd764149e8f7cb1717c52eab2))
776
993
 
777
994
  ## [10.4.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.3.0...v10.4.0) (2023-11-14)
778
995
 
779
-
780
996
  ### Features
781
997
 
782
- * added image size and colorListWidget in Alert block ([#396](https://github.com/RedTurtle/design-comuni-plone-theme/issues/396)) ([63f3b5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/63f3b5b60364e650de5123cf8b8108dd86eab9f9))
783
- * split VenueDescription component ([#399](https://github.com/RedTurtle/design-comuni-plone-theme/issues/399)) ([68c3ca5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/68c3ca5338f27f4e64ea257f679ae91dc1842491))
784
-
998
+ - added image size and colorListWidget in Alert block ([#396](https://github.com/RedTurtle/design-comuni-plone-theme/issues/396)) ([63f3b5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/63f3b5b60364e650de5123cf8b8108dd86eab9f9))
999
+ - split VenueDescription component ([#399](https://github.com/RedTurtle/design-comuni-plone-theme/issues/399)) ([68c3ca5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/68c3ca5338f27f4e64ea257f679ae91dc1842491))
785
1000
 
786
1001
  ### Bug Fixes
787
1002
 
788
- * documentFirstHeading in subsites without style ([#400](https://github.com/RedTurtle/design-comuni-plone-theme/issues/400)) ([9588073](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9588073d4a2a72e4eb3664c5741b0368f59781fb))
789
- * icons in NumbersBlock and Sidebar Widget not updating ([#402](https://github.com/RedTurtle/design-comuni-plone-theme/issues/402)) ([0df93a5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0df93a59c100df69085db83b4ade85101601ed35))
790
- * locales ([c4bdc14](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c4bdc148aa76ad7ee81945185f22b2eeead3feeb))
791
- * mark section filters correctly when navigating to search page from page header ([#401](https://github.com/RedTurtle/design-comuni-plone-theme/issues/401)) ([fdc6207](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdc62074fa2b92292b128a31f7d227ed5e97c074))
792
- * ParentSiteMenu now draws only Visible site menu elements in subsites ([#403](https://github.com/RedTurtle/design-comuni-plone-theme/issues/403)) ([9fc0a24](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9fc0a2456030d1480fbe5b76cf4f9c29eab0d10e))
793
- * Photogallery popup image ([#395](https://github.com/RedTurtle/design-comuni-plone-theme/issues/395)) ([4fce154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4fce154045e2cbc710fed9d975842edb1af7e85a))
794
- * scroll position on h2 .visually-hidden ([#397](https://github.com/RedTurtle/design-comuni-plone-theme/issues/397)) ([9356e6a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9356e6af8a3273ebb1d51c80d84ae0cce7c7dd3a))
795
-
1003
+ - documentFirstHeading in subsites without style ([#400](https://github.com/RedTurtle/design-comuni-plone-theme/issues/400)) ([9588073](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9588073d4a2a72e4eb3664c5741b0368f59781fb))
1004
+ - icons in NumbersBlock and Sidebar Widget not updating ([#402](https://github.com/RedTurtle/design-comuni-plone-theme/issues/402)) ([0df93a5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0df93a59c100df69085db83b4ade85101601ed35))
1005
+ - locales ([c4bdc14](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c4bdc148aa76ad7ee81945185f22b2eeead3feeb))
1006
+ - mark section filters correctly when navigating to search page from page header ([#401](https://github.com/RedTurtle/design-comuni-plone-theme/issues/401)) ([fdc6207](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdc62074fa2b92292b128a31f7d227ed5e97c074))
1007
+ - ParentSiteMenu now draws only Visible site menu elements in subsites ([#403](https://github.com/RedTurtle/design-comuni-plone-theme/issues/403)) ([9fc0a24](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9fc0a2456030d1480fbe5b76cf4f9c29eab0d10e))
1008
+ - Photogallery popup image ([#395](https://github.com/RedTurtle/design-comuni-plone-theme/issues/395)) ([4fce154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4fce154045e2cbc710fed9d975842edb1af7e85a))
1009
+ - scroll position on h2 .visually-hidden ([#397](https://github.com/RedTurtle/design-comuni-plone-theme/issues/397)) ([9356e6a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9356e6af8a3273ebb1d51c80d84ae0cce7c7dd3a))
796
1010
 
797
1011
  ### Maintenance
798
1012
 
799
- * split BandoView Text in different components ([#391](https://github.com/RedTurtle/design-comuni-plone-theme/issues/391)) ([e787f38](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e787f38899519daa2e6743e896e5f8d53fc8bf8a))
800
-
1013
+ - split BandoView Text in different components ([#391](https://github.com/RedTurtle/design-comuni-plone-theme/issues/391)) ([e787f38](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e787f38899519daa2e6743e896e5f8d53fc8bf8a))
801
1014
 
802
1015
  ### Documentation
803
1016
 
804
- * updated publiccode and release log ([f95133b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f95133b0ddaa5ac27a07dfa772f48dfb1b59c067))
1017
+ - updated publiccode and release log ([f95133b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f95133b0ddaa5ac27a07dfa772f48dfb1b59c067))
805
1018
 
806
1019
  ## [10.3.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.2.2...v10.3.0) (2023-11-08)
807
1020
 
808
-
809
1021
  ### Features
810
1022
 
811
- * new BandoStatus component to manage the current status translations ([#390](https://github.com/redturtle/design-comuni-plone-theme/issues/390)) ([4f0f775](https://github.com/redturtle/design-comuni-plone-theme/commit/4f0f775e99572152f359c3dd6b227601ebffcdd9))
812
-
1023
+ - new BandoStatus component to manage the current status translations ([#390](https://github.com/redturtle/design-comuni-plone-theme/issues/390)) ([4f0f775](https://github.com/redturtle/design-comuni-plone-theme/commit/4f0f775e99572152f359c3dd6b227601ebffcdd9))
813
1024
 
814
1025
  ### Bug Fixes
815
1026
 
816
- * updated tipologia_bando data in Bando listing template ([#393](https://github.com/redturtle/design-comuni-plone-theme/issues/393)) ([6f38934](https://github.com/redturtle/design-comuni-plone-theme/commit/6f3893457c10035cfc17bede816b91fcbeae93d7))
817
-
1027
+ - updated tipologia_bando data in Bando listing template ([#393](https://github.com/redturtle/design-comuni-plone-theme/issues/393)) ([6f38934](https://github.com/redturtle/design-comuni-plone-theme/commit/6f3893457c10035cfc17bede816b91fcbeae93d7))
818
1028
 
819
1029
  ### Maintenance
820
1030
 
821
- * preparing release ([73632c8](https://github.com/redturtle/design-comuni-plone-theme/commit/73632c832a5f7ad350d407cb2bfe5723d193730b))
822
- * Update RELEASE.md ([#394](https://github.com/redturtle/design-comuni-plone-theme/issues/394)) ([0da8790](https://github.com/redturtle/design-comuni-plone-theme/commit/0da8790b5238ade33a491894d98c06f2813e8993))
1031
+ - preparing release ([73632c8](https://github.com/redturtle/design-comuni-plone-theme/commit/73632c832a5f7ad350d407cb2bfe5723d193730b))
1032
+ - Update RELEASE.md ([#394](https://github.com/redturtle/design-comuni-plone-theme/issues/394)) ([0da8790](https://github.com/redturtle/design-comuni-plone-theme/commit/0da8790b5238ade33a491894d98c06f2813e8993))
823
1033
 
824
1034
  ## [10.2.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.2.1...v10.2.2) (2023-11-07)
825
1035
 
826
-
827
1036
  ### Bug Fixes
828
1037
 
829
- * header Metadata to h2 ([d2952b7](https://github.com/redturtle/design-comuni-plone-theme/commit/d2952b781df8b7e42f9e8c48999aa9f79538081e))
830
-
1038
+ - header Metadata to h2 ([d2952b7](https://github.com/redturtle/design-comuni-plone-theme/commit/d2952b781df8b7e42f9e8c48999aa9f79538081e))
831
1039
 
832
1040
  ### Maintenance
833
1041
 
834
- * preparing release ([6b70a73](https://github.com/redturtle/design-comuni-plone-theme/commit/6b70a739835175b39478156d29a6f144b1ecb9ae))
1042
+ - preparing release ([6b70a73](https://github.com/redturtle/design-comuni-plone-theme/commit/6b70a739835175b39478156d29a6f144b1ecb9ae))
835
1043
 
836
1044
  ## [10.2.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.2.0...v10.2.1) (2023-11-06)
837
1045
 
838
-
839
1046
  ### Bug Fixes
840
1047
 
841
- * fix id for gallery video title ([5d35058](https://github.com/redturtle/design-comuni-plone-theme/commit/5d35058308c04eaa416146a3966a9cfb4915bbab))
842
- * sidemenu by titles work only with h2 and not items with id #header-* ([71ca592](https://github.com/redturtle/design-comuni-plone-theme/commit/71ca5921f68ade764e9aaab47b529342befe51d3))
843
-
1048
+ - fix id for gallery video title ([5d35058](https://github.com/redturtle/design-comuni-plone-theme/commit/5d35058308c04eaa416146a3966a9cfb4915bbab))
1049
+ - sidemenu by titles work only with h2 and not items with id #header-\* ([71ca592](https://github.com/redturtle/design-comuni-plone-theme/commit/71ca5921f68ade764e9aaab47b529342befe51d3))
844
1050
 
845
1051
  ### Maintenance
846
1052
 
847
- * updated publiccode ([3041114](https://github.com/redturtle/design-comuni-plone-theme/commit/3041114b59fced1d47ea05812f19006daf55eb0b))
1053
+ - updated publiccode ([3041114](https://github.com/redturtle/design-comuni-plone-theme/commit/3041114b59fced1d47ea05812f19006daf55eb0b))
848
1054
 
849
1055
  ## [10.2.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.1.1...v10.2.0) (2023-11-06)
850
1056
 
851
-
852
1057
  ### Features
853
1058
 
854
- * added pager-link data-element to search block pagination ([#389](https://github.com/RedTurtle/design-comuni-plone-theme/issues/389)) ([fbc32a3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fbc32a32ffc04054b39eb623584aadd1dc517beb))
855
- * added title param to SideMenuByTitle ([d6718b4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d6718b41ef0ce61959ca884ad0012825c09701bf))
856
-
1059
+ - added pager-link data-element to search block pagination ([#389](https://github.com/RedTurtle/design-comuni-plone-theme/issues/389)) ([fbc32a3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fbc32a32ffc04054b39eb623584aadd1dc517beb))
1060
+ - added title param to SideMenuByTitle ([d6718b4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d6718b41ef0ce61959ca884ad0012825c09701bf))
857
1061
 
858
1062
  ### Bug Fixes
859
1063
 
860
- * messages in EventoView contatti ([348469f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/348469fcbe63136dc9bfa3fcbfe04ea1728ab953))
861
- * missing locales update ([633be45](https://github.com/RedTurtle/design-comuni-plone-theme/commit/633be45a7ea425ebfa1a5e9bf7cf3c0b44d6250c))
862
-
1064
+ - messages in EventoView contatti ([348469f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/348469fcbe63136dc9bfa3fcbfe04ea1728ab953))
1065
+ - missing locales update ([633be45](https://github.com/RedTurtle/design-comuni-plone-theme/commit/633be45a7ea425ebfa1a5e9bf7cf3c0b44d6250c))
863
1066
 
864
1067
  ### Maintenance
865
1068
 
866
- * split EventoVView Contatti in different components ([5abf0d8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5abf0d85d101fd2c67f663c8eb68ddce698d6c2d))
867
-
1069
+ - split EventoVView Contatti in different components ([5abf0d8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5abf0d85d101fd2c67f663c8eb68ddce698d6c2d))
868
1070
 
869
1071
  ### Documentation
870
1072
 
871
- * updated publiccode and release log ([0a09061](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0a090616afffd574822c8d3874e7de9abb90242a))
1073
+ - updated publiccode and release log ([0a09061](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0a090616afffd574822c8d3874e7de9abb90242a))
872
1074
 
873
1075
  ## [10.1.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.1.0...v10.1.1) (2023-11-06)
874
1076
 
875
-
876
1077
  ### Bug Fixes
877
1078
 
878
- * fix sideMenuByTitles to remove duplicate text title when it is hidden ([9da33c8](https://github.com/redturtle/design-comuni-plone-theme/commit/9da33c8d5f5470e20873a04e5963d66a3cc46515))
1079
+ - fix sideMenuByTitles to remove duplicate text title when it is hidden ([9da33c8](https://github.com/redturtle/design-comuni-plone-theme/commit/9da33c8d5f5470e20873a04e5963d66a3cc46515))
879
1080
 
880
1081
  ## [10.1.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.0.0...v10.1.0) (2023-11-06)
881
1082
 
882
-
883
1083
  ### Features
884
1084
 
885
- * Sidemenu customizable ([#388](https://github.com/redturtle/design-comuni-plone-theme/issues/388)) ([94fa0c1](https://github.com/redturtle/design-comuni-plone-theme/commit/94fa0c107f73acb9b7e89638f613206391cefc46))
886
-
1085
+ - Sidemenu customizable ([#388](https://github.com/redturtle/design-comuni-plone-theme/issues/388)) ([94fa0c1](https://github.com/redturtle/design-comuni-plone-theme/commit/94fa0c107f73acb9b7e89638f613206391cefc46))
887
1086
 
888
1087
  ### Bug Fixes
889
1088
 
890
- * GalleryPreview ([29f0299](https://github.com/redturtle/design-comuni-plone-theme/commit/29f02990f1e7467e536f151c9e86821c1b0c9e98))
891
- * locales ([14d268b](https://github.com/redturtle/design-comuni-plone-theme/commit/14d268be970d6fccce06c0c24f99c67745735fef))
892
- * useSideMenu observer ([bd2e4ab](https://github.com/redturtle/design-comuni-plone-theme/commit/bd2e4ab451d4bc5a05b2673cdbf4a2b05038f4b4))
1089
+ - GalleryPreview ([29f0299](https://github.com/redturtle/design-comuni-plone-theme/commit/29f02990f1e7467e536f151c9e86821c1b0c9e98))
1090
+ - locales ([14d268b](https://github.com/redturtle/design-comuni-plone-theme/commit/14d268be970d6fccce06c0c24f99c67745735fef))
1091
+ - useSideMenu observer ([bd2e4ab](https://github.com/redturtle/design-comuni-plone-theme/commit/bd2e4ab451d4bc5a05b2673cdbf4a2b05038f4b4))
893
1092
 
894
1093
  ## [10.0.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.9.0...v10.0.0) (2023-11-03)
895
1094
 
896
-
897
1095
  ### ⚠ BREAKING CHANGES
898
1096
 
899
- * h titles in views (#381)
1097
+ - h titles in views (#381)
900
1098
 
901
1099
  ### Bug Fixes
902
1100
 
903
- * h titles in views ([#381](https://github.com/redturtle/design-comuni-plone-theme/issues/381)) ([1b871e9](https://github.com/redturtle/design-comuni-plone-theme/commit/1b871e9f86b3fa5866ddf7192ccbc900e2629ce7))
904
-
1101
+ - h titles in views ([#381](https://github.com/redturtle/design-comuni-plone-theme/issues/381)) ([1b871e9](https://github.com/redturtle/design-comuni-plone-theme/commit/1b871e9f86b3fa5866ddf7192ccbc900e2629ce7))
905
1102
 
906
1103
  ### Maintenance
907
1104
 
908
- * prapring release 9.0.1 ([7d7376c](https://github.com/redturtle/design-comuni-plone-theme/commit/7d7376cf2f536a8262c73b1e0f2aabda08818e78))
909
- * preparing release 8.10.0 ([a33e32b](https://github.com/redturtle/design-comuni-plone-theme/commit/a33e32bd6cdda6aea0227140580a43e26501f475))
910
- * preparing release 9.0.0 ([95f5cc0](https://github.com/redturtle/design-comuni-plone-theme/commit/95f5cc0bd486198c0b66dcd4d0b659113d51527f))
911
- * preparing release 9.0.1 (9.0.0) ([e230881](https://github.com/redturtle/design-comuni-plone-theme/commit/e23088116b5422081a9ce22763288cd0b65fc4cc))
1105
+ - prapring release 9.0.1 ([7d7376c](https://github.com/redturtle/design-comuni-plone-theme/commit/7d7376cf2f536a8262c73b1e0f2aabda08818e78))
1106
+ - preparing release 8.10.0 ([a33e32b](https://github.com/redturtle/design-comuni-plone-theme/commit/a33e32bd6cdda6aea0227140580a43e26501f475))
1107
+ - preparing release 9.0.0 ([95f5cc0](https://github.com/redturtle/design-comuni-plone-theme/commit/95f5cc0bd486198c0b66dcd4d0b659113d51527f))
1108
+ - preparing release 9.0.1 (9.0.0) ([e230881](https://github.com/redturtle/design-comuni-plone-theme/commit/e23088116b5422081a9ce22763288cd0b65fc4cc))
912
1109
 
913
1110
  ## [8.9.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.8.2...v8.9.0) (2023-11-03)
914
1111
 
915
-
916
1112
  ### Features
917
1113
 
918
- * added data-element for service-link pagination ([#387](https://github.com/RedTurtle/design-comuni-plone-theme/issues/387)) ([3ef75a5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3ef75a5f8dde74b948bbfe3e61fd58575baa7c13))
919
-
1114
+ - added data-element for service-link pagination ([#387](https://github.com/RedTurtle/design-comuni-plone-theme/issues/387)) ([3ef75a5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3ef75a5f8dde74b948bbfe3e61fd58575baa7c13))
920
1115
 
921
1116
  ### Bug Fixes
922
1117
 
923
- * locales ([e6b8904](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6b890401222739a756a77cc06958ea3b9173759))
924
-
1118
+ - locales ([e6b8904](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6b890401222739a756a77cc06958ea3b9173759))
925
1119
 
926
1120
  ### Documentation
927
1121
 
928
- * updated publiccode and release log ([2fe4539](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2fe4539ee4cf6dcc88d0dfeb9fe9c49bb972244f))
1122
+ - updated publiccode and release log ([2fe4539](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2fe4539ee4cf6dcc88d0dfeb9fe9c49bb972244f))
929
1123
 
930
1124
  ## [8.8.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.8.1...v8.8.2) (2023-11-03)
931
1125
 
932
-
933
1126
  ### Maintenance
934
1127
 
935
- * changed descrizione bando i18n id ([5bef0e8](https://github.com/redturtle/design-comuni-plone-theme/commit/5bef0e8e1ebfbf6e7254ee177817960cc829b3aa))
936
- * preparing release 8.8.2 ([d842e66](https://github.com/redturtle/design-comuni-plone-theme/commit/d842e66c891fd19a4eef81bea2aaaf2d33c6ead7))
1128
+ - changed descrizione bando i18n id ([5bef0e8](https://github.com/redturtle/design-comuni-plone-theme/commit/5bef0e8e1ebfbf6e7254ee177817960cc829b3aa))
1129
+ - preparing release 8.8.2 ([d842e66](https://github.com/redturtle/design-comuni-plone-theme/commit/d842e66c891fd19a4eef81bea2aaaf2d33c6ead7))
937
1130
 
938
1131
  ## [8.8.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.8.0...v8.8.1) (2023-11-03)
939
1132
 
940
-
941
1133
  ### Bug Fixes
942
1134
 
943
- * fix gallery preview image ([f2ddb87](https://github.com/redturtle/design-comuni-plone-theme/commit/f2ddb8798fcdd88cc003791c483240f4d95e3880))
944
- * fix slider dr dots margin ([8e24914](https://github.com/redturtle/design-comuni-plone-theme/commit/8e2491430c7951cbc87fcf30cb860c1ae0f55460))
945
- * RSS template div source moved inside condition and changed release.md ([#386](https://github.com/redturtle/design-comuni-plone-theme/issues/386)) ([200fefa](https://github.com/redturtle/design-comuni-plone-theme/commit/200fefad7b0c7596cdcb3109ef5962d53b643626))
946
- * source added for rss single card ([#384](https://github.com/redturtle/design-comuni-plone-theme/issues/384)) ([669f165](https://github.com/redturtle/design-comuni-plone-theme/commit/669f16575e93944a354119aff4a6dd4ba9cf58b8))
947
-
1135
+ - fix gallery preview image ([f2ddb87](https://github.com/redturtle/design-comuni-plone-theme/commit/f2ddb8798fcdd88cc003791c483240f4d95e3880))
1136
+ - fix slider dr dots margin ([8e24914](https://github.com/redturtle/design-comuni-plone-theme/commit/8e2491430c7951cbc87fcf30cb860c1ae0f55460))
1137
+ - RSS template div source moved inside condition and changed release.md ([#386](https://github.com/redturtle/design-comuni-plone-theme/issues/386)) ([200fefa](https://github.com/redturtle/design-comuni-plone-theme/commit/200fefad7b0c7596cdcb3109ef5962d53b643626))
1138
+ - source added for rss single card ([#384](https://github.com/redturtle/design-comuni-plone-theme/issues/384)) ([669f165](https://github.com/redturtle/design-comuni-plone-theme/commit/669f16575e93944a354119aff4a6dd4ba9cf58b8))
948
1139
 
949
1140
  ### Maintenance
950
1141
 
951
- * preparing release 8.8.1 ([d12c618](https://github.com/redturtle/design-comuni-plone-theme/commit/d12c61899c0cd5b658e6fa38234f90a029b1786c))
1142
+ - preparing release 8.8.1 ([d12c618](https://github.com/redturtle/design-comuni-plone-theme/commit/d12c61899c0cd5b658e6fa38234f90a029b1786c))
952
1143
 
953
1144
  ## [8.8.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.12...v8.8.0) (2023-10-31)
954
1145
 
955
-
956
1146
  ### Features
957
1147
 
958
- * added id and title_it adttrs and handled h2 title_type in Gallery component ([4d5949e](https://github.com/redturtle/design-comuni-plone-theme/commit/4d5949eb2393f442e6541637e89123153606279e))
959
-
1148
+ - added id and title_it adttrs and handled h2 title_type in Gallery component ([4d5949e](https://github.com/redturtle/design-comuni-plone-theme/commit/4d5949eb2393f442e6541637e89123153606279e))
960
1149
 
961
1150
  ### Bug Fixes
962
1151
 
963
- * fixed image url in Photogallery listing popup ([#383](https://github.com/redturtle/design-comuni-plone-theme/issues/383)) ([b8d2e20](https://github.com/redturtle/design-comuni-plone-theme/commit/b8d2e207cdefd018824229975ac0f5ac0bdb8d0c))
964
-
1152
+ - fixed image url in Photogallery listing popup ([#383](https://github.com/redturtle/design-comuni-plone-theme/issues/383)) ([b8d2e20](https://github.com/redturtle/design-comuni-plone-theme/commit/b8d2e207cdefd018824229975ac0f5ac0bdb8d0c))
965
1153
 
966
1154
  ### Maintenance
967
1155
 
968
- * preparing release ([2e6d0a5](https://github.com/redturtle/design-comuni-plone-theme/commit/2e6d0a56ddd96ecbf48e68e03fcc3caf061ceb55))
1156
+ - preparing release ([2e6d0a5](https://github.com/redturtle/design-comuni-plone-theme/commit/2e6d0a56ddd96ecbf48e68e03fcc3caf061ceb55))
969
1157
 
970
1158
  ## [8.7.12](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.7.11...v8.7.12) (2023-10-27)
971
1159
 
972
-
973
1160
  ### Bug Fixes
974
1161
 
975
- * backport white header preset from child themes and fix header mobile ([#380](https://github.com/RedTurtle/design-comuni-plone-theme/issues/380)) ([60276ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/60276ecc3aa0dc51016f0bc8d1fad2e4a09ccd4e))
976
- * fixed conditions for rendering + fix title tag ([#371](https://github.com/RedTurtle/design-comuni-plone-theme/issues/371)) ([522774b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/522774bee6dafd21dc09beef2fbc5b70936b7944))
977
- * icon component for TextSizeButton in RichTextEditor ([#379](https://github.com/RedTurtle/design-comuni-plone-theme/issues/379)) ([d2160ce](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d2160ce95eb8c98f1221c690f019ec42c20c8fcd))
978
- * overlapping block chooser in small pages/screens ([#372](https://github.com/RedTurtle/design-comuni-plone-theme/issues/372)) ([3035ea2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3035ea2b2c1e7ddfa3968d3d685614cb3dda097d))
979
- * release-log class added ([#376](https://github.com/RedTurtle/design-comuni-plone-theme/issues/376)) ([92e5a68](https://github.com/RedTurtle/design-comuni-plone-theme/commit/92e5a680afd15bc25a8b8eb97ab96845f77e8294))
980
- * release-log text ([#377](https://github.com/RedTurtle/design-comuni-plone-theme/issues/377)) ([46a4d5f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/46a4d5f174d9dedd6cf190466a88ade0d6746d68))
981
-
1162
+ - backport white header preset from child themes and fix header mobile ([#380](https://github.com/RedTurtle/design-comuni-plone-theme/issues/380)) ([60276ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/60276ecc3aa0dc51016f0bc8d1fad2e4a09ccd4e))
1163
+ - fixed conditions for rendering + fix title tag ([#371](https://github.com/RedTurtle/design-comuni-plone-theme/issues/371)) ([522774b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/522774bee6dafd21dc09beef2fbc5b70936b7944))
1164
+ - icon component for TextSizeButton in RichTextEditor ([#379](https://github.com/RedTurtle/design-comuni-plone-theme/issues/379)) ([d2160ce](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d2160ce95eb8c98f1221c690f019ec42c20c8fcd))
1165
+ - overlapping block chooser in small pages/screens ([#372](https://github.com/RedTurtle/design-comuni-plone-theme/issues/372)) ([3035ea2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3035ea2b2c1e7ddfa3968d3d685614cb3dda097d))
1166
+ - release-log class added ([#376](https://github.com/RedTurtle/design-comuni-plone-theme/issues/376)) ([92e5a68](https://github.com/RedTurtle/design-comuni-plone-theme/commit/92e5a680afd15bc25a8b8eb97ab96845f77e8294))
1167
+ - release-log text ([#377](https://github.com/RedTurtle/design-comuni-plone-theme/issues/377)) ([46a4d5f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/46a4d5f174d9dedd6cf190466a88ade0d6746d68))
982
1168
 
983
1169
  ### Documentation
984
1170
 
985
- * updated publiccode and release log ([b1e9e81](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1e9e81c3506851e41b5f35d866353b579358edd))
986
- * updated publiccode and release log ([276ca06](https://github.com/RedTurtle/design-comuni-plone-theme/commit/276ca0605b13923f2941a9ec843ca7e04dce20a1))
1171
+ - updated publiccode and release log ([b1e9e81](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1e9e81c3506851e41b5f35d866353b579358edd))
1172
+ - updated publiccode and release log ([276ca06](https://github.com/RedTurtle/design-comuni-plone-theme/commit/276ca0605b13923f2941a9ec843ca7e04dce20a1))
987
1173
 
988
1174
  ## [8.7.11](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.10...v8.7.11) (2023-10-23)
989
1175
 
990
-
991
1176
  ### Bug Fixes
992
1177
 
993
- * fixed requiredBlocks config with spread and added controls in EventView props ([#374](https://github.com/redturtle/design-comuni-plone-theme/issues/374)) ([f4ec297](https://github.com/redturtle/design-comuni-plone-theme/commit/f4ec297e3e5a5b2ec7cfc60b96fa73565c202de7))
994
- * tabnav label in Release log ([#373](https://github.com/redturtle/design-comuni-plone-theme/issues/373)) ([c4abcd9](https://github.com/redturtle/design-comuni-plone-theme/commit/c4abcd95d40ecc3af56baeb8aa7a06d442b9154d))
995
-
1178
+ - fixed requiredBlocks config with spread and added controls in EventView props ([#374](https://github.com/redturtle/design-comuni-plone-theme/issues/374)) ([f4ec297](https://github.com/redturtle/design-comuni-plone-theme/commit/f4ec297e3e5a5b2ec7cfc60b96fa73565c202de7))
1179
+ - tabnav label in Release log ([#373](https://github.com/redturtle/design-comuni-plone-theme/issues/373)) ([c4abcd9](https://github.com/redturtle/design-comuni-plone-theme/commit/c4abcd95d40ecc3af56baeb8aa7a06d442b9154d))
996
1180
 
997
1181
  ### Maintenance
998
1182
 
999
- * preparing release 8.7.11 ([fbf6386](https://github.com/redturtle/design-comuni-plone-theme/commit/fbf638682c30de694134bcf2686714204837d5cd))
1183
+ - preparing release 8.7.11 ([fbf6386](https://github.com/redturtle/design-comuni-plone-theme/commit/fbf638682c30de694134bcf2686714204837d5cd))
1000
1184
 
1001
1185
  ## [8.7.10](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.7.9...v8.7.10) (2023-10-19)
1002
1186
 
1003
-
1004
1187
  ### Bug Fixes
1005
1188
 
1006
- * timeline_tempi_scadenze validation ([#370](https://github.com/RedTurtle/design-comuni-plone-theme/issues/370)) ([c97e325](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c97e3252b21c409dbe575d43448ee4cf9a58ffba))
1007
-
1189
+ - timeline_tempi_scadenze validation ([#370](https://github.com/RedTurtle/design-comuni-plone-theme/issues/370)) ([c97e325](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c97e3252b21c409dbe575d43448ee4cf9a58ffba))
1008
1190
 
1009
1191
  ### Maintenance
1010
1192
 
1011
- * updated github workflows ([0445653](https://github.com/RedTurtle/design-comuni-plone-theme/commit/04456532b38742877b5879e12492a6a2d0fdcabc))
1012
-
1193
+ - updated github workflows ([0445653](https://github.com/RedTurtle/design-comuni-plone-theme/commit/04456532b38742877b5879e12492a6a2d0fdcabc))
1013
1194
 
1014
1195
  ### Documentation
1015
1196
 
1016
- * updated publiccode and release log ([59ea5b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59ea5b73e43bb5e937e34d67ef6bdad3da35e2ee))
1017
- * updated release log ([80bdcd1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80bdcd1e63bf6d405fcc692e860bc6fee138d58c))
1197
+ - updated publiccode and release log ([59ea5b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59ea5b73e43bb5e937e34d67ef6bdad3da35e2ee))
1198
+ - updated release log ([80bdcd1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80bdcd1e63bf6d405fcc692e860bc6fee138d58c))
1018
1199
 
1019
1200
  ## [8.7.9](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.7.8...v8.7.9) (2023-10-18)
1020
1201
 
1021
-
1022
1202
  ### Bug Fixes
1023
1203
 
1024
- * add pluggable custom validation for all datagrid fields, not just required ones and applied new validation to timeline_tempi_scadenze ([#357](https://github.com/RedTurtle/design-comuni-plone-theme/issues/357)) ([9c6f55c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9c6f55c7f72a0210b18c2ef3d25d078056fc8b9d))
1025
- * do not show subsite footer banner when field is empty ([#356](https://github.com/RedTurtle/design-comuni-plone-theme/issues/356)) ([3d7bb92](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d7bb923b056620ec499c2f235bd2c64aaf13279))
1026
- * icona link esterni in linea con il testo ([#355](https://github.com/RedTurtle/design-comuni-plone-theme/issues/355)) ([33635ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33635ecc80256051a597eacce87f047942781585))
1027
- * object browser limit is now respected, add logic for deselection and conditional closing of ob in some cases ([#363](https://github.com/RedTurtle/design-comuni-plone-theme/issues/363)) ([f6e9c35](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f6e9c3565518914731b55543a0c2bc622b53f0d9))
1028
- * outline color of search icon in header for subsites ([#358](https://github.com/RedTurtle/design-comuni-plone-theme/issues/358)) ([4fea6cd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4fea6cdab31d46e4d3c3386024a17067a8e8b94d))
1029
- * overflow of vertical images in page view ([#364](https://github.com/RedTurtle/design-comuni-plone-theme/issues/364)) ([e584f63](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e584f6397d251b86fb5cc7ed27f4a22710052ffe))
1030
- * overflowing help text in Numbers block sidebar ([#367](https://github.com/RedTurtle/design-comuni-plone-theme/issues/367)) ([ab68178](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ab68178ee9646cb7f6f36cdc0b32ebbd167565cc))
1031
- * regression for default classes in SearchBlock view that were overflowing content into columns ([#369](https://github.com/RedTurtle/design-comuni-plone-theme/issues/369)) ([c82f886](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c82f8867508a978a4f6d69df452e68b05101a8ff))
1032
- * removed unnecessary h3 in footer ([#360](https://github.com/RedTurtle/design-comuni-plone-theme/issues/360)) ([de2a9c1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/de2a9c1ac3820eac65279cce3041d370add12fee))
1033
- * restore missing IconWidget and FontawesomeIcons ([#365](https://github.com/RedTurtle/design-comuni-plone-theme/issues/365)) ([fcd942c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fcd942cbfdaaef6dd2255f478a18c58a2f52c8cd))
1034
- * rimuovere blocco maps da servizi ([#368](https://github.com/RedTurtle/design-comuni-plone-theme/issues/368)) ([b3ec883](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3ec883b827b4b0b6c26bdd14e5e9609c8b21685))
1035
- * styling and visual issues in CartellaModulisticaView on desktop and mobile ([#366](https://github.com/RedTurtle/design-comuni-plone-theme/issues/366)) ([5206265](https://github.com/RedTurtle/design-comuni-plone-theme/commit/520626517ffbd52ce88b65f13fe2768ce7381fd2))
1036
-
1204
+ - add pluggable custom validation for all datagrid fields, not just required ones and applied new validation to timeline_tempi_scadenze ([#357](https://github.com/RedTurtle/design-comuni-plone-theme/issues/357)) ([9c6f55c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9c6f55c7f72a0210b18c2ef3d25d078056fc8b9d))
1205
+ - do not show subsite footer banner when field is empty ([#356](https://github.com/RedTurtle/design-comuni-plone-theme/issues/356)) ([3d7bb92](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d7bb923b056620ec499c2f235bd2c64aaf13279))
1206
+ - icona link esterni in linea con il testo ([#355](https://github.com/RedTurtle/design-comuni-plone-theme/issues/355)) ([33635ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33635ecc80256051a597eacce87f047942781585))
1207
+ - object browser limit is now respected, add logic for deselection and conditional closing of ob in some cases ([#363](https://github.com/RedTurtle/design-comuni-plone-theme/issues/363)) ([f6e9c35](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f6e9c3565518914731b55543a0c2bc622b53f0d9))
1208
+ - outline color of search icon in header for subsites ([#358](https://github.com/RedTurtle/design-comuni-plone-theme/issues/358)) ([4fea6cd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4fea6cdab31d46e4d3c3386024a17067a8e8b94d))
1209
+ - overflow of vertical images in page view ([#364](https://github.com/RedTurtle/design-comuni-plone-theme/issues/364)) ([e584f63](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e584f6397d251b86fb5cc7ed27f4a22710052ffe))
1210
+ - overflowing help text in Numbers block sidebar ([#367](https://github.com/RedTurtle/design-comuni-plone-theme/issues/367)) ([ab68178](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ab68178ee9646cb7f6f36cdc0b32ebbd167565cc))
1211
+ - regression for default classes in SearchBlock view that were overflowing content into columns ([#369](https://github.com/RedTurtle/design-comuni-plone-theme/issues/369)) ([c82f886](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c82f8867508a978a4f6d69df452e68b05101a8ff))
1212
+ - removed unnecessary h3 in footer ([#360](https://github.com/RedTurtle/design-comuni-plone-theme/issues/360)) ([de2a9c1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/de2a9c1ac3820eac65279cce3041d370add12fee))
1213
+ - restore missing IconWidget and FontawesomeIcons ([#365](https://github.com/RedTurtle/design-comuni-plone-theme/issues/365)) ([fcd942c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fcd942cbfdaaef6dd2255f478a18c58a2f52c8cd))
1214
+ - rimuovere blocco maps da servizi ([#368](https://github.com/RedTurtle/design-comuni-plone-theme/issues/368)) ([b3ec883](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3ec883b827b4b0b6c26bdd14e5e9609c8b21685))
1215
+ - styling and visual issues in CartellaModulisticaView on desktop and mobile ([#366](https://github.com/RedTurtle/design-comuni-plone-theme/issues/366)) ([5206265](https://github.com/RedTurtle/design-comuni-plone-theme/commit/520626517ffbd52ce88b65f13fe2768ce7381fd2))
1037
1216
 
1038
1217
  ### Maintenance
1039
1218
 
1040
- * update git merge strategy for RELEASE.md ([e4d1db1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e4d1db1519746819aedab28a210ffe6f7fda332f))
1041
-
1219
+ - update git merge strategy for RELEASE.md ([e4d1db1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e4d1db1519746819aedab28a210ffe6f7fda332f))
1042
1220
 
1043
1221
  ### Documentation
1044
1222
 
1045
- * updated publiccode and release log ([310fb87](https://github.com/RedTurtle/design-comuni-plone-theme/commit/310fb87f4809ee920387e15b4fbb455ff2bd256b))
1223
+ - updated publiccode and release log ([310fb87](https://github.com/RedTurtle/design-comuni-plone-theme/commit/310fb87f4809ee920387e15b4fbb455ff2bd256b))
1046
1224
 
1047
1225
  ## [8.7.8](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.7...v8.7.8) (2023-10-12)
1048
1226
 
1049
-
1050
1227
  ### Bug Fixes
1051
1228
 
1052
- * avoid overlay of link more and dots in Calendar block ([d063a29](https://github.com/redturtle/design-comuni-plone-theme/commit/d063a294ebef9d4d5c87c2fc82893afc318518b7))
1053
-
1229
+ - avoid overlay of link more and dots in Calendar block ([d063a29](https://github.com/redturtle/design-comuni-plone-theme/commit/d063a294ebef9d4d5c87c2fc82893afc318518b7))
1054
1230
 
1055
1231
  ### Maintenance
1056
1232
 
1057
- * preparing release 8..7.8 ([b60c3d0](https://github.com/redturtle/design-comuni-plone-theme/commit/b60c3d0b63145bc07980c6f68ca9c9ac90be6d51))
1058
- * updated RELEASE.md ([e63045c](https://github.com/redturtle/design-comuni-plone-theme/commit/e63045c466b68e5fabde864e790007f55901bb57))
1233
+ - preparing release 8..7.8 ([b60c3d0](https://github.com/redturtle/design-comuni-plone-theme/commit/b60c3d0b63145bc07980c6f68ca9c9ac90be6d51))
1234
+ - updated RELEASE.md ([e63045c](https://github.com/redturtle/design-comuni-plone-theme/commit/e63045c466b68e5fabde864e790007f55901bb57))
1059
1235
 
1060
1236
  ## [8.7.7](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.6...v8.7.7) (2023-10-12)
1061
1237
 
1062
-
1063
1238
  ### Maintenance
1064
1239
 
1065
- * preparing release 8.7.7 ([1136269](https://github.com/redturtle/design-comuni-plone-theme/commit/1136269c2afd1de887d44c96edbe1fffcbdb990e))
1066
- * updated twitter icon ([#361](https://github.com/redturtle/design-comuni-plone-theme/issues/361)) ([ce75b74](https://github.com/redturtle/design-comuni-plone-theme/commit/ce75b74e5d2b7eccdb56456f7b474184483d3035))
1067
-
1068
-
1240
+ - preparing release 8.7.7 ([1136269](https://github.com/redturtle/design-comuni-plone-theme/commit/1136269c2afd1de887d44c96edbe1fffcbdb990e))
1241
+ - updated twitter icon ([#361](https://github.com/redturtle/design-comuni-plone-theme/issues/361)) ([ce75b74](https://github.com/redturtle/design-comuni-plone-theme/commit/ce75b74e5d2b7eccdb56456f7b474184483d3035))
1069
1242
 
1070
1243
  ## [8.7.6](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.5...v8.7.6) (2023-10-09)
1071
1244
 
1072
-
1073
1245
  ### Bug Fixes
1074
1246
 
1075
- * allineamento testo blocco elenco quadratoni ([#353](https://github.com/redturtle/design-comuni-plone-theme/issues/353)) ([79bdf64](https://github.com/redturtle/design-comuni-plone-theme/commit/79bdf64f0fff59dde7f31a573a0678d6f6e0331b))
1076
-
1247
+ - allineamento testo blocco elenco quadratoni ([#353](https://github.com/redturtle/design-comuni-plone-theme/issues/353)) ([79bdf64](https://github.com/redturtle/design-comuni-plone-theme/commit/79bdf64f0fff59dde7f31a573a0678d6f6e0331b))
1077
1248
 
1078
1249
  ### Maintenance
1079
1250
 
1080
- * preparing release 8.7.6 ([6a2c6a9](https://github.com/redturtle/design-comuni-plone-theme/commit/6a2c6a9405cc44f17c8a06cc198fc8490ddc6e6f))
1081
- * updated volto-data-grid-widget 2.2.3 ([47a6171](https://github.com/redturtle/design-comuni-plone-theme/commit/47a61712a6074c2b699bdddde90b4f489c3bc3d9))
1251
+ - preparing release 8.7.6 ([6a2c6a9](https://github.com/redturtle/design-comuni-plone-theme/commit/6a2c6a9405cc44f17c8a06cc198fc8490ddc6e6f))
1252
+ - updated volto-data-grid-widget 2.2.3 ([47a6171](https://github.com/redturtle/design-comuni-plone-theme/commit/47a61712a6074c2b699bdddde90b4f489c3bc3d9))
1082
1253
 
1083
1254
  ## [8.7.5](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.4...v8.7.5) (2023-10-05)
1084
1255
 
1085
-
1086
1256
  ### Maintenance
1087
1257
 
1088
- * preparing release 8.7.5 ([8c4a5d1](https://github.com/redturtle/design-comuni-plone-theme/commit/8c4a5d198eb2ef2976c9be9eaf90826bda7c7790))
1089
- * updated volto-data-grid-widget 2.2.2 ([1cb054d](https://github.com/redturtle/design-comuni-plone-theme/commit/1cb054d28ca4919dd1f447253033b83949a1ac23))
1258
+ - preparing release 8.7.5 ([8c4a5d1](https://github.com/redturtle/design-comuni-plone-theme/commit/8c4a5d198eb2ef2976c9be9eaf90826bda7c7790))
1259
+ - updated volto-data-grid-widget 2.2.2 ([1cb054d](https://github.com/redturtle/design-comuni-plone-theme/commit/1cb054d28ca4919dd1f447253033b83949a1ac23))
1090
1260
 
1091
1261
  ## [8.7.4](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.3...v8.7.4) (2023-10-05)
1092
1262
 
1093
-
1094
1263
  ### Maintenance
1095
1264
 
1096
- * preparing release 8.7.4 ([7627cfd](https://github.com/redturtle/design-comuni-plone-theme/commit/7627cfd5edfa2469b8ddc6d8ccc675486be082dc))
1265
+ - preparing release 8.7.4 ([7627cfd](https://github.com/redturtle/design-comuni-plone-theme/commit/7627cfd5edfa2469b8ddc6d8ccc675486be082dc))
1097
1266
 
1098
1267
  ## [8.7.3](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.2...v8.7.3) (2023-09-26)
1099
1268
 
1100
-
1101
1269
  ### Bug Fixes
1102
1270
 
1103
- * fix rsss CardWithImageTemplate view date ([d509471](https://github.com/redturtle/design-comuni-plone-theme/commit/d509471994cfc4be62b1f15c60b06388ff8e0a9c))
1104
-
1271
+ - fix rsss CardWithImageTemplate view date ([d509471](https://github.com/redturtle/design-comuni-plone-theme/commit/d509471994cfc4be62b1f15c60b06388ff8e0a9c))
1105
1272
 
1106
1273
  ### Maintenance
1107
1274
 
1108
- * preparing release 8.7.3 ([db663e6](https://github.com/redturtle/design-comuni-plone-theme/commit/db663e622df1e5756d7574a1288fd97ca30a3d8a))
1275
+ - preparing release 8.7.3 ([db663e6](https://github.com/redturtle/design-comuni-plone-theme/commit/db663e622df1e5756d7574a1288fd97ca30a3d8a))
1109
1276
 
1110
1277
  ## [8.7.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.2...v8.7.3) (2023-09-21)
1111
1278
 
1112
-
1113
1279
  ### Maintenance
1114
1280
 
1115
- * release v8.7.1 ([b201b34](https://github.com/redturtle/design-comuni-plone-theme/commit/b201b34043e3bc14dbca40492b909801b2bbaaad))
1281
+ - release v8.7.1 ([b201b34](https://github.com/redturtle/design-comuni-plone-theme/commit/b201b34043e3bc14dbca40492b909801b2bbaaad))
1116
1282
 
1117
1283
  ## [8.7.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.0...v8.7.2) (2023-09-21)
1118
1284
 
1119
-
1120
1285
  ### Maintenance
1121
1286
 
1122
- * added id in h2 title of some blocks to enable anchors ([#350](https://github.com/redturtle/design-comuni-plone-theme/issues/350)) ([e67e57a](https://github.com/redturtle/design-comuni-plone-theme/commit/e67e57a3f767f94377cae4605097977a0fa5021a))
1123
- * changed buplicode ([0cce8ff](https://github.com/redturtle/design-comuni-plone-theme/commit/0cce8ff3615b3cc3dd57a5b8715b050d18732679))
1124
- * manage release ([a79ecdf](https://github.com/redturtle/design-comuni-plone-theme/commit/a79ecdf629e1e2900662ed1d9c36ec1053085eaa))
1125
- * updated publicode ([cd8fc79](https://github.com/redturtle/design-comuni-plone-theme/commit/cd8fc791891105e69f7cbc7b8b14e19f0da71601))
1126
-
1287
+ - added id in h2 title of some blocks to enable anchors ([#350](https://github.com/redturtle/design-comuni-plone-theme/issues/350)) ([e67e57a](https://github.com/redturtle/design-comuni-plone-theme/commit/e67e57a3f767f94377cae4605097977a0fa5021a))
1288
+ - changed buplicode ([0cce8ff](https://github.com/redturtle/design-comuni-plone-theme/commit/0cce8ff3615b3cc3dd57a5b8715b050d18732679))
1289
+ - manage release ([a79ecdf](https://github.com/redturtle/design-comuni-plone-theme/commit/a79ecdf629e1e2900662ed1d9c36ec1053085eaa))
1290
+ - updated publicode ([cd8fc79](https://github.com/redturtle/design-comuni-plone-theme/commit/cd8fc791891105e69f7cbc7b8b14e19f0da71601))
1127
1291
 
1128
1292
  ## [8.7.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.6.0...v8.7.0) (2023-09-20)
1129
1293
 
1130
-
1131
1294
  ### Features
1132
1295
 
1133
- * Us 46339 link esterni smalllinksblock ([#339](https://github.com/RedTurtle/design-comuni-plone-theme/issues/339)) ([9d4ab47](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d4ab474390d934bbc92ad9a6527fcb44138ad3e))
1134
-
1296
+ - Us 46339 link esterni smalllinksblock ([#339](https://github.com/RedTurtle/design-comuni-plone-theme/issues/339)) ([9d4ab47](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d4ab474390d934bbc92ad9a6527fcb44138ad3e))
1135
1297
 
1136
1298
  ### Bug Fixes
1137
1299
 
1138
- * accessibility and SR fix for selectInput ([#345](https://github.com/RedTurtle/design-comuni-plone-theme/issues/345)) ([67adc6f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/67adc6fb222b72636a772153fb20dbbe70a17190))
1139
- * fix blocks Alert, Card Semplice, Card immagine, Accordion keyboa… ([#348](https://github.com/RedTurtle/design-comuni-plone-theme/issues/348)) ([bc93065](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc930651ed88c2ce8ba06c3d6b0a793418c2427a))
1140
- * fix Contact Block items align ([#338](https://github.com/RedTurtle/design-comuni-plone-theme/issues/338)) ([c2e9aaa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c2e9aaab1ea132ac043952deb37b3cd8843ec440))
1141
- * i link in modulistica devono far vedere la remoteUrl e non il link ([#336](https://github.com/RedTurtle/design-comuni-plone-theme/issues/336)) ([a311095](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3110953b2e99425e864eed8eeb870fe9eab3acb))
1142
-
1300
+ - accessibility and SR fix for selectInput ([#345](https://github.com/RedTurtle/design-comuni-plone-theme/issues/345)) ([67adc6f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/67adc6fb222b72636a772153fb20dbbe70a17190))
1301
+ - fix blocks Alert, Card Semplice, Card immagine, Accordion keyboa… ([#348](https://github.com/RedTurtle/design-comuni-plone-theme/issues/348)) ([bc93065](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc930651ed88c2ce8ba06c3d6b0a793418c2427a))
1302
+ - fix Contact Block items align ([#338](https://github.com/RedTurtle/design-comuni-plone-theme/issues/338)) ([c2e9aaa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c2e9aaab1ea132ac043952deb37b3cd8843ec440))
1303
+ - i link in modulistica devono far vedere la remoteUrl e non il link ([#336](https://github.com/RedTurtle/design-comuni-plone-theme/issues/336)) ([a311095](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3110953b2e99425e864eed8eeb870fe9eab3acb))
1143
1304
 
1144
1305
  ### Maintenance
1145
1306
 
1146
- * added title to release-log ([#347](https://github.com/RedTurtle/design-comuni-plone-theme/issues/347)) ([b04f947](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b04f947f48b0431acb5ebae1017f49fb9e1a5fcb))
1147
- * update files for release ([eed8929](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eed89299d8a13dea863ee9a8edbb08e298fbec19))
1148
- * updated locales ([9ef4dd3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9ef4dd38e52bd085c7f09a182addda06e0632254))
1149
- * updated publiccode ([6d46730](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6d467308c02bf2377adf5574e5d1a715f5f33072))
1150
- * updated RELEASE.md ([c8b4982](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8b49822f88cba8d8e3911e03e1b069306966591))
1151
- * updatedRELEASE.md ([4391e42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4391e42a3c908c1ed15693a548d06c05c9cb37fd))
1307
+ - added title to release-log ([#347](https://github.com/RedTurtle/design-comuni-plone-theme/issues/347)) ([b04f947](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b04f947f48b0431acb5ebae1017f49fb9e1a5fcb))
1308
+ - update files for release ([eed8929](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eed89299d8a13dea863ee9a8edbb08e298fbec19))
1309
+ - updated locales ([9ef4dd3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9ef4dd38e52bd085c7f09a182addda06e0632254))
1310
+ - updated publiccode ([6d46730](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6d467308c02bf2377adf5574e5d1a715f5f33072))
1311
+ - updated RELEASE.md ([c8b4982](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8b49822f88cba8d8e3911e03e1b069306966591))
1312
+ - updatedRELEASE.md ([4391e42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4391e42a3c908c1ed15693a548d06c05c9cb37fd))
1152
1313
 
1153
1314
  ## [8.6.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.5.1...v8.6.0) (2023-09-18)
1154
1315
 
1155
-
1156
1316
  ### Features
1157
1317
 
1158
- * added Release log ([#332](https://github.com/redturtle/design-comuni-plone-theme/issues/332)) ([d1f73d0](https://github.com/redturtle/design-comuni-plone-theme/commit/d1f73d033c54e4c5e9f6b8ec231e938d7bc97c8b))
1159
-
1318
+ - added Release log ([#332](https://github.com/redturtle/design-comuni-plone-theme/issues/332)) ([d1f73d0](https://github.com/redturtle/design-comuni-plone-theme/commit/d1f73d033c54e4c5e9f6b8ec231e938d7bc97c8b))
1160
1319
 
1161
1320
  ### Bug Fixes
1162
1321
 
1163
- * fix container in edit mode ([#328](https://github.com/redturtle/design-comuni-plone-theme/issues/328)) ([d52a02d](https://github.com/redturtle/design-comuni-plone-theme/commit/d52a02d7218d6ccfcfa13a1b66993887820f7114))
1322
+ - fix container in edit mode ([#328](https://github.com/redturtle/design-comuni-plone-theme/issues/328)) ([d52a02d](https://github.com/redturtle/design-comuni-plone-theme/commit/d52a02d7218d6ccfcfa13a1b66993887820f7114))
1164
1323
 
1165
1324
  ## [8.5.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.5.0...v8.5.1) (2023-09-18)
1166
1325
 
1167
-
1168
1326
  ### Bug Fixes
1169
1327
 
1170
- * added clear float to page sections ([#324](https://github.com/RedTurtle/design-comuni-plone-theme/issues/324)) ([7f1e46d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7f1e46d42b8cae11b04f68b3a01988c3e9226db7))
1171
- * fix cContacts block horizontal alignment ([#329](https://github.com/RedTurtle/design-comuni-plone-theme/issues/329)) ([b68ee5e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b68ee5e9901c81db0048dc2eb29f9611cdc3fb5a))
1172
- * fix Content in Evidence template when there's more than one item ([#327](https://github.com/RedTurtle/design-comuni-plone-theme/issues/327)) ([049f520](https://github.com/RedTurtle/design-comuni-plone-theme/commit/049f5205685d2010982cf4a990479f719142fadf))
1173
- * fix height of icons in Icons Block ([#330](https://github.com/RedTurtle/design-comuni-plone-theme/issues/330)) ([c77ada8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c77ada86763de62060f95b2fec52a824cbe76011))
1174
- * gridBlock edit overlapping when using 4 columns and adding image block ([#322](https://github.com/RedTurtle/design-comuni-plone-theme/issues/322)) ([018deb7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/018deb7081b3830df526304330349855e5b79d4d))
1175
- * load of locations data in LocationsMap ([#323](https://github.com/RedTurtle/design-comuni-plone-theme/issues/323)) ([093f08b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/093f08bcdb92c46053ec78878b1ed2e375efd2ff))
1176
- * slider a11y ([3d5bcc4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d5bcc485c6d280647712ad2d0e3ccf6b8c4974a))
1177
- * updated volto-dropdownmenu to remove upload image when editing dropdownmenu blocks ([#331](https://github.com/RedTurtle/design-comuni-plone-theme/issues/331)) ([2c5605f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2c5605f3be09632c923196eedc166485c15b04a3))
1178
-
1328
+ - added clear float to page sections ([#324](https://github.com/RedTurtle/design-comuni-plone-theme/issues/324)) ([7f1e46d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7f1e46d42b8cae11b04f68b3a01988c3e9226db7))
1329
+ - fix cContacts block horizontal alignment ([#329](https://github.com/RedTurtle/design-comuni-plone-theme/issues/329)) ([b68ee5e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b68ee5e9901c81db0048dc2eb29f9611cdc3fb5a))
1330
+ - fix Content in Evidence template when there's more than one item ([#327](https://github.com/RedTurtle/design-comuni-plone-theme/issues/327)) ([049f520](https://github.com/RedTurtle/design-comuni-plone-theme/commit/049f5205685d2010982cf4a990479f719142fadf))
1331
+ - fix height of icons in Icons Block ([#330](https://github.com/RedTurtle/design-comuni-plone-theme/issues/330)) ([c77ada8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c77ada86763de62060f95b2fec52a824cbe76011))
1332
+ - gridBlock edit overlapping when using 4 columns and adding image block ([#322](https://github.com/RedTurtle/design-comuni-plone-theme/issues/322)) ([018deb7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/018deb7081b3830df526304330349855e5b79d4d))
1333
+ - load of locations data in LocationsMap ([#323](https://github.com/RedTurtle/design-comuni-plone-theme/issues/323)) ([093f08b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/093f08bcdb92c46053ec78878b1ed2e375efd2ff))
1334
+ - slider a11y ([3d5bcc4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d5bcc485c6d280647712ad2d0e3ccf6b8c4974a))
1335
+ - updated volto-dropdownmenu to remove upload image when editing dropdownmenu blocks ([#331](https://github.com/RedTurtle/design-comuni-plone-theme/issues/331)) ([2c5605f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2c5605f3be09632c923196eedc166485c15b04a3))
1179
1336
 
1180
1337
  ### Documentation
1181
1338
 
1182
- * updated publiccode ([55e59c7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/55e59c7822ca93330c4d509461d0cd32a9b2ea0b))
1339
+ - updated publiccode ([55e59c7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/55e59c7822ca93330c4d509461d0cd32a9b2ea0b))
1183
1340
 
1184
1341
  ## [8.5.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.6...v8.5.0) (2023-09-05)
1185
1342
 
1186
-
1187
1343
  ### Features
1188
1344
 
1189
- * added pec to office card info ([#312](https://github.com/RedTurtle/design-comuni-plone-theme/issues/312)) ([a555954](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a555954bbd482f27c711ac314aeda45e01537b06))
1190
-
1345
+ - added pec to office card info ([#312](https://github.com/RedTurtle/design-comuni-plone-theme/issues/312)) ([a555954](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a555954bbd482f27c711ac314aeda45e01537b06))
1191
1346
 
1192
1347
  ### Bug Fixes
1193
1348
 
1194
- * fixed videogallery template block and standardized slider styles ([#301](https://github.com/RedTurtle/design-comuni-plone-theme/issues/301)) ([9abe515](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9abe51584c631a75c6145944f8a14a0c187dd625))
1195
- * incorrect logic for determining if search is ongoing, less layout shifts ([#313](https://github.com/RedTurtle/design-comuni-plone-theme/issues/313)) ([69bc749](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69bc74963760caf6465bdf7cc6e64c0413d8d655))
1196
- * mantiene la querystring nel came_from della login ([#315](https://github.com/RedTurtle/design-comuni-plone-theme/issues/315)) ([5313e8b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5313e8b4bbcc54b492e07876abf5dc607d5b118b))
1197
- * mostra tutti i campi incarico della persona ([#311](https://github.com/RedTurtle/design-comuni-plone-theme/issues/311)) ([bd9afa2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bd9afa284f84202fece2f95c6664406bb605d66e))
1198
- * querystring results with additional filters in listing blocks ([#317](https://github.com/RedTurtle/design-comuni-plone-theme/issues/317)) ([ba52c7f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ba52c7f22b98baf4373ac580cd0a0441dc60ad01))
1199
- * revert SSR redirect backport https://github.com/plone/volto/pull/4854 ([#306](https://github.com/RedTurtle/design-comuni-plone-theme/issues/306)) ([ce80334](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ce803342595693b819e9185990ea4e45777fa055))
1200
-
1349
+ - fixed videogallery template block and standardized slider styles ([#301](https://github.com/RedTurtle/design-comuni-plone-theme/issues/301)) ([9abe515](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9abe51584c631a75c6145944f8a14a0c187dd625))
1350
+ - incorrect logic for determining if search is ongoing, less layout shifts ([#313](https://github.com/RedTurtle/design-comuni-plone-theme/issues/313)) ([69bc749](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69bc74963760caf6465bdf7cc6e64c0413d8d655))
1351
+ - mantiene la querystring nel came_from della login ([#315](https://github.com/RedTurtle/design-comuni-plone-theme/issues/315)) ([5313e8b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5313e8b4bbcc54b492e07876abf5dc607d5b118b))
1352
+ - mostra tutti i campi incarico della persona ([#311](https://github.com/RedTurtle/design-comuni-plone-theme/issues/311)) ([bd9afa2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bd9afa284f84202fece2f95c6664406bb605d66e))
1353
+ - querystring results with additional filters in listing blocks ([#317](https://github.com/RedTurtle/design-comuni-plone-theme/issues/317)) ([ba52c7f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ba52c7f22b98baf4373ac580cd0a0441dc60ad01))
1354
+ - revert SSR redirect backport https://github.com/plone/volto/pull/4854 ([#306](https://github.com/RedTurtle/design-comuni-plone-theme/issues/306)) ([ce80334](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ce803342595693b819e9185990ea4e45777fa055))
1201
1355
 
1202
1356
  ### Documentation
1203
1357
 
1204
- * updated publiccode ([973363a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/973363a7ca46654cf79a1cfd7e9151cb97c77221))
1358
+ - updated publiccode ([973363a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/973363a7ca46654cf79a1cfd7e9151cb97c77221))
1205
1359
 
1206
1360
  ## [8.4.6](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.5...v8.4.6) (2023-08-31)
1207
1361
 
1208
-
1209
1362
  ### Bug Fixes
1210
1363
 
1211
- * changed conditions for campo importi in CT persona ([65931ac](https://github.com/redturtle/design-comuni-plone-theme/commit/65931acb8d1d8a6e12444067573380b639f03291))
1364
+ - changed conditions for campo importi in CT persona ([65931ac](https://github.com/redturtle/design-comuni-plone-theme/commit/65931acb8d1d8a6e12444067573380b639f03291))
1212
1365
 
1213
1366
  ## [8.4.5](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.4...v8.4.5) (2023-08-30)
1214
1367
 
1215
-
1216
1368
  ### Bug Fixes
1217
1369
 
1218
- * changed conditions for campo compensi in CT persona ([8b2c7c0](https://github.com/redturtle/design-comuni-plone-theme/commit/8b2c7c0ea2e2a8539c3e8ca16077d74539bc6f5d))
1370
+ - changed conditions for campo compensi in CT persona ([8b2c7c0](https://github.com/redturtle/design-comuni-plone-theme/commit/8b2c7c0ea2e2a8539c3e8ca16077d74539bc6f5d))
1219
1371
 
1220
1372
  ## [8.4.4](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.4.3...v8.4.4) (2023-08-30)
1221
1373
 
1222
-
1223
1374
  ### Bug Fixes
1224
1375
 
1225
- * removed link from last breadcrumb element ([a10237b](https://github.com/redturtle/design-comuni-plone-theme/commit/a10237bf697f84d12c0a95045f7203278e3cb42e))
1376
+ - removed link from last breadcrumb element ([a10237b](https://github.com/redturtle/design-comuni-plone-theme/commit/a10237bf697f84d12c0a95045f7203278e3cb42e))
1226
1377
 
1227
1378
  ## [8.4.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.2...v8.4.3) (2023-08-25)
1228
1379
 
1229
-
1230
1380
  ### Bug Fixes
1231
1381
 
1232
- * fix querystringresults to work properly in megamenu ([#304](https://github.com/RedTurtle/design-comuni-plone-theme/issues/304)) ([79687c0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79687c0c75846b5bbe40dab509ccb0cbad6aa10f))
1233
-
1382
+ - fix querystringresults to work properly in megamenu ([#304](https://github.com/RedTurtle/design-comuni-plone-theme/issues/304)) ([79687c0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79687c0c75846b5bbe40dab509ccb0cbad6aa10f))
1234
1383
 
1235
1384
  ### Documentation
1236
1385
 
1237
- * updated publiccode ([ff9f57b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ff9f57b5c07411835b2d6cf5cc20c78858faa182))
1386
+ - updated publiccode ([ff9f57b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ff9f57b5c07411835b2d6cf5cc20c78858faa182))
1238
1387
 
1239
1388
  ## [8.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.1...v8.4.2) (2023-08-24)
1240
1389
 
1241
-
1242
1390
  ### Bug Fixes
1243
1391
 
1244
- * more external url fixes for images ([dc6da3a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dc6da3ac832bec31c372cc854ff6b199df32273e))
1245
-
1392
+ - more external url fixes for images ([dc6da3a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dc6da3ac832bec31c372cc854ff6b199df32273e))
1246
1393
 
1247
1394
  ### Documentation
1248
1395
 
1249
- * updated publiccode ([ad343ef](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ad343ef38c2d893c7ec7222c2e24baa7139ef4aa))
1396
+ - updated publiccode ([ad343ef](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ad343ef38c2d893c7ec7222c2e24baa7139ef4aa))
1250
1397
 
1251
1398
  ## [8.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.4.0...v8.4.1) (2023-08-24)
1252
1399
 
1253
-
1254
1400
  ### Bug Fixes
1255
1401
 
1256
- * external urls in images ([39429d6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/39429d6b7b361f78c05e41f35d71e4b3184092dc))
1257
-
1402
+ - external urls in images ([39429d6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/39429d6b7b361f78c05e41f35d71e4b3184092dc))
1258
1403
 
1259
1404
  ### Documentation
1260
1405
 
1261
- * updated publiccode ([21170fd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/21170fdf50ff47f91d37c3dd0b5f11f97a94e6db))
1406
+ - updated publiccode ([21170fd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/21170fdf50ff47f91d37c3dd0b5f11f97a94e6db))
1262
1407
 
1263
1408
  ## [8.4.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.3.2...v8.4.0) (2023-08-24)
1264
1409
 
1265
-
1266
1410
  ### Features
1267
1411
 
1268
- * a11y for Slider listing template ([#235](https://github.com/RedTurtle/design-comuni-plone-theme/issues/235)) ([0bb636d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0bb636ddaaa7e213e643ac04ba4a99a3b654abe3))
1269
- * add optional custom path to feedbackform ([#285](https://github.com/RedTurtle/design-comuni-plone-theme/issues/285)) ([af41470](https://github.com/RedTurtle/design-comuni-plone-theme/commit/af414709d82a145ea9bef8378efe1b3e91482582))
1270
- * added last element to breadcrumbs for guidelines compat ([#295](https://github.com/RedTurtle/design-comuni-plone-theme/issues/295)) ([badea90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/badea905a588e9b5d4620b4a212befde08055781))
1271
- * added legal-notes to subfooter data-elements ([653263e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/653263ebf909fb9f3449ad0444d2d22dca1eb6a1))
1272
- * added new relation fields in persona view ([#293](https://github.com/RedTurtle/design-comuni-plone-theme/issues/293)) ([d253476](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d2534766bac8d457791ca0f4dcaa7ad4ea8a15d4))
1273
- * aggiunti allegati da incarico delle persone ([#288](https://github.com/RedTurtle/design-comuni-plone-theme/issues/288)) ([86352b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/86352b775da6075514556ae5067eb7a54cb82d91))
1274
-
1412
+ - a11y for Slider listing template ([#235](https://github.com/RedTurtle/design-comuni-plone-theme/issues/235)) ([0bb636d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0bb636ddaaa7e213e643ac04ba4a99a3b654abe3))
1413
+ - add optional custom path to feedbackform ([#285](https://github.com/RedTurtle/design-comuni-plone-theme/issues/285)) ([af41470](https://github.com/RedTurtle/design-comuni-plone-theme/commit/af414709d82a145ea9bef8378efe1b3e91482582))
1414
+ - added last element to breadcrumbs for guidelines compat ([#295](https://github.com/RedTurtle/design-comuni-plone-theme/issues/295)) ([badea90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/badea905a588e9b5d4620b4a212befde08055781))
1415
+ - added legal-notes to subfooter data-elements ([653263e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/653263ebf909fb9f3449ad0444d2d22dca1eb6a1))
1416
+ - added new relation fields in persona view ([#293](https://github.com/RedTurtle/design-comuni-plone-theme/issues/293)) ([d253476](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d2534766bac8d457791ca0f4dcaa7ad4ea8a15d4))
1417
+ - aggiunti allegati da incarico delle persone ([#288](https://github.com/RedTurtle/design-comuni-plone-theme/issues/288)) ([86352b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/86352b775da6075514556ae5067eb7a54cb82d91))
1275
1418
 
1276
1419
  ### Bug Fixes
1277
1420
 
1278
- * backport prs 4854 and 5069 from latest core volto ([#297](https://github.com/RedTurtle/design-comuni-plone-theme/issues/297)) ([60df809](https://github.com/RedTurtle/design-comuni-plone-theme/commit/60df809ebb40ef3326098dc3a21348aff88a4aa4))
1279
- * eu pnrr loro is now as big as site logo in the footer ([#296](https://github.com/RedTurtle/design-comuni-plone-theme/issues/296)) ([ab59406](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ab5940653fa4c4350e2cb99fd025d365b06a43ce))
1280
- * focus color on all buttons ([#246](https://github.com/RedTurtle/design-comuni-plone-theme/issues/246)) ([fb71407](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fb714075260d4e72fa92ef6995769be742f8a30a))
1281
- * focus styles for single select options ([#287](https://github.com/RedTurtle/design-comuni-plone-theme/issues/287)) ([ce29d43](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ce29d433f4beffaa7d38cbd3f7fadf338bf6c1e8))
1282
- * image block aligned left or right overlay on the block chooser ([#291](https://github.com/RedTurtle/design-comuni-plone-theme/issues/291)) ([5e587dc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e587dc070b0f5631a9f570da8657f34cfbe13f9))
1283
- * image block alignment with text when align is left or right ([#292](https://github.com/RedTurtle/design-comuni-plone-theme/issues/292)) ([1d2b74c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1d2b74c24683a59468d613d056c653c683148568))
1284
- * locales ([ac9aaaa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac9aaaaee87b3973014dca5a5cfbcaa358592c66))
1285
- * pagination param in site search ([#294](https://github.com/RedTurtle/design-comuni-plone-theme/issues/294)) ([540e45d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/540e45deb9ad99de37f81a3ddfd3866f1e07b880))
1286
- * remove Contact link in unauthorized error page ([#298](https://github.com/RedTurtle/design-comuni-plone-theme/issues/298)) ([325bc0b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/325bc0b2ddcfd235a9ff9db70682c19b8588fcdf))
1287
- * search modal focus styles and focus handling for keyboard navigation ([#215](https://github.com/RedTurtle/design-comuni-plone-theme/issues/215)) ([46eb7a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/46eb7a43462d54efc2363b95a73f893dd23500f8))
1288
- * TOC block links ([#272](https://github.com/RedTurtle/design-comuni-plone-theme/issues/272)) ([d185b48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d185b48ba8865a2776481d6f6c06f22dc57d6151))
1289
-
1421
+ - backport prs 4854 and 5069 from latest core volto ([#297](https://github.com/RedTurtle/design-comuni-plone-theme/issues/297)) ([60df809](https://github.com/RedTurtle/design-comuni-plone-theme/commit/60df809ebb40ef3326098dc3a21348aff88a4aa4))
1422
+ - eu pnrr loro is now as big as site logo in the footer ([#296](https://github.com/RedTurtle/design-comuni-plone-theme/issues/296)) ([ab59406](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ab5940653fa4c4350e2cb99fd025d365b06a43ce))
1423
+ - focus color on all buttons ([#246](https://github.com/RedTurtle/design-comuni-plone-theme/issues/246)) ([fb71407](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fb714075260d4e72fa92ef6995769be742f8a30a))
1424
+ - focus styles for single select options ([#287](https://github.com/RedTurtle/design-comuni-plone-theme/issues/287)) ([ce29d43](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ce29d433f4beffaa7d38cbd3f7fadf338bf6c1e8))
1425
+ - image block aligned left or right overlay on the block chooser ([#291](https://github.com/RedTurtle/design-comuni-plone-theme/issues/291)) ([5e587dc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e587dc070b0f5631a9f570da8657f34cfbe13f9))
1426
+ - image block alignment with text when align is left or right ([#292](https://github.com/RedTurtle/design-comuni-plone-theme/issues/292)) ([1d2b74c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1d2b74c24683a59468d613d056c653c683148568))
1427
+ - locales ([ac9aaaa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac9aaaaee87b3973014dca5a5cfbcaa358592c66))
1428
+ - pagination param in site search ([#294](https://github.com/RedTurtle/design-comuni-plone-theme/issues/294)) ([540e45d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/540e45deb9ad99de37f81a3ddfd3866f1e07b880))
1429
+ - remove Contact link in unauthorized error page ([#298](https://github.com/RedTurtle/design-comuni-plone-theme/issues/298)) ([325bc0b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/325bc0b2ddcfd235a9ff9db70682c19b8588fcdf))
1430
+ - search modal focus styles and focus handling for keyboard navigation ([#215](https://github.com/RedTurtle/design-comuni-plone-theme/issues/215)) ([46eb7a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/46eb7a43462d54efc2363b95a73f893dd23500f8))
1431
+ - TOC block links ([#272](https://github.com/RedTurtle/design-comuni-plone-theme/issues/272)) ([d185b48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d185b48ba8865a2776481d6f6c06f22dc57d6151))
1290
1432
 
1291
1433
  ### Documentation
1292
1434
 
1293
- * updated publiccode ([66433b3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66433b363344b90df6ba596ad70e2c1c1dc69a14))
1435
+ - updated publiccode ([66433b3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66433b363344b90df6ba596ad70e2c1c1dc69a14))
1294
1436
 
1295
1437
  ## [8.3.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.3.1...v8.3.2) (2023-08-18)
1296
1438
 
1297
-
1298
1439
  ### Bug Fixes
1299
1440
 
1300
- * actually use color variable for privacy link in cookie banner ([711efed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/711efed3b9d67d5414bdba5ccf86161fe152943e))
1301
- * focus styles on search button ([#281](https://github.com/RedTurtle/design-comuni-plone-theme/issues/281)) ([d3cddee](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d3cddee4cdfd2fed9bd230b036b29a057851bf25))
1302
- * webp static imports in jsx code ([b1ab875](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1ab87519b9fb29fcd05edb2bddc3c953b805957))
1303
-
1441
+ - actually use color variable for privacy link in cookie banner ([711efed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/711efed3b9d67d5414bdba5ccf86161fe152943e))
1442
+ - focus styles on search button ([#281](https://github.com/RedTurtle/design-comuni-plone-theme/issues/281)) ([d3cddee](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d3cddee4cdfd2fed9bd230b036b29a057851bf25))
1443
+ - webp static imports in jsx code ([b1ab875](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1ab87519b9fb29fcd05edb2bddc3c953b805957))
1304
1444
 
1305
1445
  ### Documentation
1306
1446
 
1307
- * updated publiccode ([a2d8fb5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a2d8fb5efe1cf2a813efe44189d98dc9d516d705))
1447
+ - updated publiccode ([a2d8fb5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a2d8fb5efe1cf2a813efe44189d98dc9d516d705))
1308
1448
 
1309
1449
  ## [8.3.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.3.0...v8.3.1) (2023-08-10)
1310
1450
 
1311
-
1312
1451
  ### Bug Fixes
1313
1452
 
1314
- * card persona images now have fixed size ([#275](https://github.com/RedTurtle/design-comuni-plone-theme/issues/275)) ([cfbdbc8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cfbdbc8c458036864dd5c6c02fa35e85fc87fc63))
1315
- * event card in listing breaking with invalid dates ([94aa154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/94aa154e02f1a48f2afb9757d43767fea5c1f01a))
1316
- * event dates in cards when recurrence is entirely in the past ([#277](https://github.com/RedTurtle/design-comuni-plone-theme/issues/277)) ([5c45415](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5c4541529e276693a7d145d99dfbd6a291a52796))
1317
- * focus on cookie banner toggles ([#282](https://github.com/RedTurtle/design-comuni-plone-theme/issues/282)) ([ccc3c73](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ccc3c7324263058916cbe053131be6ae1add7ea0))
1318
- * querystring results when block ids are the same on different pages ([#278](https://github.com/RedTurtle/design-comuni-plone-theme/issues/278)) ([71db4d3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/71db4d30b2ac0faa0dbe1e06302ceb20b81f5b1c))
1319
- * restored full-width class to listing block ([#280](https://github.com/RedTurtle/design-comuni-plone-theme/issues/280)) ([d19c08a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d19c08a29cefe3b4a482e3b2546e71f3c4bf0604))
1320
- * wrong layout for external link indicator icon if objects are Plone Links in anonimous view ([#270](https://github.com/RedTurtle/design-comuni-plone-theme/issues/270)) ([4bbb741](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4bbb74110659144e4f398e54b10b9c66b2c41f7a))
1321
-
1453
+ - card persona images now have fixed size ([#275](https://github.com/RedTurtle/design-comuni-plone-theme/issues/275)) ([cfbdbc8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cfbdbc8c458036864dd5c6c02fa35e85fc87fc63))
1454
+ - event card in listing breaking with invalid dates ([94aa154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/94aa154e02f1a48f2afb9757d43767fea5c1f01a))
1455
+ - event dates in cards when recurrence is entirely in the past ([#277](https://github.com/RedTurtle/design-comuni-plone-theme/issues/277)) ([5c45415](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5c4541529e276693a7d145d99dfbd6a291a52796))
1456
+ - focus on cookie banner toggles ([#282](https://github.com/RedTurtle/design-comuni-plone-theme/issues/282)) ([ccc3c73](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ccc3c7324263058916cbe053131be6ae1add7ea0))
1457
+ - querystring results when block ids are the same on different pages ([#278](https://github.com/RedTurtle/design-comuni-plone-theme/issues/278)) ([71db4d3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/71db4d30b2ac0faa0dbe1e06302ceb20b81f5b1c))
1458
+ - restored full-width class to listing block ([#280](https://github.com/RedTurtle/design-comuni-plone-theme/issues/280)) ([d19c08a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d19c08a29cefe3b4a482e3b2546e71f3c4bf0604))
1459
+ - wrong layout for external link indicator icon if objects are Plone Links in anonimous view ([#270](https://github.com/RedTurtle/design-comuni-plone-theme/issues/270)) ([4bbb741](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4bbb74110659144e4f398e54b10b9c66b2c41f7a))
1322
1460
 
1323
1461
  ### Maintenance
1324
1462
 
1325
- * deploy to rancher disabled ([d924ef1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d924ef133380d2e7b890483bf0c519ecf4c07a78))
1326
-
1463
+ - deploy to rancher disabled ([d924ef1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d924ef133380d2e7b890483bf0c519ecf4c07a78))
1327
1464
 
1328
1465
  ### Documentation
1329
1466
 
1330
- * updated publiccode ([c8769d2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8769d20088300e59b1d0fef70319b4416ef4a97))
1467
+ - updated publiccode ([c8769d2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8769d20088300e59b1d0fef70319b4416ef4a97))
1331
1468
 
1332
1469
  ## [8.3.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.2.1...v8.3.0) (2023-08-04)
1333
1470
 
1334
-
1335
1471
  ### Features
1336
1472
 
1337
- * coherent description in card persona everywhere ([#273](https://github.com/RedTurtle/design-comuni-plone-theme/issues/273)) ([137fdd5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/137fdd5a17d36ccb67c736467761d645f446d116))
1338
- * rimosso link a form contatto, aggiunto link a motore di ricerca del sito ([#269](https://github.com/RedTurtle/design-comuni-plone-theme/issues/269)) ([6793855](https://github.com/RedTurtle/design-comuni-plone-theme/commit/67938552ba8829c383757d8415c24861ce729b88))
1339
- * upgrade to volto alpha.19 ([02e3096](https://github.com/RedTurtle/design-comuni-plone-theme/commit/02e3096c61331cb5137003c2782fa07aaed23c32))
1340
-
1473
+ - coherent description in card persona everywhere ([#273](https://github.com/RedTurtle/design-comuni-plone-theme/issues/273)) ([137fdd5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/137fdd5a17d36ccb67c736467761d645f446d116))
1474
+ - rimosso link a form contatto, aggiunto link a motore di ricerca del sito ([#269](https://github.com/RedTurtle/design-comuni-plone-theme/issues/269)) ([6793855](https://github.com/RedTurtle/design-comuni-plone-theme/commit/67938552ba8829c383757d8415c24861ce729b88))
1475
+ - upgrade to volto alpha.19 ([02e3096](https://github.com/RedTurtle/design-comuni-plone-theme/commit/02e3096c61331cb5137003c2782fa07aaed23c32))
1341
1476
 
1342
1477
  ### Bug Fixes
1343
1478
 
1344
- * equal height for card persona in uo people ([#276](https://github.com/RedTurtle/design-comuni-plone-theme/issues/276)) ([3a5e8d1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3a5e8d1672b5700e3d1097f43588ecff86efaff1))
1345
- * height of accessibility icon for external links ([#268](https://github.com/RedTurtle/design-comuni-plone-theme/issues/268)) ([8714eb2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8714eb29ad7a05b6f40058dfdf315e046dff00ef))
1346
- * optional chaining for pdc data in OfficeCard ([#274](https://github.com/RedTurtle/design-comuni-plone-theme/issues/274)) ([88ec896](https://github.com/RedTurtle/design-comuni-plone-theme/commit/88ec896ae9cbbc357ccb8d7a69977562aef3ab1a))
1347
- * z-index moved to a generic block ([#265](https://github.com/RedTurtle/design-comuni-plone-theme/issues/265)) ([c0d729c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c0d729ceaf50021f5752bfbb961124c3e03e7133))
1348
-
1479
+ - equal height for card persona in uo people ([#276](https://github.com/RedTurtle/design-comuni-plone-theme/issues/276)) ([3a5e8d1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3a5e8d1672b5700e3d1097f43588ecff86efaff1))
1480
+ - height of accessibility icon for external links ([#268](https://github.com/RedTurtle/design-comuni-plone-theme/issues/268)) ([8714eb2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8714eb29ad7a05b6f40058dfdf315e046dff00ef))
1481
+ - optional chaining for pdc data in OfficeCard ([#274](https://github.com/RedTurtle/design-comuni-plone-theme/issues/274)) ([88ec896](https://github.com/RedTurtle/design-comuni-plone-theme/commit/88ec896ae9cbbc357ccb8d7a69977562aef3ab1a))
1482
+ - z-index moved to a generic block ([#265](https://github.com/RedTurtle/design-comuni-plone-theme/issues/265)) ([c0d729c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c0d729ceaf50021f5752bfbb961124c3e03e7133))
1349
1483
 
1350
1484
  ### Documentation
1351
1485
 
1352
- * updated publiccode ([6329a9b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6329a9b3f47cc43d4958155db52529ce25f16807))
1486
+ - updated publiccode ([6329a9b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6329a9b3f47cc43d4958155db52529ce25f16807))
1353
1487
 
1354
1488
  ## [8.2.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.2.0...v8.2.1) (2023-07-27)
1355
1489
 
1356
-
1357
1490
  ### Bug Fixes
1358
1491
 
1359
- * fix LinkEntity error on create link in WysWidget and in edit ([ce16c45](https://github.com/redturtle/design-comuni-plone-theme/commit/ce16c45f0894ce1853f0185c859f85d82ec2d847))
1360
-
1492
+ - fix LinkEntity error on create link in WysWidget and in edit ([ce16c45](https://github.com/redturtle/design-comuni-plone-theme/commit/ce16c45f0894ce1853f0185c859f85d82ec2d847))
1361
1493
 
1362
1494
  ### Documentation
1363
1495
 
1364
- * updated publiccode ([d6affcf](https://github.com/redturtle/design-comuni-plone-theme/commit/d6affcf7f1241c4d338e40907747f93c57716343))
1365
- * updated publiccode ([12ce260](https://github.com/redturtle/design-comuni-plone-theme/commit/12ce2605354b0a380ce83d0285e33e1b75bdb5a8))
1496
+ - updated publiccode ([d6affcf](https://github.com/redturtle/design-comuni-plone-theme/commit/d6affcf7f1241c4d338e40907747f93c57716343))
1497
+ - updated publiccode ([12ce260](https://github.com/redturtle/design-comuni-plone-theme/commit/12ce2605354b0a380ce83d0285e33e1b75bdb5a8))
1366
1498
 
1367
1499
  ## [8.2.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.1.0...v8.2.0) (2023-07-26)
1368
1500
 
1369
-
1370
1501
  ### Features
1371
1502
 
1372
- * make config.settings.italiaThemeViewsConfig extensible from addons ([#257](https://github.com/RedTurtle/design-comuni-plone-theme/issues/257)) ([5b17faf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b17faf33c6ca3b0d8cc0091801ef8601cc8dd38))
1373
-
1503
+ - make config.settings.italiaThemeViewsConfig extensible from addons ([#257](https://github.com/RedTurtle/design-comuni-plone-theme/issues/257)) ([5b17faf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b17faf33c6ca3b0d8cc0091801ef8601cc8dd38))
1374
1504
 
1375
1505
  ### Bug Fixes
1376
1506
 
1377
- * display listing bg_color ([#261](https://github.com/RedTurtle/design-comuni-plone-theme/issues/261)) ([5b973c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b973c3d82979db8710432abf0ed90c01bb71cc5))
1378
- * FontAwesomeIcon rendering for both array and string formats ([#256](https://github.com/RedTurtle/design-comuni-plone-theme/issues/256)) ([06eac0e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/06eac0e764156faec99f884f5b4d6bc79d9a168f))
1507
+ - display listing bg_color ([#261](https://github.com/RedTurtle/design-comuni-plone-theme/issues/261)) ([5b973c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b973c3d82979db8710432abf0ed90c01bb71cc5))
1508
+ - FontAwesomeIcon rendering for both array and string formats ([#256](https://github.com/RedTurtle/design-comuni-plone-theme/issues/256)) ([06eac0e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/06eac0e764156faec99f884f5b4d6bc79d9a168f))
1379
1509
 
1380
1510
  ## [8.1.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.3...v8.1.0) (2023-07-20)
1381
1511
 
1382
-
1383
1512
  ### Features
1384
1513
 
1385
- * add icon to external links for accessibility, configurable in theme settings ([#250](https://github.com/RedTurtle/design-comuni-plone-theme/issues/250)) ([cecc025](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cecc0258a8336c0968fa906b29ecb97a8d541749))
1386
-
1514
+ - add icon to external links for accessibility, configurable in theme settings ([#250](https://github.com/RedTurtle/design-comuni-plone-theme/issues/250)) ([cecc025](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cecc0258a8336c0968fa906b29ecb97a8d541749))
1387
1515
 
1388
1516
  ### Bug Fixes
1389
1517
 
1390
- * a11y title in external links ([a9bd127](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a9bd127f45db0af8593d4ac60fe03eba702e4038))
1391
- * card persona styles ([2f10bde](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f10bde3bd590e74a25bb09b6ae968aac1562a08))
1392
- * changed title of Altri Documenti section to Documenti ([#253](https://github.com/RedTurtle/design-comuni-plone-theme/issues/253)) ([2f84496](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f84496382dbc343bea959e6e326e9607a724670))
1393
- * error while cherry-picking changes from v2 ([8d30c6f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8d30c6f9c01bca136beb477ba1dfc1ec9c5db790))
1394
- * upgrade volto-data-grid-widget to 2.2.1 ([08bff18](https://github.com/RedTurtle/design-comuni-plone-theme/commit/08bff189d49e127545eaf98067554dd2ed8d6171))
1395
-
1518
+ - a11y title in external links ([a9bd127](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a9bd127f45db0af8593d4ac60fe03eba702e4038))
1519
+ - card persona styles ([2f10bde](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f10bde3bd590e74a25bb09b6ae968aac1562a08))
1520
+ - changed title of Altri Documenti section to Documenti ([#253](https://github.com/RedTurtle/design-comuni-plone-theme/issues/253)) ([2f84496](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f84496382dbc343bea959e6e326e9607a724670))
1521
+ - error while cherry-picking changes from v2 ([8d30c6f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8d30c6f9c01bca136beb477ba1dfc1ec9c5db790))
1522
+ - upgrade volto-data-grid-widget to 2.2.1 ([08bff18](https://github.com/RedTurtle/design-comuni-plone-theme/commit/08bff189d49e127545eaf98067554dd2ed8d6171))
1396
1523
 
1397
1524
  ### Documentation
1398
1525
 
1399
- * updated publiccode ([f27748c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f27748c57d1c1dea5dec20ba73b04e095fe4e259))
1400
-
1526
+ - updated publiccode ([f27748c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f27748c57d1c1dea5dec20ba73b04e095fe4e259))
1401
1527
 
1402
1528
  ### Maintenance
1403
1529
 
1404
- * update linters config ([9c4b548](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9c4b548b1dcfcda688d4b4229ad3bb339aacda91))
1405
- * updated peer dep to volto 17.0.0-alpha.19 ([50625e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/50625e6e1314201b18357fd821b82499e6f607c4))
1530
+ - update linters config ([9c4b548](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9c4b548b1dcfcda688d4b4229ad3bb339aacda91))
1531
+ - updated peer dep to volto 17.0.0-alpha.19 ([50625e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/50625e6e1314201b18357fd821b82499e6f607c4))
1406
1532
 
1407
1533
  ## [8.0.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.2...v8.0.3) (2023-07-14)
1408
1534
 
1409
-
1410
1535
  ### Bug Fixes
1411
1536
 
1412
- * added condition to SimpleCardTemplate for the effective/modified dates ([#251](https://github.com/RedTurtle/design-comuni-plone-theme/issues/251)) ([d578ffa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d578ffae3dcab1d4e73174762b6507288a93f9e6))
1413
- * grid block view with bootstrap-italia ([aa594d8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aa594d854b45cab44159328131d0ab782781a4d3))
1414
- * intl missing in SelectInput ([5c9f458](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5c9f45831dc5b8301c832b47f56d4860bebb67da))
1415
-
1537
+ - added condition to SimpleCardTemplate for the effective/modified dates ([#251](https://github.com/RedTurtle/design-comuni-plone-theme/issues/251)) ([d578ffa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d578ffae3dcab1d4e73174762b6507288a93f9e6))
1538
+ - grid block view with bootstrap-italia ([aa594d8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aa594d854b45cab44159328131d0ab782781a4d3))
1539
+ - intl missing in SelectInput ([5c9f458](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5c9f45831dc5b8301c832b47f56d4860bebb67da))
1416
1540
 
1417
1541
  ### Documentation
1418
1542
 
1419
- * updated publiccode ([31efc10](https://github.com/RedTurtle/design-comuni-plone-theme/commit/31efc10ddb1180ae69464371444e8045eba43221))
1543
+ - updated publiccode ([31efc10](https://github.com/RedTurtle/design-comuni-plone-theme/commit/31efc10ddb1180ae69464371444e8045eba43221))
1420
1544
 
1421
1545
  ## [8.0.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.1...v8.0.2) (2023-07-14)
1422
1546
 
1423
-
1424
1547
  ### Bug Fixes
1425
1548
 
1426
- * update withQuerystringResults customization ([4d339a9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4d339a9ef5e55be5f30ae7da1490a624eac60bf3))
1427
- * wrong block context ([#249](https://github.com/RedTurtle/design-comuni-plone-theme/issues/249)) ([2047edf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2047edf08186acd26d738683950682afcea1acba))
1549
+ - update withQuerystringResults customization ([4d339a9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4d339a9ef5e55be5f30ae7da1490a624eac60bf3))
1550
+ - wrong block context ([#249](https://github.com/RedTurtle/design-comuni-plone-theme/issues/249)) ([2047edf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2047edf08186acd26d738683950682afcea1acba))
1428
1551
 
1429
1552
  ## [8.0.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0...v8.0.1) (2023-07-12)
1430
1553
 
1431
-
1432
1554
  ### Bug Fixes
1433
1555
 
1434
- * grid block config, blocks editor z-index ([02724a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/02724a21b512a4effaedebecfbfe3398fdfc20d8))
1556
+ - grid block config, blocks editor z-index ([02724a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/02724a21b512a4effaedebecfbfe3398fdfc20d8))
1435
1557
 
1436
1558
  ## [8.0.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.43...v8.0.0) (2023-07-12)
1437
1559
 
1438
-
1439
1560
  ### Documentation
1440
1561
 
1441
- * fixed readme ([8b73766](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8b737663e24cd00bf6b7c22484b04b9455255646))
1442
- * update readme and publiccode ([db47619](https://github.com/RedTurtle/design-comuni-plone-theme/commit/db476193a40ec2e2521a6c7395e54bbf6a9180f4))
1443
-
1562
+ - fixed readme ([8b73766](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8b737663e24cd00bf6b7c22484b04b9455255646))
1563
+ - update readme and publiccode ([db47619](https://github.com/RedTurtle/design-comuni-plone-theme/commit/db476193a40ec2e2521a6c7395e54bbf6a9180f4))
1444
1564
 
1445
1565
  ### Maintenance
1446
1566
 
1447
- * cleanup unit test workflow ([36ece4d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/36ece4d846632145d44be0b8171d505c258f0477))
1448
- * fix node memory issue on github ci ([427b6a9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/427b6a938d18a3fda6f52752ee666b5ef218fb39))
1449
- * update versions ([a7fba75](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7fba75d861e479c08e521329566af3a35916f7d))
1450
- * update workflows ([eb49a34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb49a34d7099dc81bc63acf37c6c57e2fc33f0bb))
1451
- * update yarn.lock ([f9332e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9332e691bf943463b1d883e0366b6568524b48e))
1452
- * updated nvmrc with node 18 ([5dee521](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5dee521aa2801f47c90b7900150b5e0911f79beb))
1453
- * upgrade to latest volto17 alpha ([#222](https://github.com/RedTurtle/design-comuni-plone-theme/issues/222)) ([c13a6cb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c13a6cb2ab1ebf3858db81f54e7e78b26ab579e2))
1567
+ - cleanup unit test workflow ([36ece4d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/36ece4d846632145d44be0b8171d505c258f0477))
1568
+ - fix node memory issue on github ci ([427b6a9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/427b6a938d18a3fda6f52752ee666b5ef218fb39))
1569
+ - update versions ([a7fba75](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7fba75d861e479c08e521329566af3a35916f7d))
1570
+ - update workflows ([eb49a34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb49a34d7099dc81bc63acf37c6c57e2fc33f0bb))
1571
+ - update yarn.lock ([f9332e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9332e691bf943463b1d883e0366b6568524b48e))
1572
+ - updated nvmrc with node 18 ([5dee521](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5dee521aa2801f47c90b7900150b5e0911f79beb))
1573
+ - upgrade to latest volto17 alpha ([#222](https://github.com/RedTurtle/design-comuni-plone-theme/issues/222)) ([c13a6cb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c13a6cb2ab1ebf3858db81f54e7e78b26ab579e2))
1454
1574
 
1455
1575
  ## [8.0.0-alpha.43](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.42...v8.0.0-alpha.43) (2023-07-11)
1456
1576
 
1457
-
1458
1577
  ### Features
1459
1578
 
1460
- * empty serviceUrl in servizio schema org metatags when not available ([23602fd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/23602fdd7fe78a311f45f492b7dbe2fe478a1cd7))
1461
-
1579
+ - empty serviceUrl in servizio schema org metatags when not available ([23602fd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/23602fdd7fe78a311f45f492b7dbe2fe478a1cd7))
1462
1580
 
1463
1581
  ### Bug Fixes
1464
1582
 
1465
- * a11y styles for focus on search button in header ([#240](https://github.com/RedTurtle/design-comuni-plone-theme/issues/240)) ([6f54cb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6f54cb1490231dc7125fcf4d001464e980a1981b))
1466
- * cleanup cardpersona styles for style coherence ([8a0630a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8a0630a72209fa9a78cea3264da458c91d476f1a))
1467
-
1583
+ - a11y styles for focus on search button in header ([#240](https://github.com/RedTurtle/design-comuni-plone-theme/issues/240)) ([6f54cb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6f54cb1490231dc7125fcf4d001464e980a1981b))
1584
+ - cleanup cardpersona styles for style coherence ([8a0630a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8a0630a72209fa9a78cea3264da458c91d476f1a))
1468
1585
 
1469
1586
  ### Maintenance
1470
1587
 
1471
- * **deps-dev:** bump stylelint from 15.7.0 to 15.10.1 ([#244](https://github.com/RedTurtle/design-comuni-plone-theme/issues/244)) ([100cee6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/100cee67bab233eb70f2ca021742ce2c167875b6))
1588
+ - **deps-dev:** bump stylelint from 15.7.0 to 15.10.1 ([#244](https://github.com/RedTurtle/design-comuni-plone-theme/issues/244)) ([100cee6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/100cee67bab233eb70f2ca021742ce2c167875b6))
1472
1589
 
1473
1590
  ## [8.0.0-alpha.42](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.41...v8.0.0-alpha.42) (2023-07-05)
1474
1591
 
1475
-
1476
1592
  ### Features
1477
1593
 
1478
- * focus on sidemenu shifts correctly between selected items and page content ([#212](https://github.com/RedTurtle/design-comuni-plone-theme/issues/212)) ([bb7c0f6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bb7c0f6d87654b2008f089d3387b2cb8b2c3f676))
1479
- * upgraded volto-data-grid-widget 2.2.0 ([40be1a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/40be1a786e1bc8ce31337e84d89e4237c31118aa))
1480
-
1594
+ - focus on sidemenu shifts correctly between selected items and page content ([#212](https://github.com/RedTurtle/design-comuni-plone-theme/issues/212)) ([bb7c0f6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bb7c0f6d87654b2008f089d3387b2cb8b2c3f676))
1595
+ - upgraded volto-data-grid-widget 2.2.0 ([40be1a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/40be1a786e1bc8ce31337e84d89e4237c31118aa))
1481
1596
 
1482
1597
  ### Bug Fixes
1483
1598
 
1484
- * "feat: a11y for Slider listing template ([#226](https://github.com/RedTurtle/design-comuni-plone-theme/issues/226))" ([581b1e1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/581b1e1f9a5cff52862672d7a2e62ecf61359e6a))
1485
- * added more improvements about i18n support ([#138](https://github.com/RedTurtle/design-comuni-plone-theme/issues/138)) ([f5d603e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5d603e2902bf84be5becd99a87514c365d335a3))
1486
- * nav menu font-weight ([e8897e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e8897e8eb88239427885485fe39d606ef728b41f))
1487
- * number of slides to scroll on mobile set to 1 ([#239](https://github.com/RedTurtle/design-comuni-plone-theme/issues/239)) ([de0a8cd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/de0a8cd3e367287757dcb7322213055c50181549))
1488
- * rendering autore del documento con UO ([#242](https://github.com/RedTurtle/design-comuni-plone-theme/issues/242)) ([c9d5769](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9d5769b0be46924ef86735081ae5f4d3a2527d3))
1489
- * small a11y fixes ([94a7496](https://github.com/RedTurtle/design-comuni-plone-theme/commit/94a7496af30dd4e6b93a6189d07c17984a3d7b20))
1490
- * sync datetimewidget customization ([#230](https://github.com/RedTurtle/design-comuni-plone-theme/issues/230)) ([16f78c5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/16f78c5061e5a7c1a02e21ae5a0cca4bfd80b201))
1491
- * translation errors ([772cccd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/772cccd0e0ed7d4082b706e2ceee97756a0b1dce))
1492
- * useIntl in TextSizeButton ([30f77c2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/30f77c2bfe0388014e77546ed9a31ae9ecde1ca3))
1493
-
1599
+ - "feat: a11y for Slider listing template ([#226](https://github.com/RedTurtle/design-comuni-plone-theme/issues/226))" ([581b1e1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/581b1e1f9a5cff52862672d7a2e62ecf61359e6a))
1600
+ - added more improvements about i18n support ([#138](https://github.com/RedTurtle/design-comuni-plone-theme/issues/138)) ([f5d603e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5d603e2902bf84be5becd99a87514c365d335a3))
1601
+ - nav menu font-weight ([e8897e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e8897e8eb88239427885485fe39d606ef728b41f))
1602
+ - number of slides to scroll on mobile set to 1 ([#239](https://github.com/RedTurtle/design-comuni-plone-theme/issues/239)) ([de0a8cd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/de0a8cd3e367287757dcb7322213055c50181549))
1603
+ - rendering autore del documento con UO ([#242](https://github.com/RedTurtle/design-comuni-plone-theme/issues/242)) ([c9d5769](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9d5769b0be46924ef86735081ae5f4d3a2527d3))
1604
+ - small a11y fixes ([94a7496](https://github.com/RedTurtle/design-comuni-plone-theme/commit/94a7496af30dd4e6b93a6189d07c17984a3d7b20))
1605
+ - sync datetimewidget customization ([#230](https://github.com/RedTurtle/design-comuni-plone-theme/issues/230)) ([16f78c5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/16f78c5061e5a7c1a02e21ae5a0cca4bfd80b201))
1606
+ - translation errors ([772cccd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/772cccd0e0ed7d4082b706e2ceee97756a0b1dce))
1607
+ - useIntl in TextSizeButton ([30f77c2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/30f77c2bfe0388014e77546ed9a31ae9ecde1ca3))
1494
1608
 
1495
1609
  ### Changes
1496
1610
 
1497
- * removed twitter block ([#233](https://github.com/RedTurtle/design-comuni-plone-theme/issues/233)) ([a3c85f4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3c85f449221f1edc9422f7e73dd73d0373e0d06))
1498
-
1611
+ - removed twitter block ([#233](https://github.com/RedTurtle/design-comuni-plone-theme/issues/233)) ([a3c85f4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3c85f449221f1edc9422f7e73dd73d0373e0d06))
1499
1612
 
1500
1613
  ### Maintenance
1501
1614
 
1502
- * cleanup locales ([3c76bed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c76bedfc26b070b8afd810df769b6e3151555e5))
1615
+ - cleanup locales ([3c76bed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c76bedfc26b070b8afd810df769b6e3151555e5))
1503
1616
 
1504
1617
  ## [8.0.0-alpha.41](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.40...v8.0.0-alpha.41) (2023-06-29)
1505
1618
 
1506
-
1507
1619
  ### Features
1508
1620
 
1509
- * a11y for Slider listing template ([#226](https://github.com/RedTurtle/design-comuni-plone-theme/issues/226)) ([7198e7b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7198e7b9fff848220b1a858be616c7d8b71c53b6))
1510
-
1621
+ - a11y for Slider listing template ([#226](https://github.com/RedTurtle/design-comuni-plone-theme/issues/226)) ([7198e7b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7198e7b9fff848220b1a858be616c7d8b71c53b6))
1511
1622
 
1512
1623
  ### Bug Fixes
1513
1624
 
1514
- * padding weekday date search left padding ([#223](https://github.com/RedTurtle/design-comuni-plone-theme/issues/223)) ([c9fc157](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9fc157f34f15c606209397adb2335d805770dd5))
1515
- * styles for a11y in cookiebanner ([#227](https://github.com/RedTurtle/design-comuni-plone-theme/issues/227)) ([43f0923](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43f092340e289d5c54961965743c17aea42eb7da))
1516
-
1625
+ - padding weekday date search left padding ([#223](https://github.com/RedTurtle/design-comuni-plone-theme/issues/223)) ([c9fc157](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9fc157f34f15c606209397adb2335d805770dd5))
1626
+ - styles for a11y in cookiebanner ([#227](https://github.com/RedTurtle/design-comuni-plone-theme/issues/227)) ([43f0923](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43f092340e289d5c54961965743c17aea42eb7da))
1517
1627
 
1518
1628
  ### Maintenance
1519
1629
 
1520
- * aria-live on results/no results divs ([#228](https://github.com/RedTurtle/design-comuni-plone-theme/issues/228)) ([18f5a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/18f5a427522bd83fef671e0daebf2be24d67f8d9))
1521
- * update release deps ([3e2bbc1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3e2bbc1660a4111a9ce5d6796cecec992b5ae69a))
1522
- * upgrade release-it (+ deps) ([#218](https://github.com/RedTurtle/design-comuni-plone-theme/issues/218)) ([d7b7268](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7b7268de9547186239f820817ca498d43953634))
1630
+ - aria-live on results/no results divs ([#228](https://github.com/RedTurtle/design-comuni-plone-theme/issues/228)) ([18f5a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/18f5a427522bd83fef671e0daebf2be24d67f8d9))
1631
+ - update release deps ([3e2bbc1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3e2bbc1660a4111a9ce5d6796cecec992b5ae69a))
1632
+ - upgrade release-it (+ deps) ([#218](https://github.com/RedTurtle/design-comuni-plone-theme/issues/218)) ([d7b7268](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7b7268de9547186239f820817ca498d43953634))
1523
1633
 
1524
1634
  ## [8.0.0-alpha.40](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.39...v8.0.0-alpha.40) (2023-06-27)
1525
1635
 
1526
-
1527
1636
  ### Features
1528
1637
 
1529
- * added accordion in SideMenu component ([#121](https://github.com/RedTurtle/design-comuni-plone-theme/issues/121)) ([1b342a0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1b342a0af2296342a36d13d274792d532b597bb3))
1530
- * updated gdpr add-on and enabled focus trap in cookie banner ([d860cb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d860cb13955da2cb1ce0351767888c4b9cb4ebae))
1638
+ - added accordion in SideMenu component ([#121](https://github.com/RedTurtle/design-comuni-plone-theme/issues/121)) ([1b342a0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1b342a0af2296342a36d13d274792d532b597bb3))
1639
+ - updated gdpr add-on and enabled focus trap in cookie banner ([d860cb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d860cb13955da2cb1ce0351767888c4b9cb4ebae))
1531
1640
 
1532
1641
  ## [8.0.0-alpha.39](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.38...v8.0.0-alpha.39) (2023-06-23)
1533
1642
 
1534
-
1535
1643
  ### Features
1536
1644
 
1537
- * upgrade to volto 16.21.0 ([5b0eafc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b0eafc0fd98aa5866258fdd616e8ccc20953a52))
1538
-
1645
+ - upgrade to volto 16.21.0 ([5b0eafc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5b0eafc0fd98aa5866258fdd616e8ccc20953a52))
1539
1646
 
1540
1647
  ### Bug Fixes
1541
1648
 
1542
- * calendar block arrows ([#209](https://github.com/RedTurtle/design-comuni-plone-theme/issues/209)) ([5490ecb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5490ecb48f8ac619cd7d13a9c18bdb25bf2cf578))
1543
- * fa icons width bug ([#219](https://github.com/RedTurtle/design-comuni-plone-theme/issues/219)) ([4d7b49a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4d7b49ae8b5d34e4e320e1cf38567f6b4eb62fec))
1544
- * fixed integer field value of FormValidationHelpers ([#216](https://github.com/RedTurtle/design-comuni-plone-theme/issues/216)) ([528bceb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/528bcebd16bc3ebee1f8966cdff529e521acdf5e))
1545
- * fixed style for CardBody length when CardPersona has image ([#207](https://github.com/RedTurtle/design-comuni-plone-theme/issues/207)) ([04d1ed9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/04d1ed93af4ab65c01c3ffab4bb0f570d0514afa))
1546
- * il titolo dei costi del servizio ora dipende da quali campi sono popolati ([#203](https://github.com/RedTurtle/design-comuni-plone-theme/issues/203)) ([936a154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/936a154ce59ee662b68a173eb03272d427109f15))
1547
- * removed class that hid skiplinks ([#211](https://github.com/RedTurtle/design-comuni-plone-theme/issues/211)) ([c8f25a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8f25a7df9cb4b9a4932e974a0ade83d006af9a0))
1548
- * upgrade volto to volto 16.20.8, remove customization, fix [#193](https://github.com/RedTurtle/design-comuni-plone-theme/issues/193) ([#217](https://github.com/RedTurtle/design-comuni-plone-theme/issues/217)) ([e9bd983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9bd983b18fcdf1b21f374957f48d1c06f789bc9))
1549
- * upgrades for volto 16.21.0 ([b4aa077](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b4aa077d2cfe484cd33f634bacd3684d396f034e))
1550
-
1649
+ - calendar block arrows ([#209](https://github.com/RedTurtle/design-comuni-plone-theme/issues/209)) ([5490ecb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5490ecb48f8ac619cd7d13a9c18bdb25bf2cf578))
1650
+ - fa icons width bug ([#219](https://github.com/RedTurtle/design-comuni-plone-theme/issues/219)) ([4d7b49a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4d7b49ae8b5d34e4e320e1cf38567f6b4eb62fec))
1651
+ - fixed integer field value of FormValidationHelpers ([#216](https://github.com/RedTurtle/design-comuni-plone-theme/issues/216)) ([528bceb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/528bcebd16bc3ebee1f8966cdff529e521acdf5e))
1652
+ - fixed style for CardBody length when CardPersona has image ([#207](https://github.com/RedTurtle/design-comuni-plone-theme/issues/207)) ([04d1ed9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/04d1ed93af4ab65c01c3ffab4bb0f570d0514afa))
1653
+ - il titolo dei costi del servizio ora dipende da quali campi sono popolati ([#203](https://github.com/RedTurtle/design-comuni-plone-theme/issues/203)) ([936a154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/936a154ce59ee662b68a173eb03272d427109f15))
1654
+ - removed class that hid skiplinks ([#211](https://github.com/RedTurtle/design-comuni-plone-theme/issues/211)) ([c8f25a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c8f25a7df9cb4b9a4932e974a0ade83d006af9a0))
1655
+ - upgrade volto to volto 16.20.8, remove customization, fix [#193](https://github.com/RedTurtle/design-comuni-plone-theme/issues/193) ([#217](https://github.com/RedTurtle/design-comuni-plone-theme/issues/217)) ([e9bd983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9bd983b18fcdf1b21f374957f48d1c06f789bc9))
1656
+ - upgrades for volto 16.21.0 ([b4aa077](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b4aa077d2cfe484cd33f634bacd3684d396f034e))
1551
1657
 
1552
1658
  ### Maintenance
1553
1659
 
1554
- * upgrade volto to 16.21.0 ([841cb37](https://github.com/RedTurtle/design-comuni-plone-theme/commit/841cb377e1ee650f5b69efac882b40ffc6f4e474))
1660
+ - upgrade volto to 16.21.0 ([841cb37](https://github.com/RedTurtle/design-comuni-plone-theme/commit/841cb377e1ee650f5b69efac882b40ffc6f4e474))
1555
1661
 
1556
1662
  ## [8.0.0-alpha.38](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.37...v8.0.0-alpha.38) (2023-06-19)
1557
1663
 
1558
-
1559
1664
  ### Features
1560
1665
 
1561
- * added checkbox for event images in calendar ([#208](https://github.com/RedTurtle/design-comuni-plone-theme/issues/208)) ([e5dcd91](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e5dcd9112b65d98e329666e44a0544504a906e22))
1562
- * aggiunto blocco search ([#198](https://github.com/RedTurtle/design-comuni-plone-theme/issues/198)) ([2f7c7b1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f7c7b10038eef20883194fa035f3ff7f84691f7))
1563
- * twitter errors ([#206](https://github.com/RedTurtle/design-comuni-plone-theme/issues/206)) ([6cee7ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6cee7ed200349e9e58705f1c88558bedb3075187))
1564
-
1666
+ - added checkbox for event images in calendar ([#208](https://github.com/RedTurtle/design-comuni-plone-theme/issues/208)) ([e5dcd91](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e5dcd9112b65d98e329666e44a0544504a906e22))
1667
+ - aggiunto blocco search ([#198](https://github.com/RedTurtle/design-comuni-plone-theme/issues/198)) ([2f7c7b1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2f7c7b10038eef20883194fa035f3ff7f84691f7))
1668
+ - twitter errors ([#206](https://github.com/RedTurtle/design-comuni-plone-theme/issues/206)) ([6cee7ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6cee7ed200349e9e58705f1c88558bedb3075187))
1565
1669
 
1566
1670
  ### Bug Fixes
1567
1671
 
1568
- * fixed logout icon color ([#199](https://github.com/RedTurtle/design-comuni-plone-theme/issues/199)) ([dd2ac69](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dd2ac696613e63183ed16691759c7c700cf3d202))
1569
- * hid cookie icon from print mode ([#205](https://github.com/RedTurtle/design-comuni-plone-theme/issues/205)) ([089a60d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/089a60d1d725b576f6d58126373a7c2ad8afc81a))
1570
- * locales ([b7747ba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7747bab717dee9e33326f883e75d91ff01d5cbf))
1571
- * missing it translation, workaround for react select missing classnames in build due to design-react-kit mishap ([#202](https://github.com/RedTurtle/design-comuni-plone-theme/issues/202)) ([be2e53d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be2e53dc21e948da7c968a072ac487154aa49702))
1672
+ - fixed logout icon color ([#199](https://github.com/RedTurtle/design-comuni-plone-theme/issues/199)) ([dd2ac69](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dd2ac696613e63183ed16691759c7c700cf3d202))
1673
+ - hid cookie icon from print mode ([#205](https://github.com/RedTurtle/design-comuni-plone-theme/issues/205)) ([089a60d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/089a60d1d725b576f6d58126373a7c2ad8afc81a))
1674
+ - locales ([b7747ba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7747bab717dee9e33326f883e75d91ff01d5cbf))
1675
+ - missing it translation, workaround for react select missing classnames in build due to design-react-kit mishap ([#202](https://github.com/RedTurtle/design-comuni-plone-theme/issues/202)) ([be2e53d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be2e53dc21e948da7c968a072ac487154aa49702))
1572
1676
 
1573
1677
  ## [8.0.0-alpha.37](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.36...v8.0.0-alpha.37) (2023-06-07)
1574
1678
 
1575
-
1576
1679
  ### ⚠ BREAKING CHANGES
1577
1680
 
1578
- * this is now a Volto theme add-on 💥 (#166)
1681
+ - this is now a Volto theme add-on 💥 (#166)
1579
1682
 
1580
1683
  ### Features
1581
1684
 
1582
- * aggiornamento icone da fa5 a fa6 ([#194](https://github.com/RedTurtle/design-comuni-plone-theme/issues/194)) ([59cd2ac](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59cd2ac2189062640010340ab3e758f009506ec5))
1583
-
1685
+ - aggiornamento icone da fa5 a fa6 ([#194](https://github.com/RedTurtle/design-comuni-plone-theme/issues/194)) ([59cd2ac](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59cd2ac2189062640010340ab3e758f009506ec5))
1584
1686
 
1585
1687
  ### Bug Fixes
1586
1688
 
1587
- * changed BandoDates and Dates components for accessibility ([#188](https://github.com/RedTurtle/design-comuni-plone-theme/issues/188)) ([6c133ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6c133ec09fd29eb666c771f24e61740aa66c8a53))
1588
- * empty alt tag + aria-hidden for link in cards ([#186](https://github.com/RedTurtle/design-comuni-plone-theme/issues/186)) ([3689353](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3689353654525946a2f647d7920b8d5f3972b077))
1589
- * page-break added for all printable content | print visualization for accordion block fixed ([#197](https://github.com/RedTurtle/design-comuni-plone-theme/issues/197)) ([2ac0189](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ac018957ce6b3e953b451896dcf9b70b08272f3))
1590
-
1689
+ - changed BandoDates and Dates components for accessibility ([#188](https://github.com/RedTurtle/design-comuni-plone-theme/issues/188)) ([6c133ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6c133ec09fd29eb666c771f24e61740aa66c8a53))
1690
+ - empty alt tag + aria-hidden for link in cards ([#186](https://github.com/RedTurtle/design-comuni-plone-theme/issues/186)) ([3689353](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3689353654525946a2f647d7920b8d5f3972b077))
1691
+ - page-break added for all printable content | print visualization for accordion block fixed ([#197](https://github.com/RedTurtle/design-comuni-plone-theme/issues/197)) ([2ac0189](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ac018957ce6b3e953b451896dcf9b70b08272f3))
1591
1692
 
1592
1693
  ### Changes
1593
1694
 
1594
- * this is now a Volto theme add-on 💥 ([#166](https://github.com/RedTurtle/design-comuni-plone-theme/issues/166)) ([19003b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/19003b77b909ed19b8291ca9f4b900bf66dfa701))
1595
-
1695
+ - this is now a Volto theme add-on 💥 ([#166](https://github.com/RedTurtle/design-comuni-plone-theme/issues/166)) ([19003b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/19003b77b909ed19b8291ca9f4b900bf66dfa701))
1596
1696
 
1597
1697
  ### Documentation
1598
1698
 
1599
- * development instructions ([b87e551](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b87e551e5d9066a4c6aab2d48a67f9c988fe1b9f))
1600
-
1699
+ - development instructions ([b87e551](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b87e551e5d9066a4c6aab2d48a67f9c988fe1b9f))
1601
1700
 
1602
1701
  ### Maintenance
1603
1702
 
1604
- * fix babel config ([2052198](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2052198a119a37e503abca6e17e8b4065aa5cfe9))
1703
+ - fix babel config ([2052198](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2052198a119a37e503abca6e17e8b4065aa5cfe9))
1605
1704
 
1606
1705
  ## [8.0.0-alpha.36](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.35...v8.0.0-alpha.36) (2023-06-01)
1607
1706
 
1608
-
1609
1707
  ### Features
1610
1708
 
1611
- * disabled contact-form route ([#187](https://github.com/RedTurtle/design-comuni-plone-theme/issues/187)) ([9e39568](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e3956834d0be35aa371e99d7fee451a09a55d86))
1612
-
1709
+ - disabled contact-form route ([#187](https://github.com/RedTurtle/design-comuni-plone-theme/issues/187)) ([9e39568](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e3956834d0be35aa371e99d7fee451a09a55d86))
1613
1710
 
1614
1711
  ### Bug Fixes
1615
1712
 
1616
- * added content in renderBlocks and renamed old content to data ([#195](https://github.com/RedTurtle/design-comuni-plone-theme/issues/195)) ([66b7338](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66b7338038d4f4f7789b5ea380e3f72f709e56c4))
1617
- * aria-expanded and aria-live in search page ([#182](https://github.com/RedTurtle/design-comuni-plone-theme/issues/182)) ([ca3530a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ca3530ad545dfc5eb544db2b614324216584d608))
1618
- * avoid error when adding empty blocks to servizio block fields ([#196](https://github.com/RedTurtle/design-comuni-plone-theme/issues/196)) ([9a95734](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9a95734833dbc342872589ff083f23ec5eafecb1))
1713
+ - added content in renderBlocks and renamed old content to data ([#195](https://github.com/RedTurtle/design-comuni-plone-theme/issues/195)) ([66b7338](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66b7338038d4f4f7789b5ea380e3f72f709e56c4))
1714
+ - aria-expanded and aria-live in search page ([#182](https://github.com/RedTurtle/design-comuni-plone-theme/issues/182)) ([ca3530a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ca3530ad545dfc5eb544db2b614324216584d608))
1715
+ - avoid error when adding empty blocks to servizio block fields ([#196](https://github.com/RedTurtle/design-comuni-plone-theme/issues/196)) ([9a95734](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9a95734833dbc342872589ff083f23ec5eafecb1))
1619
1716
 
1620
1717
  ## [8.0.0-alpha.35](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.34...v8.0.0-alpha.35) (2023-05-30)
1621
1718
 
1622
-
1623
1719
  ### Features
1624
1720
 
1625
- * upgraded volto-form-block ([e18e153](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e18e1534ad2df8d2aece6d9d597327dfedc43b21))
1626
-
1721
+ - upgraded volto-form-block ([e18e153](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e18e1534ad2df8d2aece6d9d597327dfedc43b21))
1627
1722
 
1628
1723
  ### Bug Fixes
1629
1724
 
1630
- * added space between label and data ([#189](https://github.com/RedTurtle/design-comuni-plone-theme/issues/189)) ([3c75252](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c75252d07c7eb0078f47bbe8f51a0d708d831b5))
1631
- * font size in CardPersona ([#180](https://github.com/RedTurtle/design-comuni-plone-theme/issues/180)) ([bb09d1f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bb09d1f3ce53056f62123ead76799c73ebc02738))
1632
- * sede mancante nei metatag del servizio ([#185](https://github.com/RedTurtle/design-comuni-plone-theme/issues/185)) ([cebcdf0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cebcdf090444ca6751726b9a063d696fbe362a90))
1633
- * unnecessary flex removed ([#184](https://github.com/RedTurtle/design-comuni-plone-theme/issues/184)) ([08ce5dc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/08ce5dc849d83ce043787525d89502aa3aef3e6e))
1634
- * upgrade volto to 16.20.7 ([dc08c9f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dc08c9fc14373fa9d17dda3a996a025501736f6a))
1635
-
1725
+ - added space between label and data ([#189](https://github.com/RedTurtle/design-comuni-plone-theme/issues/189)) ([3c75252](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c75252d07c7eb0078f47bbe8f51a0d708d831b5))
1726
+ - font size in CardPersona ([#180](https://github.com/RedTurtle/design-comuni-plone-theme/issues/180)) ([bb09d1f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bb09d1f3ce53056f62123ead76799c73ebc02738))
1727
+ - sede mancante nei metatag del servizio ([#185](https://github.com/RedTurtle/design-comuni-plone-theme/issues/185)) ([cebcdf0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cebcdf090444ca6751726b9a063d696fbe362a90))
1728
+ - unnecessary flex removed ([#184](https://github.com/RedTurtle/design-comuni-plone-theme/issues/184)) ([08ce5dc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/08ce5dc849d83ce043787525d89502aa3aef3e6e))
1729
+ - upgrade volto to 16.20.7 ([dc08c9f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dc08c9fc14373fa9d17dda3a996a025501736f6a))
1636
1730
 
1637
1731
  ### Maintenance
1638
1732
 
1639
- * added basic api expanders ([#192](https://github.com/RedTurtle/design-comuni-plone-theme/issues/192)) ([2c4cb08](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2c4cb08f2e31ad1435900d4edc0f7feec3f52ac4))
1733
+ - added basic api expanders ([#192](https://github.com/RedTurtle/design-comuni-plone-theme/issues/192)) ([2c4cb08](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2c4cb08f2e31ad1435900d4edc0f7feec3f52ac4))
1640
1734
 
1641
1735
  ## [8.0.0-alpha.34](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.33...v8.0.0-alpha.34) (2023-05-25)
1642
1736
 
1643
-
1644
1737
  ### Features
1645
1738
 
1646
- * custom validation and error message for Event if end date is prior to start date ([#170](https://github.com/RedTurtle/design-comuni-plone-theme/issues/170)) ([f94794a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f94794a701a6f1608e51a983a0446a5817d8683e))
1647
-
1739
+ - custom validation and error message for Event if end date is prior to start date ([#170](https://github.com/RedTurtle/design-comuni-plone-theme/issues/170)) ([f94794a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f94794a701a6f1608e51a983a0446a5817d8683e))
1648
1740
 
1649
1741
  ### Bug Fixes
1650
1742
 
1651
- * date nelle card evento ([#154](https://github.com/RedTurtle/design-comuni-plone-theme/issues/154)) ([3f00f57](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3f00f57170713e831774ec04448c87fcaa5f101f))
1652
- * more resilient configuration ([e0f1189](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e0f1189cd88f90b86ab9b3ed60353064f6f80cbe))
1653
- * remove custom styles for datepickers, use customizations for DatetimeWidget and RecurrenceWidget to keep previous specs for calendar opening on top in adddate recurrence field ([#172](https://github.com/RedTurtle/design-comuni-plone-theme/issues/172)) ([947979b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/947979bb17c9d495c8c45a38f1ea50477107c520))
1654
- * volto-blocks-widget allowedBlocks configurable from add-ons ([c789e48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c789e48e1c61129b68d22d57c4b4489f5198fdcc))
1743
+ - date nelle card evento ([#154](https://github.com/RedTurtle/design-comuni-plone-theme/issues/154)) ([3f00f57](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3f00f57170713e831774ec04448c87fcaa5f101f))
1744
+ - more resilient configuration ([e0f1189](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e0f1189cd88f90b86ab9b3ed60353064f6f80cbe))
1745
+ - remove custom styles for datepickers, use customizations for DatetimeWidget and RecurrenceWidget to keep previous specs for calendar opening on top in adddate recurrence field ([#172](https://github.com/RedTurtle/design-comuni-plone-theme/issues/172)) ([947979b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/947979bb17c9d495c8c45a38f1ea50477107c520))
1746
+ - volto-blocks-widget allowedBlocks configurable from add-ons ([c789e48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c789e48e1c61129b68d22d57c4b4489f5198fdcc))
1655
1747
 
1656
1748
  ## [8.0.0-alpha.33](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.32...v8.0.0-alpha.33) (2023-05-22)
1657
1749
 
1658
-
1659
1750
  ### ⚠ BREAKING CHANGES
1660
1751
 
1661
- * added time field in calendar block, changed layout of date (#167)
1662
- * rethink login process and improve unauthorized page (#113)
1752
+ - added time field in calendar block, changed layout of date (#167)
1753
+ - rethink login process and improve unauthorized page (#113)
1663
1754
 
1664
1755
  ### Features
1665
1756
 
1666
- * added time field in calendar block, changed layout of date ([#167](https://github.com/RedTurtle/design-comuni-plone-theme/issues/167)) ([1908586](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1908586a78b55b4a29e6fb0c64c58a67360a70bf))
1667
- * rethink login process and improve unauthorized page ([#113](https://github.com/RedTurtle/design-comuni-plone-theme/issues/113)) ([80c4777](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80c4777ce6fc64def08a6fded6f14f9712ee6a18))
1668
-
1757
+ - added time field in calendar block, changed layout of date ([#167](https://github.com/RedTurtle/design-comuni-plone-theme/issues/167)) ([1908586](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1908586a78b55b4a29e6fb0c64c58a67360a70bf))
1758
+ - rethink login process and improve unauthorized page ([#113](https://github.com/RedTurtle/design-comuni-plone-theme/issues/113)) ([80c4777](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80c4777ce6fc64def08a6fded6f14f9712ee6a18))
1669
1759
 
1670
1760
  ### Bug Fixes
1671
1761
 
1672
- * fixed site of ufficio_responsabile condition ([#169](https://github.com/RedTurtle/design-comuni-plone-theme/issues/169)) ([65c1eae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/65c1eae889fb1ea8bcec7c2b2ca8f971bb2f7a18))
1673
- * i18n ([d95f3b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d95f3b8716d144bf6795c10af5ad616590c64f4a))
1674
- * progress bar count ([#171](https://github.com/RedTurtle/design-comuni-plone-theme/issues/171)) ([66ed91a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66ed91a6e288a570828d487ab736420fd4664a2d))
1762
+ - fixed site of ufficio_responsabile condition ([#169](https://github.com/RedTurtle/design-comuni-plone-theme/issues/169)) ([65c1eae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/65c1eae889fb1ea8bcec7c2b2ca8f971bb2f7a18))
1763
+ - i18n ([d95f3b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d95f3b8716d144bf6795c10af5ad616590c64f4a))
1764
+ - progress bar count ([#171](https://github.com/RedTurtle/design-comuni-plone-theme/issues/171)) ([66ed91a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/66ed91a6e288a570828d487ab736420fd4664a2d))
1675
1765
 
1676
1766
  ## [8.0.0-alpha.32](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.31...v8.0.0-alpha.32) (2023-05-14)
1677
1767
 
1678
-
1679
1768
  ### Bug Fixes
1680
1769
 
1681
- * fixed title of events in calendar block ([#165](https://github.com/RedTurtle/design-comuni-plone-theme/issues/165)) ([5e73f79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e73f792839ba9fd1b9a16b120c258e2e807de9c))
1682
- * progress bar calculation in ct views ([#135](https://github.com/RedTurtle/design-comuni-plone-theme/issues/135)) ([efc5e9c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/efc5e9c866f1d97f3241da068a3ff9ee629ecb04))
1683
- * style of Rss card without image ([#168](https://github.com/RedTurtle/design-comuni-plone-theme/issues/168)) ([ae2673f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ae2673f8d6a13adb591f676696369b80f6cdaafe))
1770
+ - fixed title of events in calendar block ([#165](https://github.com/RedTurtle/design-comuni-plone-theme/issues/165)) ([5e73f79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e73f792839ba9fd1b9a16b120c258e2e807de9c))
1771
+ - progress bar calculation in ct views ([#135](https://github.com/RedTurtle/design-comuni-plone-theme/issues/135)) ([efc5e9c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/efc5e9c866f1d97f3241da068a3ff9ee629ecb04))
1772
+ - style of Rss card without image ([#168](https://github.com/RedTurtle/design-comuni-plone-theme/issues/168)) ([ae2673f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ae2673f8d6a13adb591f676696369b80f6cdaafe))
1684
1773
 
1685
1774
  ## [8.0.0-alpha.31](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.30...v8.0.0-alpha.31) (2023-05-11)
1686
1775
 
1687
-
1688
1776
  ### Bug Fixes
1689
1777
 
1690
- * changed secondary variable to gray-secondary or primary ([#155](https://github.com/RedTurtle/design-comuni-plone-theme/issues/155)) ([9e43bfa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e43bfae0050b29a8e91b15d87db8c672a02c5cd))
1691
- * more tolerant check in persona view ([4b36c50](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b36c506f48112f8a2db202a6342bb4128d910c2))
1692
- * Object browser not updating formData, validation fails ([#158](https://github.com/RedTurtle/design-comuni-plone-theme/issues/158)) ([aba4490](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aba4490f702d1e80314036eb4f4a1596f2a094aa))
1693
- * service schema.org data-element ([24df03f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24df03f12b6868200c1f4fd6b7798ff19384a4bd))
1694
- * service schema.org serviceUrl nesting ([20e1357](https://github.com/RedTurtle/design-comuni-plone-theme/commit/20e1357f323a3cb59c0460e040600d984bb958cc))
1695
- * service schema.org url and area ([5622eac](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5622eac53d3a039a288a9c439da58a990e399585))
1696
- * toc block not working ([#160](https://github.com/RedTurtle/design-comuni-plone-theme/issues/160)) ([91026ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/91026edecea142d752ff47f0878d3789d1aea7d0))
1697
-
1778
+ - changed secondary variable to gray-secondary or primary ([#155](https://github.com/RedTurtle/design-comuni-plone-theme/issues/155)) ([9e43bfa](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e43bfae0050b29a8e91b15d87db8c672a02c5cd))
1779
+ - more tolerant check in persona view ([4b36c50](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b36c506f48112f8a2db202a6342bb4128d910c2))
1780
+ - Object browser not updating formData, validation fails ([#158](https://github.com/RedTurtle/design-comuni-plone-theme/issues/158)) ([aba4490](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aba4490f702d1e80314036eb4f4a1596f2a094aa))
1781
+ - service schema.org data-element ([24df03f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24df03f12b6868200c1f4fd6b7798ff19384a4bd))
1782
+ - service schema.org serviceUrl nesting ([20e1357](https://github.com/RedTurtle/design-comuni-plone-theme/commit/20e1357f323a3cb59c0460e040600d984bb958cc))
1783
+ - service schema.org url and area ([5622eac](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5622eac53d3a039a288a9c439da58a990e399585))
1784
+ - toc block not working ([#160](https://github.com/RedTurtle/design-comuni-plone-theme/issues/160)) ([91026ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/91026edecea142d752ff47f0878d3789d1aea7d0))
1698
1785
 
1699
1786
  ### Maintenance
1700
1787
 
1701
- * test-acceptance-server ([51853f0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/51853f03c074a267b95571f912d4db769d32f45f))
1788
+ - test-acceptance-server ([51853f0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/51853f03c074a267b95571f912d4db769d32f45f))
1702
1789
 
1703
1790
  ## [8.0.0-alpha.30](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.29...v8.0.0-alpha.30) (2023-05-04)
1704
1791
 
1705
-
1706
1792
  ### Features
1707
1793
 
1708
- * added custom validation for CT Servizio 'Accedere al servizio' section ([#144](https://github.com/RedTurtle/design-comuni-plone-theme/issues/144)) ([4918407](https://github.com/RedTurtle/design-comuni-plone-theme/commit/49184076f05851b3491f03e6669a359deab8088c))
1709
- * added schema.org metadata for ct servizio ([#151](https://github.com/RedTurtle/design-comuni-plone-theme/issues/151)) ([c3d4ff0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c3d4ff088140a2c83eea1f759be809a30b6439b0))
1710
- * updated customerSatisfaction with ModelloPratica condition ([#145](https://github.com/RedTurtle/design-comuni-plone-theme/issues/145)) ([010071a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/010071aa8a8898bbf79ad990d7883f6dbb9544fd))
1711
-
1794
+ - added custom validation for CT Servizio 'Accedere al servizio' section ([#144](https://github.com/RedTurtle/design-comuni-plone-theme/issues/144)) ([4918407](https://github.com/RedTurtle/design-comuni-plone-theme/commit/49184076f05851b3491f03e6669a359deab8088c))
1795
+ - added schema.org metadata for ct servizio ([#151](https://github.com/RedTurtle/design-comuni-plone-theme/issues/151)) ([c3d4ff0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c3d4ff088140a2c83eea1f759be809a30b6439b0))
1796
+ - updated customerSatisfaction with ModelloPratica condition ([#145](https://github.com/RedTurtle/design-comuni-plone-theme/issues/145)) ([010071a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/010071aa8a8898bbf79ad990d7883f6dbb9544fd))
1712
1797
 
1713
1798
  ### Bug Fixes
1714
1799
 
1715
- * blocks copy/paste logic ([#146](https://github.com/RedTurtle/design-comuni-plone-theme/issues/146)) ([59caffd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59caffdfce28fd14cc4859338240c772aab8d1a1))
1716
- * duplicate feedback form title ([2569199](https://github.com/RedTurtle/design-comuni-plone-theme/commit/256919978b9ec34d75fbfc2e5a3631a03f64df66))
1717
- * percorso raddoppiato immagini ([#153](https://github.com/RedTurtle/design-comuni-plone-theme/issues/153)) ([18e9f8a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/18e9f8aa1a49a570d5e308bafe7fbd718f06de37))
1800
+ - blocks copy/paste logic ([#146](https://github.com/RedTurtle/design-comuni-plone-theme/issues/146)) ([59caffd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/59caffdfce28fd14cc4859338240c772aab8d1a1))
1801
+ - duplicate feedback form title ([2569199](https://github.com/RedTurtle/design-comuni-plone-theme/commit/256919978b9ec34d75fbfc2e5a3631a03f64df66))
1802
+ - percorso raddoppiato immagini ([#153](https://github.com/RedTurtle/design-comuni-plone-theme/issues/153)) ([18e9f8a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/18e9f8aa1a49a570d5e308bafe7fbd718f06de37))
1718
1803
 
1719
1804
  ## [8.0.0-alpha.29](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.28...v8.0.0-alpha.29) (2023-04-28)
1720
1805
 
1721
-
1722
1806
  ### Features
1723
1807
 
1724
- * added contact info in officeCard from pdc ([#137](https://github.com/RedTurtle/design-comuni-plone-theme/issues/137)) ([5bbddd9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5bbddd9b93ce175ff3fcb5da08f9dd4a063020b7))
1808
+ - added contact info in officeCard from pdc ([#137](https://github.com/RedTurtle/design-comuni-plone-theme/issues/137)) ([5bbddd9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5bbddd9b93ce175ff3fcb5da08f9dd4a063020b7))
1725
1809
 
1726
1810
  ## [8.0.0-alpha.28](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.27...v8.0.0-alpha.28) (2023-04-27)
1727
1811
 
1728
-
1729
1812
  ### ⚠ BREAKING CHANGES
1730
1813
 
1731
- * remove contents customization (#136)
1814
+ - remove contents customization (#136)
1732
1815
 
1733
1816
  ### Features
1734
1817
 
1735
- * lazy load optional footer image ([30d5650](https://github.com/RedTurtle/design-comuni-plone-theme/commit/30d56500909c5309f36eb7b1149e8bb822c05f53))
1736
- * remove contents customization ([#136](https://github.com/RedTurtle/design-comuni-plone-theme/issues/136)) ([3ca63d0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3ca63d0a234c1cd3e90e4d37b68168517e03f6e5))
1737
-
1818
+ - lazy load optional footer image ([30d5650](https://github.com/RedTurtle/design-comuni-plone-theme/commit/30d56500909c5309f36eb7b1149e8bb822c05f53))
1819
+ - remove contents customization ([#136](https://github.com/RedTurtle/design-comuni-plone-theme/issues/136)) ([3ca63d0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3ca63d0a234c1cd3e90e4d37b68168517e03f6e5))
1738
1820
 
1739
1821
  ### Bug Fixes
1740
1822
 
1741
- * better lazy loading for eu footer image ([6a23d43](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a23d43ee566a228989f9ef2914eff3b24ba735f))
1742
- * fixed description font for cardWithImage component ([#140](https://github.com/RedTurtle/design-comuni-plone-theme/issues/140)) ([c11c5ff](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c11c5ff98f88055f7d8b23c270bd29a0facda755))
1743
- * font in date card evento ([#133](https://github.com/RedTurtle/design-comuni-plone-theme/issues/133)) ([af0dbba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/af0dbba9a2d213ed495116f7640c02bd2191e71b))
1744
- * link more blocco calendario mancante ([#134](https://github.com/RedTurtle/design-comuni-plone-theme/issues/134)) ([d364872](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d3648723f4f2d72e2908eafee89bbb938b438c36))
1745
- * widget date nella ricorrenza, color picker in blocco eventSearch ([#141](https://github.com/RedTurtle/design-comuni-plone-theme/issues/141)) ([ae4610a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ae4610ac43fcf9f720df5c778f2d600bd5ca7210))
1746
-
1823
+ - better lazy loading for eu footer image ([6a23d43](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a23d43ee566a228989f9ef2914eff3b24ba735f))
1824
+ - fixed description font for cardWithImage component ([#140](https://github.com/RedTurtle/design-comuni-plone-theme/issues/140)) ([c11c5ff](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c11c5ff98f88055f7d8b23c270bd29a0facda755))
1825
+ - font in date card evento ([#133](https://github.com/RedTurtle/design-comuni-plone-theme/issues/133)) ([af0dbba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/af0dbba9a2d213ed495116f7640c02bd2191e71b))
1826
+ - link more blocco calendario mancante ([#134](https://github.com/RedTurtle/design-comuni-plone-theme/issues/134)) ([d364872](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d3648723f4f2d72e2908eafee89bbb938b438c36))
1827
+ - widget date nella ricorrenza, color picker in blocco eventSearch ([#141](https://github.com/RedTurtle/design-comuni-plone-theme/issues/141)) ([ae4610a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ae4610ac43fcf9f720df5c778f2d600bd5ca7210))
1747
1828
 
1748
1829
  ### Maintenance
1749
1830
 
1750
- * remove obsolete customization ([852acb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/852acb1b2f9d548a2bf8439a4eac92922a9a7c14))
1831
+ - remove obsolete customization ([852acb1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/852acb1b2f9d548a2bf8439a4eac92922a9a7c14))
1751
1832
 
1752
1833
  ## [8.0.0-alpha.27](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.26...v8.0.0-alpha.27) (2023-04-24)
1753
1834
 
1754
-
1755
1835
  ### Features
1756
1836
 
1757
- * update volto to 16.20.4 ([6a72b51](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a72b51ff19115ac17f0e3c29382169c6feca974))
1758
-
1837
+ - update volto to 16.20.4 ([6a72b51](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a72b51ff19115ac17f0e3c29382169c6feca974))
1759
1838
 
1760
1839
  ### Bug Fixes
1761
1840
 
1762
- * bg-gradient usage in cardSlideUpText ([b67dae6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b67dae6fb2f69d1a8d0aa97ed218178bfad242d5))
1841
+ - bg-gradient usage in cardSlideUpText ([b67dae6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b67dae6fb2f69d1a8d0aa97ed218178bfad242d5))
1763
1842
 
1764
1843
  ## [8.0.0-alpha.26](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.25...v8.0.0-alpha.26) (2023-04-19)
1765
1844
 
1766
-
1767
1845
  ### Bug Fixes
1768
1846
 
1769
- * testo duplicato nei costi del servizio ([8618d90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8618d90acd8269952614194ce7f667e39d9da608))
1847
+ - testo duplicato nei costi del servizio ([8618d90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8618d90acd8269952614194ce7f667e39d9da608))
1770
1848
 
1771
1849
  ## [8.0.0-alpha.25](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.24...v8.0.0-alpha.25) (2023-04-12)
1772
1850
 
1773
-
1774
1851
  ### Bug Fixes
1775
1852
 
1776
- * i18n ([20e42f0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/20e42f0931a4c17b49cce3e12ada2cf1da17ad55))
1777
- * listing block options ordering ([fda2d10](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fda2d1039672b64cfd68034b19616c7fcb282ddf))
1853
+ - i18n ([20e42f0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/20e42f0931a4c17b49cce3e12ada2cf1da17ad55))
1854
+ - listing block options ordering ([fda2d10](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fda2d1039672b64cfd68034b19616c7fcb282ddf))
1778
1855
 
1779
1856
  ## [8.0.0-alpha.24](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.23...v8.0.0-alpha.24) (2023-04-11)
1780
1857
 
1781
-
1782
1858
  ### Features
1783
1859
 
1784
- * intersectionObserver new settings and css block _smallblockLinkstemplate ([#125](https://github.com/RedTurtle/design-comuni-plone-theme/issues/125)) ([719067f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/719067f6ed0bda17b9940d939f1ffff0c192dab2))
1785
- * show next generation eu logo by default ([ac66238](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac66238f877e9c904ac2e093675361d1ccdfcd8d))
1786
-
1860
+ - intersectionObserver new settings and css block \_smallblockLinkstemplate ([#125](https://github.com/RedTurtle/design-comuni-plone-theme/issues/125)) ([719067f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/719067f6ed0bda17b9940d939f1ffff0c192dab2))
1861
+ - show next generation eu logo by default ([ac66238](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac66238f877e9c904ac2e093675361d1ccdfcd8d))
1787
1862
 
1788
1863
  ### Bug Fixes
1789
1864
 
1790
- * card-big class across all views ([#131](https://github.com/RedTurtle/design-comuni-plone-theme/issues/131)) ([be30e40](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be30e40a0c35e5a91be51cb7067c09b8331c06fb))
1791
- * i18n ([cea78a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cea78a4ca7104e16225fe4cf33235437072e6878))
1792
- * link atto di nomina sulla persona ([#130](https://github.com/RedTurtle/design-comuni-plone-theme/issues/130)) ([8f10d79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8f10d7928b08c1f63046b7fa1311825a898e7118))
1793
- * notizia a cura di info in office card ([#127](https://github.com/RedTurtle/design-comuni-plone-theme/issues/127)) ([7017927](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7017927b4f9e96d1bbb234f33fd9a46f24f8a6b6))
1794
- * pdc intl values ([#129](https://github.com/RedTurtle/design-comuni-plone-theme/issues/129)) ([a6bbc48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a6bbc486106b32bc39d4ab63a086ebab73ea8385))
1795
- * ribbon card styles ([#132](https://github.com/RedTurtle/design-comuni-plone-theme/issues/132)) ([ff75a75](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ff75a75e45ab3510998bbdc98313bcb781a0087f))
1865
+ - card-big class across all views ([#131](https://github.com/RedTurtle/design-comuni-plone-theme/issues/131)) ([be30e40](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be30e40a0c35e5a91be51cb7067c09b8331c06fb))
1866
+ - i18n ([cea78a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cea78a4ca7104e16225fe4cf33235437072e6878))
1867
+ - link atto di nomina sulla persona ([#130](https://github.com/RedTurtle/design-comuni-plone-theme/issues/130)) ([8f10d79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8f10d7928b08c1f63046b7fa1311825a898e7118))
1868
+ - notizia a cura di info in office card ([#127](https://github.com/RedTurtle/design-comuni-plone-theme/issues/127)) ([7017927](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7017927b4f9e96d1bbb234f33fd9a46f24f8a6b6))
1869
+ - pdc intl values ([#129](https://github.com/RedTurtle/design-comuni-plone-theme/issues/129)) ([a6bbc48](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a6bbc486106b32bc39d4ab63a086ebab73ea8385))
1870
+ - ribbon card styles ([#132](https://github.com/RedTurtle/design-comuni-plone-theme/issues/132)) ([ff75a75](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ff75a75e45ab3510998bbdc98313bcb781a0087f))
1796
1871
 
1797
1872
  ## [8.0.0-alpha.23](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.22...v8.0.0-alpha.23) (2023-04-06)
1798
1873
 
1799
-
1800
1874
  ### Bug Fixes
1801
1875
 
1802
- * ssr error in SideMenu ([bd90ea7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bd90ea713c749349fad92a1a1413ffbc77ffe17c))
1876
+ - ssr error in SideMenu ([bd90ea7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bd90ea713c749349fad92a1a1413ffbc77ffe17c))
1803
1877
 
1804
1878
  ## [8.0.0-alpha.22](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.21...v8.0.0-alpha.22) (2023-04-06)
1805
1879
 
1806
-
1807
1880
  ### Bug Fixes
1808
1881
 
1809
- * bootstrap breakpoint usage ([7cad6eb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7cad6eb043b779180304fb7e8492675f14420385))
1810
- * venue view length conditions ([#128](https://github.com/RedTurtle/design-comuni-plone-theme/issues/128)) ([7921e61](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7921e617f2d61630698db0c2d5fe190e7c31485c))
1882
+ - bootstrap breakpoint usage ([7cad6eb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7cad6eb043b779180304fb7e8492675f14420385))
1883
+ - venue view length conditions ([#128](https://github.com/RedTurtle/design-comuni-plone-theme/issues/128)) ([7921e61](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7921e617f2d61630698db0c2d5fe190e7c31485c))
1811
1884
 
1812
1885
  ## [8.0.0-alpha.21](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.20...v8.0.0-alpha.21) (2023-04-05)
1813
1886
 
1814
-
1815
1887
  ### Bug Fixes
1816
1888
 
1817
- * card with slide up text styles ([9181eb9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9181eb90956a86711676410e8c81b83d8c2b72dc))
1818
-
1889
+ - card with slide up text styles ([9181eb9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9181eb90956a86711676410e8c81b83d8c2b72dc))
1819
1890
 
1820
1891
  ### Maintenance
1821
1892
 
1822
- * fixed tests ([e6c4d5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6c4d5b9f8e17a3b61fdc4f29a55f2e806e9e58f))
1893
+ - fixed tests ([e6c4d5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6c4d5b9f8e17a3b61fdc4f29a55f2e806e9e58f))
1823
1894
 
1824
1895
  ## [8.0.0-alpha.20](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.19...v8.0.0-alpha.20) (2023-04-05)
1825
1896
 
1826
-
1827
1897
  ### Features
1828
1898
 
1829
- * add configurable PNRR/NextGenerationEU footer logo ([a1f575b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a1f575bad7e1b7977d46327cf7868517b415cd83))
1830
-
1899
+ - add configurable PNRR/NextGenerationEU footer logo ([a1f575b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a1f575bad7e1b7977d46327cf7868517b415cd83))
1831
1900
 
1832
1901
  ### Bug Fixes
1833
1902
 
1834
- * add data-element to LoginButton component ([6a2492a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a2492a37604941889c030cc9a662481923d41d5))
1835
- * bs-it accordion styles readded ([dd1fd19](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dd1fd19f2bab7d1bbb428b8ad794faa0e3d69f3a))
1836
- * CardWithImage mobile styles, ImageSize selector and tests ([15c77ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/15c77ec9486afd22e4e822bff9b35fef94898171))
1837
- * changing FeedbackForm title to disregard Service CT value because validator does not respect AGID specifications ([692967c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/692967ce0c7cf279c4001dd88094c51b6f76abf1))
1838
- * fix and rework SideMenu component not showing current section/correct progress ([d7a8ee6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7a8ee6c11c457ea7f345cce51cf0e66f0617f6c))
1839
- * fix CardWithImage block tests ([fadb661](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fadb661b97eb97adb0cc560fcb4a220b657ed265))
1840
- * fix smallblockLinksTemplate css ([cb5fccd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cb5fccd80b085e5a3cbe46e0ab7a5ee2846f59a2))
1841
- * highlighted block styles ([43f6eed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43f6eed6590fec321848a7f43d84cea318ffb8d9))
1842
- * pagina argomento header uo images ([8e4904a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8e4904ab194b51407fc1715af41ed3bed61e7a81))
1843
- * persona image back to header ([05a6677](https://github.com/RedTurtle/design-comuni-plone-theme/commit/05a667716c107e7ba00040a4247e3d9127715515))
1844
- * responsive styles ([#120](https://github.com/RedTurtle/design-comuni-plone-theme/issues/120)) ([e5b4978](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e5b497846dac9a267844957cbd7535cdfd292709))
1845
- * search text input component if page opened with precompiled text ([132d495](https://github.com/RedTurtle/design-comuni-plone-theme/commit/132d495ea198bf83acd118b71efc55b31a6b70d7))
1846
- * servizio argomenti position ([33a3e2f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33a3e2f9bf0fd2e2904f8805de8da04d1ef86f6d))
1847
- * text block in block chooser ([58020c2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58020c27daa82e14b3d532f196bb0121cedd9469))
1848
- * toc styles ([b5f1f17](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b5f1f17b8e4e715268be0ca6ff640a2a4f52861e))
1849
- * updated i18n ([ca8ce05](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ca8ce05b91e9c38db5a2d0e0757330c2d225b6f8))
1850
-
1903
+ - add data-element to LoginButton component ([6a2492a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6a2492a37604941889c030cc9a662481923d41d5))
1904
+ - bs-it accordion styles readded ([dd1fd19](https://github.com/RedTurtle/design-comuni-plone-theme/commit/dd1fd19f2bab7d1bbb428b8ad794faa0e3d69f3a))
1905
+ - CardWithImage mobile styles, ImageSize selector and tests ([15c77ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/15c77ec9486afd22e4e822bff9b35fef94898171))
1906
+ - changing FeedbackForm title to disregard Service CT value because validator does not respect AGID specifications ([692967c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/692967ce0c7cf279c4001dd88094c51b6f76abf1))
1907
+ - fix and rework SideMenu component not showing current section/correct progress ([d7a8ee6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7a8ee6c11c457ea7f345cce51cf0e66f0617f6c))
1908
+ - fix CardWithImage block tests ([fadb661](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fadb661b97eb97adb0cc560fcb4a220b657ed265))
1909
+ - fix smallblockLinksTemplate css ([cb5fccd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cb5fccd80b085e5a3cbe46e0ab7a5ee2846f59a2))
1910
+ - highlighted block styles ([43f6eed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43f6eed6590fec321848a7f43d84cea318ffb8d9))
1911
+ - pagina argomento header uo images ([8e4904a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8e4904ab194b51407fc1715af41ed3bed61e7a81))
1912
+ - persona image back to header ([05a6677](https://github.com/RedTurtle/design-comuni-plone-theme/commit/05a667716c107e7ba00040a4247e3d9127715515))
1913
+ - responsive styles ([#120](https://github.com/RedTurtle/design-comuni-plone-theme/issues/120)) ([e5b4978](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e5b497846dac9a267844957cbd7535cdfd292709))
1914
+ - search text input component if page opened with precompiled text ([132d495](https://github.com/RedTurtle/design-comuni-plone-theme/commit/132d495ea198bf83acd118b71efc55b31a6b70d7))
1915
+ - servizio argomenti position ([33a3e2f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33a3e2f9bf0fd2e2904f8805de8da04d1ef86f6d))
1916
+ - text block in block chooser ([58020c2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58020c27daa82e14b3d532f196bb0121cedd9469))
1917
+ - toc styles ([b5f1f17](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b5f1f17b8e4e715268be0ca6ff640a2a4f52861e))
1918
+ - updated i18n ([ca8ce05](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ca8ce05b91e9c38db5a2d0e0757330c2d225b6f8))
1851
1919
 
1852
1920
  ### Maintenance
1853
1921
 
1854
- * rimossa patch per le variabili in fase di build ([#86](https://github.com/RedTurtle/design-comuni-plone-theme/issues/86)) ([5fa3544](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5fa3544666d536c746274712ad9d5961df0792e1))
1922
+ - rimossa patch per le variabili in fase di build ([#86](https://github.com/RedTurtle/design-comuni-plone-theme/issues/86)) ([5fa3544](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5fa3544666d536c746274712ad9d5961df0792e1))
1855
1923
 
1856
1924
  ## [8.0.0-alpha.19](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.18...v8.0.0-alpha.19) (2023-03-31)
1857
1925
 
1858
-
1859
1926
  ### Features
1860
1927
 
1861
- * moved topics section from PageHeader and positioned them after Contacts section in ServizioView ([#123](https://github.com/RedTurtle/design-comuni-plone-theme/issues/123)) ([3aaa3dd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3aaa3dd0f99d14ecaf7089576f93227e1a8e38c0))
1862
-
1928
+ - moved topics section from PageHeader and positioned them after Contacts section in ServizioView ([#123](https://github.com/RedTurtle/design-comuni-plone-theme/issues/123)) ([3aaa3dd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3aaa3dd0f99d14ecaf7089576f93227e1a8e38c0))
1863
1929
 
1864
1930
  ### Bug Fixes
1865
1931
 
1866
- * colori dei link, loghi e configurazione base ([#119](https://github.com/RedTurtle/design-comuni-plone-theme/issues/119)) ([5d0796d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5d0796d32ba97f46e7374b59ce45db02934a2acd))
1867
- * fixed CardPersona style ([#122](https://github.com/RedTurtle/design-comuni-plone-theme/issues/122)) ([58f5a6c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58f5a6cc519e5c68560f5a4bd3b56c9ce5bf8afd))
1868
- * fixed ContactsCard style ([#118](https://github.com/RedTurtle/design-comuni-plone-theme/issues/118)) ([6cde606](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6cde606586a25981fc299f773784046fea9ebdb8))
1869
- * update volto-feedback questions to adhere to new agid specifications ([#124](https://github.com/RedTurtle/design-comuni-plone-theme/issues/124)) ([8d044e2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8d044e27980bbaf4d8c3c1e6a2dc9ebf3a6aec6b))
1932
+ - colori dei link, loghi e configurazione base ([#119](https://github.com/RedTurtle/design-comuni-plone-theme/issues/119)) ([5d0796d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5d0796d32ba97f46e7374b59ce45db02934a2acd))
1933
+ - fixed CardPersona style ([#122](https://github.com/RedTurtle/design-comuni-plone-theme/issues/122)) ([58f5a6c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/58f5a6cc519e5c68560f5a4bd3b56c9ce5bf8afd))
1934
+ - fixed ContactsCard style ([#118](https://github.com/RedTurtle/design-comuni-plone-theme/issues/118)) ([6cde606](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6cde606586a25981fc299f773784046fea9ebdb8))
1935
+ - update volto-feedback questions to adhere to new agid specifications ([#124](https://github.com/RedTurtle/design-comuni-plone-theme/issues/124)) ([8d044e2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8d044e27980bbaf4d8c3c1e6a2dc9ebf3a6aec6b))
1870
1936
 
1871
1937
  ## [8.0.0-alpha.18](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.17...v8.0.0-alpha.18) (2023-03-29)
1872
1938
 
1873
-
1874
1939
  ### Bug Fixes
1875
1940
 
1876
- * card persona foto sovrapposta ([#115](https://github.com/RedTurtle/design-comuni-plone-theme/issues/115)) ([a3068e9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3068e97cef4f59028e262f0a1846246c55de4bf))
1877
- * logo in header padding-left ([d53e2cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d53e2cce26bc2996a8e150cee8a3fa8224d23c09))
1878
- * logo in header padding-left ([2dc8782](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2dc8782b4f6c30a416747cae3cb20d3a5527422f))
1879
- * modal header for double x button ([#116](https://github.com/RedTurtle/design-comuni-plone-theme/issues/116)) ([e28cae8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e28cae83e0a68e821a8dc9e346f4b6a5e1c66523))
1880
- * objectBrowser breadcrumb tooltip visibility ([#117](https://github.com/RedTurtle/design-comuni-plone-theme/issues/117)) ([63cabe4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/63cabe48af69f74ae90043230c3736ba84ea44ba))
1881
- * typo in data element for link-more actions ([#114](https://github.com/RedTurtle/design-comuni-plone-theme/issues/114)) ([bbe0a5a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bbe0a5a14ffe801e470620f41b0988fbfe5480b3))
1882
-
1941
+ - card persona foto sovrapposta ([#115](https://github.com/RedTurtle/design-comuni-plone-theme/issues/115)) ([a3068e9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3068e97cef4f59028e262f0a1846246c55de4bf))
1942
+ - logo in header padding-left ([d53e2cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d53e2cce26bc2996a8e150cee8a3fa8224d23c09))
1943
+ - logo in header padding-left ([2dc8782](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2dc8782b4f6c30a416747cae3cb20d3a5527422f))
1944
+ - modal header for double x button ([#116](https://github.com/RedTurtle/design-comuni-plone-theme/issues/116)) ([e28cae8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e28cae83e0a68e821a8dc9e346f4b6a5e1c66523))
1945
+ - objectBrowser breadcrumb tooltip visibility ([#117](https://github.com/RedTurtle/design-comuni-plone-theme/issues/117)) ([63cabe4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/63cabe48af69f74ae90043230c3736ba84ea44ba))
1946
+ - typo in data element for link-more actions ([#114](https://github.com/RedTurtle/design-comuni-plone-theme/issues/114)) ([bbe0a5a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bbe0a5a14ffe801e470620f41b0988fbfe5480b3))
1883
1947
 
1884
1948
  ### Maintenance
1885
1949
 
1886
- * update redturtle/rancher-deploy-action ([4b0a8a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b0a8a77beff9b6362304b0238c74909f7bbc83c))
1887
- * upgrade to volto 16.18.0 ([#104](https://github.com/RedTurtle/design-comuni-plone-theme/issues/104)) ([6d7d8d5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6d7d8d5beb523b7723fedc932afe81a9da115bf4))
1950
+ - update redturtle/rancher-deploy-action ([4b0a8a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b0a8a77beff9b6362304b0238c74909f7bbc83c))
1951
+ - upgrade to volto 16.18.0 ([#104](https://github.com/RedTurtle/design-comuni-plone-theme/issues/104)) ([6d7d8d5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6d7d8d5beb523b7723fedc932afe81a9da115bf4))
1888
1952
 
1889
1953
  ## [8.0.0-alpha.17](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.16...v8.0.0-alpha.17) (2023-03-24)
1890
1954
 
1891
-
1892
1955
  ### Bug Fixes
1893
1956
 
1894
- * Revert "fix: header image height fixed (#103)" (#111) ([9d53dfd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d53dfd6cc174f0a2eb033b36a782d9fb9b71b1a)), closes [#103](https://github.com/RedTurtle/design-comuni-plone-theme/issues/103) [#111](https://github.com/RedTurtle/design-comuni-plone-theme/issues/111)
1895
- * add Quanto Costa section to page index ([#100](https://github.com/RedTurtle/design-comuni-plone-theme/issues/100)) ([d8038cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d8038cc5b9cf7a4b3b18f17c43e712f3cef8375e))
1896
- * align FormValidation.js customization with Volto pr [#4601](https://github.com/RedTurtle/design-comuni-plone-theme/issues/4601) (fix isValidURL regexp) ([#105](https://github.com/RedTurtle/design-comuni-plone-theme/issues/105)) ([5e6c404](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e6c4042ae4cf8ec64b0a71464e3a0a988c163f9))
1897
- * carousel close button ([#96](https://github.com/RedTurtle/design-comuni-plone-theme/issues/96)) ([f5d0dcc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5d0dccc6e418ac454bc1310b6a2965fcdcd52d9))
1898
- * fixed card heading css rules ([#107](https://github.com/RedTurtle/design-comuni-plone-theme/issues/107)) ([db88ff9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/db88ff9236d482eadda2e2e4ab212335105b4f8f))
1899
- * header image height fixed ([#103](https://github.com/RedTurtle/design-comuni-plone-theme/issues/103)) ([182fa50](https://github.com/RedTurtle/design-comuni-plone-theme/commit/182fa500863327e2424740b16713d34e68b7ee2e))
1900
- * lateral padding for navbar ([#106](https://github.com/RedTurtle/design-comuni-plone-theme/issues/106)) ([e167f34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e167f34b5e3feab3f5078b66b0e96a87481ee9d0))
1901
- * object browser initial search position ([#98](https://github.com/RedTurtle/design-comuni-plone-theme/issues/98)) ([1a16c8a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1a16c8a30b43795d61a1fbbe2aad0bfa31ac172e))
1902
-
1957
+ - Revert "fix: header image height fixed (#103)" (#111) ([9d53dfd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d53dfd6cc174f0a2eb033b36a782d9fb9b71b1a)), closes [#103](https://github.com/RedTurtle/design-comuni-plone-theme/issues/103) [#111](https://github.com/RedTurtle/design-comuni-plone-theme/issues/111)
1958
+ - add Quanto Costa section to page index ([#100](https://github.com/RedTurtle/design-comuni-plone-theme/issues/100)) ([d8038cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d8038cc5b9cf7a4b3b18f17c43e712f3cef8375e))
1959
+ - align FormValidation.js customization with Volto pr [#4601](https://github.com/RedTurtle/design-comuni-plone-theme/issues/4601) (fix isValidURL regexp) ([#105](https://github.com/RedTurtle/design-comuni-plone-theme/issues/105)) ([5e6c404](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5e6c4042ae4cf8ec64b0a71464e3a0a988c163f9))
1960
+ - carousel close button ([#96](https://github.com/RedTurtle/design-comuni-plone-theme/issues/96)) ([f5d0dcc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5d0dccc6e418ac454bc1310b6a2965fcdcd52d9))
1961
+ - fixed card heading css rules ([#107](https://github.com/RedTurtle/design-comuni-plone-theme/issues/107)) ([db88ff9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/db88ff9236d482eadda2e2e4ab212335105b4f8f))
1962
+ - header image height fixed ([#103](https://github.com/RedTurtle/design-comuni-plone-theme/issues/103)) ([182fa50](https://github.com/RedTurtle/design-comuni-plone-theme/commit/182fa500863327e2424740b16713d34e68b7ee2e))
1963
+ - lateral padding for navbar ([#106](https://github.com/RedTurtle/design-comuni-plone-theme/issues/106)) ([e167f34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e167f34b5e3feab3f5078b66b0e96a87481ee9d0))
1964
+ - object browser initial search position ([#98](https://github.com/RedTurtle/design-comuni-plone-theme/issues/98)) ([1a16c8a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1a16c8a30b43795d61a1fbbe2aad0bfa31ac172e))
1903
1965
 
1904
1966
  ### Maintenance
1905
1967
 
1906
- * remove duplicate code ([566b0cf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/566b0cf46a046b2cf10bd271d06935b5be4b1b5a))
1968
+ - remove duplicate code ([566b0cf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/566b0cf46a046b2cf10bd271d06935b5be4b1b5a))
1907
1969
 
1908
1970
  ## [8.0.0-alpha.16](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.15...v8.0.0-alpha.16) (2023-03-22)
1909
1971
 
1910
-
1911
1972
  ### Bug Fixes
1912
1973
 
1913
- * fixed page names across CTs ([#101](https://github.com/RedTurtle/design-comuni-plone-theme/issues/101)) ([cbf2187](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cbf21870ae413ff657dd9e92d14c2f7d3f7a31c2))
1914
- * missing import in MenuConfigurationForm ([a8baaf0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a8baaf091816ee7522c58b388b30695d6fc90ba6))
1974
+ - fixed page names across CTs ([#101](https://github.com/RedTurtle/design-comuni-plone-theme/issues/101)) ([cbf2187](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cbf21870ae413ff657dd9e92d14c2f7d3f7a31c2))
1975
+ - missing import in MenuConfigurationForm ([a8baaf0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a8baaf091816ee7522c58b388b30695d6fc90ba6))
1915
1976
 
1916
1977
  ## [8.0.0-alpha.15](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.14...v8.0.0-alpha.15) (2023-03-20)
1917
1978
 
1918
-
1919
1979
  ### Features
1920
1980
 
1921
- * added data-elements where needed for validator ([#95](https://github.com/RedTurtle/design-comuni-plone-theme/issues/95)) ([5ce1d5d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5ce1d5d4815850d82b1a622d73aa1b01d551b672))
1922
- * added page-name data-element on page titles ([3796e83](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3796e839cb94a7e35436a8aed2d9daba45a3bd09))
1923
- * added page-name data-element on page titles ([52e8a37](https://github.com/RedTurtle/design-comuni-plone-theme/commit/52e8a37c6698bbb77a86c0c2cb146e68a891bf5f))
1924
-
1981
+ - added data-elements where needed for validator ([#95](https://github.com/RedTurtle/design-comuni-plone-theme/issues/95)) ([5ce1d5d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5ce1d5d4815850d82b1a622d73aa1b01d551b672))
1982
+ - added page-name data-element on page titles ([3796e83](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3796e839cb94a7e35436a8aed2d9daba45a3bd09))
1983
+ - added page-name data-element on page titles ([52e8a37](https://github.com/RedTurtle/design-comuni-plone-theme/commit/52e8a37c6698bbb77a86c0c2cb146e68a891bf5f))
1925
1984
 
1926
1985
  ### Bug Fixes
1927
1986
 
1928
- * invalid-feedback text was removed by some css in the kit, added it back ([#94](https://github.com/RedTurtle/design-comuni-plone-theme/issues/94)) ([e56ec8b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e56ec8bcafeb963c8efe6b0a388674f45d953f22))
1929
- * locales ([fc91374](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc913743b835ae631716afcab75b85840c19199f))
1930
- * missing Dal in dates if event dates are not occurring in same year ([#97](https://github.com/RedTurtle/design-comuni-plone-theme/issues/97)) ([8531029](https://github.com/RedTurtle/design-comuni-plone-theme/commit/853102912974fd60d8632cdaf6f3a9d265ffaf79))
1931
- * remove extra content image in venue address part ([fdc0509](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdc050948da12a5a11f56c6d1d4fa1c7a1126091))
1932
-
1987
+ - invalid-feedback text was removed by some css in the kit, added it back ([#94](https://github.com/RedTurtle/design-comuni-plone-theme/issues/94)) ([e56ec8b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e56ec8bcafeb963c8efe6b0a388674f45d953f22))
1988
+ - locales ([fc91374](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc913743b835ae631716afcab75b85840c19199f))
1989
+ - missing Dal in dates if event dates are not occurring in same year ([#97](https://github.com/RedTurtle/design-comuni-plone-theme/issues/97)) ([8531029](https://github.com/RedTurtle/design-comuni-plone-theme/commit/853102912974fd60d8632cdaf6f3a9d265ffaf79))
1990
+ - remove extra content image in venue address part ([fdc0509](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdc050948da12a5a11f56c6d1d4fa1c7a1126091))
1933
1991
 
1934
1992
  ### Maintenance
1935
1993
 
1936
- * added several tests ([#92](https://github.com/RedTurtle/design-comuni-plone-theme/issues/92)) ([1097d34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1097d349323834151783436fcfe61d592775956d))
1994
+ - added several tests ([#92](https://github.com/RedTurtle/design-comuni-plone-theme/issues/92)) ([1097d34](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1097d349323834151783436fcfe61d592775956d))
1937
1995
 
1938
1996
  ## [8.0.0-alpha.14](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.13...v8.0.0-alpha.14) (2023-03-14)
1939
1997
 
1940
-
1941
1998
  ### Features
1942
1999
 
1943
- * avviso per limite caratteri ([#88](https://github.com/RedTurtle/design-comuni-plone-theme/issues/88)) ([4c95c88](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4c95c8876187612ec0959129e61619bffe99022b))
1944
-
2000
+ - avviso per limite caratteri ([#88](https://github.com/RedTurtle/design-comuni-plone-theme/issues/88)) ([4c95c88](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4c95c8876187612ec0959129e61619bffe99022b))
1945
2001
 
1946
2002
  ### Bug Fixes
1947
2003
 
1948
- * indice della pagina nel servizio ([3c1f9ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c1f9ecb69908c3bb959a88541251774685899ae))
1949
- * post release fixes ([#93](https://github.com/RedTurtle/design-comuni-plone-theme/issues/93)) ([d93335f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d93335f65f9eb7604210d7fc3522c5ea708a7457))
2004
+ - indice della pagina nel servizio ([3c1f9ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c1f9ecb69908c3bb959a88541251774685899ae))
2005
+ - post release fixes ([#93](https://github.com/RedTurtle/design-comuni-plone-theme/issues/93)) ([d93335f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d93335f65f9eb7604210d7fc3522c5ea708a7457))
1950
2006
 
1951
2007
  ## [8.0.0-alpha.13](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.12...v8.0.0-alpha.13) (2023-03-10)
1952
2008
 
1953
-
1954
2009
  ### Features
1955
2010
 
1956
- * added description field to select field on form block ([#91](https://github.com/RedTurtle/design-comuni-plone-theme/issues/91)) ([34f01a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/34f01a7120e41eef4288cd611995fa918fd7ff2f))
1957
-
2011
+ - added description field to select field on form block ([#91](https://github.com/RedTurtle/design-comuni-plone-theme/issues/91)) ([34f01a7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/34f01a7120e41eef4288cd611995fa918fd7ff2f))
1958
2012
 
1959
2013
  ### Bug Fixes
1960
2014
 
1961
- * differenze template io comune ([#89](https://github.com/RedTurtle/design-comuni-plone-theme/issues/89)) ([7944531](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79445310d2d969f4cfd7d8630f75ef68abf602d3))
1962
- * locales ([03bade4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/03bade4daf698e8618f568e5d92cbfb3ebb7fa59))
2015
+ - differenze template io comune ([#89](https://github.com/RedTurtle/design-comuni-plone-theme/issues/89)) ([7944531](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79445310d2d969f4cfd7d8630f75ef68abf602d3))
2016
+ - locales ([03bade4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/03bade4daf698e8618f568e5d92cbfb3ebb7fa59))
1963
2017
 
1964
2018
  ## [8.0.0-alpha.12](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.11...v8.0.0-alpha.12) (2023-03-08)
1965
2019
 
1966
-
1967
2020
  ### Features
1968
2021
 
1969
- * added legal-notes data-element in editors ([00ca40b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/00ca40bb0acf0436c7eb2f4807b52bfa07ba14a2))
1970
- * timeline_tempi_scadenze non è più obbligatorio ([9e13282](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e13282172154cd0ee24d9a26c58dfd0ce949dce))
2022
+ - added legal-notes data-element in editors ([00ca40b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/00ca40bb0acf0436c7eb2f4807b52bfa07ba14a2))
2023
+ - timeline_tempi_scadenze non è più obbligatorio ([9e13282](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9e13282172154cd0ee24d9a26c58dfd0ce949dce))
1971
2024
 
1972
2025
  ## [8.0.0-alpha.11](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.10...v8.0.0-alpha.11) (2023-03-07)
1973
2026
 
1974
-
1975
2027
  ### Features
1976
2028
 
1977
- * add new sort indexes in BandiSearch block: effective and modified date ([#83](https://github.com/RedTurtle/design-comuni-plone-theme/issues/83)) ([62e4322](https://github.com/RedTurtle/design-comuni-plone-theme/commit/62e43226cab1e09903ed0730a0918564dac40087))
1978
-
2029
+ - add new sort indexes in BandiSearch block: effective and modified date ([#83](https://github.com/RedTurtle/design-comuni-plone-theme/issues/83)) ([62e4322](https://github.com/RedTurtle/design-comuni-plone-theme/commit/62e43226cab1e09903ed0730a0918564dac40087))
1979
2030
 
1980
2031
  ### Bug Fixes
1981
2032
 
1982
- * added a class to identify the customer satisfaction container ([#81](https://github.com/RedTurtle/design-comuni-plone-theme/issues/81)) ([ace74bf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ace74bf1f7aecb02df6d5bec658c87adc30f19f1))
1983
- * conditional checking added to not break Documento Pubblico view when after v3 migration this CT has missing required fields ([#85](https://github.com/RedTurtle/design-comuni-plone-theme/issues/85)) ([d729590](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d729590bb7b4ff711212379a4f2c9ca3fa2f6893))
1984
- * locales ([9166ca6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9166ca6ff715be08503fe4aa850ea49627d01a2b))
1985
- * redirect loop with unescaped chars in uri ([#8](https://github.com/RedTurtle/design-comuni-plone-theme/issues/8)) ([feb2e7a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/feb2e7a952560922f709be55ea1769567f63f7e0))
2033
+ - added a class to identify the customer satisfaction container ([#81](https://github.com/RedTurtle/design-comuni-plone-theme/issues/81)) ([ace74bf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ace74bf1f7aecb02df6d5bec658c87adc30f19f1))
2034
+ - conditional checking added to not break Documento Pubblico view when after v3 migration this CT has missing required fields ([#85](https://github.com/RedTurtle/design-comuni-plone-theme/issues/85)) ([d729590](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d729590bb7b4ff711212379a4f2c9ca3fa2f6893))
2035
+ - locales ([9166ca6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9166ca6ff715be08503fe4aa850ea49627d01a2b))
2036
+ - redirect loop with unescaped chars in uri ([#8](https://github.com/RedTurtle/design-comuni-plone-theme/issues/8)) ([feb2e7a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/feb2e7a952560922f709be55ea1769567f63f7e0))
1986
2037
 
1987
2038
  ## [8.0.0-alpha.10](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.9...v8.0.0-alpha.10) (2023-02-27)
1988
2039
 
1989
-
1990
2040
  ### Features
1991
2041
 
1992
- * change patrocinato_da field from TextLine to RichText; change 'contatti interni' to 'organizzato da' ([d712d66](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d712d668c5746c1b27dbb258ea6b795e159a870f))
1993
- * increase char counter limit to 255 ([3a7b7cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3a7b7cc051dac0293177bb6808e85bf8893e33ab))
1994
- * update and rebuild i18n catalog ([ac3a220](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac3a220089cbb3480c59defbbd8ff953d5ece05e))
1995
-
2042
+ - change patrocinato_da field from TextLine to RichText; change 'contatti interni' to 'organizzato da' ([d712d66](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d712d668c5746c1b27dbb258ea6b795e159a870f))
2043
+ - increase char counter limit to 255 ([3a7b7cc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3a7b7cc051dac0293177bb6808e85bf8893e33ab))
2044
+ - update and rebuild i18n catalog ([ac3a220](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ac3a220089cbb3480c59defbbd8ff953d5ece05e))
1996
2045
 
1997
2046
  ### Bug Fixes
1998
2047
 
1999
- * change details in event view ([3d0c005](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d0c0053f0417ca7127c108678982aac2c1cd7f5))
2000
- * fix space between galleries ([86e509f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/86e509f487c401cd9a3cda41b72a5cf64863ded4))
2001
- * fix styles for gallery and better PropTypes description ([fdeb6e4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdeb6e4cc4f7fb82ae2e44ba5bd138f35a7936fd))
2002
- * fix test ([b7fceda](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7fceda67331d40ee4b373460fd4c0b5112ee4f0))
2048
+ - change details in event view ([3d0c005](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3d0c0053f0417ca7127c108678982aac2c1cd7f5))
2049
+ - fix space between galleries ([86e509f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/86e509f487c401cd9a3cda41b72a5cf64863ded4))
2050
+ - fix styles for gallery and better PropTypes description ([fdeb6e4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdeb6e4cc4f7fb82ae2e44ba5bd138f35a7936fd))
2051
+ - fix test ([b7fceda](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7fceda67331d40ee4b373460fd4c0b5112ee4f0))
2003
2052
 
2004
2053
  ## [8.0.0-alpha.9](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.8...v8.0.0-alpha.9) (2023-02-22)
2005
2054
 
2006
-
2007
2055
  ### Bug Fixes
2008
2056
 
2009
- * tendina react virtualized ([#79](https://github.com/RedTurtle/design-comuni-plone-theme/issues/79)) ([0b7097c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0b7097cff2be398e6b763c0b68d3f7964de5509c))
2010
- * width on react virtualized ([#77](https://github.com/RedTurtle/design-comuni-plone-theme/issues/77)) ([be3076c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be3076c53e94fdfd3a6542ee20dfb95fafa01db8))
2057
+ - tendina react virtualized ([#79](https://github.com/RedTurtle/design-comuni-plone-theme/issues/79)) ([0b7097c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0b7097cff2be398e6b763c0b68d3f7964de5509c))
2058
+ - width on react virtualized ([#77](https://github.com/RedTurtle/design-comuni-plone-theme/issues/77)) ([be3076c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/be3076c53e94fdfd3a6542ee20dfb95fafa01db8))
2011
2059
 
2012
2060
  ## [8.0.0-alpha.8](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.7...v8.0.0-alpha.8) (2023-02-17)
2013
2061
 
2014
-
2015
2062
  ### Features
2016
2063
 
2017
- * added new customer satisfaction using new volto-feedback and collective.feedback addons ([#74](https://github.com/RedTurtle/design-comuni-plone-theme/issues/74)) ([2d0a894](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2d0a894608d12c9818ce21b58280101e7ba5b67a))
2018
- * object browser breadcrumbs ([#68](https://github.com/RedTurtle/design-comuni-plone-theme/issues/68)) ([ba4b918](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ba4b918ebe64b9110a22e60ffa8ad5c59176ac78))
2019
- * upgraded volto 16.11.0 ([3520bc3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3520bc356413ab3ab981c92cfc4e2d7cbbd989e2))
2020
-
2064
+ - added new customer satisfaction using new volto-feedback and collective.feedback addons ([#74](https://github.com/RedTurtle/design-comuni-plone-theme/issues/74)) ([2d0a894](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2d0a894608d12c9818ce21b58280101e7ba5b67a))
2065
+ - object browser breadcrumbs ([#68](https://github.com/RedTurtle/design-comuni-plone-theme/issues/68)) ([ba4b918](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ba4b918ebe64b9110a22e60ffa8ad5c59176ac78))
2066
+ - upgraded volto 16.11.0 ([3520bc3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3520bc356413ab3ab981c92cfc4e2d7cbbd989e2))
2021
2067
 
2022
2068
  ### Bug Fixes
2023
2069
 
2024
- * propTypes ([83baf67](https://github.com/RedTurtle/design-comuni-plone-theme/commit/83baf67f135bdadfaa5b14e2934cd23d63b17a48))
2025
- * rimossi campi headline e headlineTag da calendar block ([#78](https://github.com/RedTurtle/design-comuni-plone-theme/issues/78)) ([a3b1b16](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3b1b1629246ba1243de0e0eeeead0ed17468a18))
2070
+ - propTypes ([83baf67](https://github.com/RedTurtle/design-comuni-plone-theme/commit/83baf67f135bdadfaa5b14e2934cd23d63b17a48))
2071
+ - rimossi campi headline e headlineTag da calendar block ([#78](https://github.com/RedTurtle/design-comuni-plone-theme/issues/78)) ([a3b1b16](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a3b1b1629246ba1243de0e0eeeead0ed17468a18))
2026
2072
 
2027
2073
  ## [8.0.0-alpha.7](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.6...v8.0.0-alpha.7) (2023-02-15)
2028
2074
 
2029
-
2030
2075
  ### Features
2031
2076
 
2032
- * added conditional to set pdf download in a new tab ([2fcbb2b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2fcbb2b09b620c69cbdedf72908c6d3c1c8b0200))
2033
- * allineamento bottone blocco elenco e linea sotto al titolo ([#58](https://github.com/RedTurtle/design-comuni-plone-theme/issues/58)) ([b3ca7de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3ca7dec2755f9bba6c52b61d14e1195f3f1fdc5))
2034
- * new color for links inside the draftjs editor on footer site config ([#63](https://github.com/RedTurtle/design-comuni-plone-theme/issues/63)) ([c735228](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c73522805db739568eb6e9e119018b11c644ec26))
2035
-
2077
+ - added conditional to set pdf download in a new tab ([2fcbb2b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2fcbb2b09b620c69cbdedf72908c6d3c1c8b0200))
2078
+ - allineamento bottone blocco elenco e linea sotto al titolo ([#58](https://github.com/RedTurtle/design-comuni-plone-theme/issues/58)) ([b3ca7de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3ca7dec2755f9bba6c52b61d14e1195f3f1fdc5))
2079
+ - new color for links inside the draftjs editor on footer site config ([#63](https://github.com/RedTurtle/design-comuni-plone-theme/issues/63)) ([c735228](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c73522805db739568eb6e9e119018b11c644ec26))
2036
2080
 
2037
2081
  ### Bug Fixes
2038
2082
 
2039
- * block twitter strutture re-done ([#75](https://github.com/RedTurtle/design-comuni-plone-theme/issues/75)) ([f9ffe63](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9ffe63b9231e9020f694cfedc9a1c1bcb784297))
2040
- * changed label accedi al servizio ([cf8e5f9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cf8e5f94647963dd5575f884ab92322760d43499))
2041
- * remove broken api expanders ([82c87c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/82c87c30b277d120ea1c50fcf23bb4ee50b1bac2))
2042
- * tipologia_notizia for non configured listing blocks ([1551f97](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1551f979c94fc052ef5779ee3e121c6f608cc042))
2043
- * uo view competenze ([1491da7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1491da786ba887f5b516b95e8712f662cb452106))
2044
- * upgraded design-react-kit ([21d9604](https://github.com/RedTurtle/design-comuni-plone-theme/commit/21d96049b605449617c2e7adc6df6411dff8f947))
2083
+ - block twitter strutture re-done ([#75](https://github.com/RedTurtle/design-comuni-plone-theme/issues/75)) ([f9ffe63](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9ffe63b9231e9020f694cfedc9a1c1bcb784297))
2084
+ - changed label accedi al servizio ([cf8e5f9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cf8e5f94647963dd5575f884ab92322760d43499))
2085
+ - remove broken api expanders ([82c87c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/82c87c30b277d120ea1c50fcf23bb4ee50b1bac2))
2086
+ - tipologia_notizia for non configured listing blocks ([1551f97](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1551f979c94fc052ef5779ee3e121c6f608cc042))
2087
+ - uo view competenze ([1491da7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1491da786ba887f5b516b95e8712f662cb452106))
2088
+ - upgraded design-react-kit ([21d9604](https://github.com/RedTurtle/design-comuni-plone-theme/commit/21d96049b605449617c2e7adc6df6411dff8f947))
2045
2089
 
2046
2090
  ## [8.0.0-alpha.6](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.5...v8.0.0-alpha.6) (2023-02-07)
2047
2091
 
2048
-
2049
2092
  ### Features
2050
2093
 
2051
- * google maps block restricted and removed from privacy options ([#71](https://github.com/RedTurtle/design-comuni-plone-theme/issues/71)) ([abbedf5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/abbedf5aaf1d1098a3b27156864724827dc1fd2e))
2052
- * upgraded design-react-kit and bootstrap-italia ([960ce5c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/960ce5cdcc1b49076c647b97852cea35972e6f2b))
2053
- * upgraded kit to latest next branch ([353df7d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/353df7d4f5128351c31b6459d0110a7bfcfde278))
2054
- * upgraded volto to 16.10.0 ([c9d0cf6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9d0cf61a8d6f3a44e07d764f060ff4c08663e46))
2055
- * use new api expanders to reduce the number of api calls ([5cb3904](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5cb3904643a2545cd8baa40ccf26cf596b1a6264))
2056
- * use new Progress component for content types side menus ([adc3dd5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/adc3dd5dd712a8f2f32f5913606032ebba88b64f))
2057
-
2094
+ - google maps block restricted and removed from privacy options ([#71](https://github.com/RedTurtle/design-comuni-plone-theme/issues/71)) ([abbedf5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/abbedf5aaf1d1098a3b27156864724827dc1fd2e))
2095
+ - upgraded design-react-kit and bootstrap-italia ([960ce5c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/960ce5cdcc1b49076c647b97852cea35972e6f2b))
2096
+ - upgraded kit to latest next branch ([353df7d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/353df7d4f5128351c31b6459d0110a7bfcfde278))
2097
+ - upgraded volto to 16.10.0 ([c9d0cf6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c9d0cf61a8d6f3a44e07d764f060ff4c08663e46))
2098
+ - use new api expanders to reduce the number of api calls ([5cb3904](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5cb3904643a2545cd8baa40ccf26cf596b1a6264))
2099
+ - use new Progress component for content types side menus ([adc3dd5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/adc3dd5dd712a8f2f32f5913606032ebba88b64f))
2058
2100
 
2059
2101
  ### Bug Fixes
2060
2102
 
2061
- * card category with new taxonomies ([a99af4f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a99af4f0add3e7527fa27c2f6c8ddb42d925b4ed))
2062
- * race condition on service deadlines ([8ad445c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8ad445cef490ad44e5f7d054901db521f410bca5))
2063
- * remove custom headings color ([ed507e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ed507e84c16e3c3d388f8d5d28a1d2ceb34aac5b))
2064
- * show persona fields even without incarico ([d439e6b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d439e6baf6d1316172a5e3330323b27b2e5a60b6))
2065
- * temporary fix for tests ([e19ca71](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e19ca714644607794f631d5af40225e27e75a424))
2066
-
2103
+ - card category with new taxonomies ([a99af4f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a99af4f0add3e7527fa27c2f6c8ddb42d925b4ed))
2104
+ - race condition on service deadlines ([8ad445c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8ad445cef490ad44e5f7d054901db521f410bca5))
2105
+ - remove custom headings color ([ed507e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ed507e84c16e3c3d388f8d5d28a1d2ceb34aac5b))
2106
+ - show persona fields even without incarico ([d439e6b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d439e6baf6d1316172a5e3330323b27b2e5a60b6))
2107
+ - temporary fix for tests ([e19ca71](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e19ca714644607794f631d5af40225e27e75a424))
2067
2108
 
2068
2109
  ### Maintenance
2069
2110
 
2070
- * fix build pipeline and reintroduce auto deployment ([6481d8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6481d8c5e6917837e1ba0356ac05a989a552388d))
2111
+ - fix build pipeline and reintroduce auto deployment ([6481d8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6481d8c5e6917837e1ba0356ac05a989a552388d))
2071
2112
 
2072
2113
  ## [8.0.0-alpha.5](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.4...v8.0.0-alpha.5) (2023-02-03)
2073
2114
 
2074
-
2075
2115
  ### Bug Fixes
2076
2116
 
2077
- * adapt to new taxonomies ([bdd10ca](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bdd10ca8ca4121fce105f740728e139ace792d18))
2078
- * added some margin to 'punti di contatti' card inside UO ([#65](https://github.com/RedTurtle/design-comuni-plone-theme/issues/65)) ([8eaf326](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8eaf326715e81ed673d0e26ab8efcb3df291c780))
2079
- * campi mancanti nelle view ([#67](https://github.com/RedTurtle/design-comuni-plone-theme/issues/67)) ([f51f9ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f51f9ec35c0abf18fe77d627e0af4599310b8db6))
2080
- * content type views section components keys breaking related items ([#66](https://github.com/RedTurtle/design-comuni-plone-theme/issues/66)) ([f16095d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f16095da597cbdb3325410eba4f0f40b37aaaf06))
2117
+ - adapt to new taxonomies ([bdd10ca](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bdd10ca8ca4121fce105f740728e139ace792d18))
2118
+ - added some margin to 'punti di contatti' card inside UO ([#65](https://github.com/RedTurtle/design-comuni-plone-theme/issues/65)) ([8eaf326](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8eaf326715e81ed673d0e26ab8efcb3df291c780))
2119
+ - campi mancanti nelle view ([#67](https://github.com/RedTurtle/design-comuni-plone-theme/issues/67)) ([f51f9ec](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f51f9ec35c0abf18fe77d627e0af4599310b8db6))
2120
+ - content type views section components keys breaking related items ([#66](https://github.com/RedTurtle/design-comuni-plone-theme/issues/66)) ([f16095d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f16095da597cbdb3325410eba4f0f40b37aaaf06))
2081
2121
 
2082
2122
  ## [8.0.0-alpha.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.3...v8.0.0-alpha.4) (2023-01-24)
2083
2123
 
2084
-
2085
2124
  ### Features
2086
2125
 
2087
- * added field procedure_collegate to ServizioView ([c039c58](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c039c58c0b9d1378cf2b5d82366f9119ec59df73))
2088
- * moved motivo_stato_servizio to page header ([3c4e4da](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c4e4da7bd9d10f188c8375663568db4b9f51ec7))
2089
- * upgraded volto to 16.8.1 ([19b1203](https://github.com/RedTurtle/design-comuni-plone-theme/commit/19b1203b062dac2e096542600cf0a735606c1f0a))
2090
-
2126
+ - added field procedure_collegate to ServizioView ([c039c58](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c039c58c0b9d1378cf2b5d82366f9119ec59df73))
2127
+ - moved motivo_stato_servizio to page header ([3c4e4da](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c4e4da7bd9d10f188c8375663568db4b9f51ec7))
2128
+ - upgraded volto to 16.8.1 ([19b1203](https://github.com/RedTurtle/design-comuni-plone-theme/commit/19b1203b062dac2e096542600cf0a735606c1f0a))
2091
2129
 
2092
2130
  ### Bug Fixes
2093
2131
 
2094
- * cleanup className errors ([b971f31](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b971f3138c370df39518bf13aa072fa1ef9ffb24))
2095
- * do not show titles of empty fields in ServizioView ([7d81ccf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7d81ccfaed5addf9de6b223316d487d96230e13d))
2096
- * flatten image urls ([ed900a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ed900a2b5ed651d7c341cf0043b7cf4b9da12fb2))
2097
- * link tag in some CardReadMore usages ([8b6a75e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8b6a75e8bb9f1ff402451b3a21208832e3371930))
2098
- * listing image when no image is set on the item ([9b4b7db](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9b4b7db85215635be460e673598c9c2554254068))
2099
- * ordering and labels in DocumentoView ([79b6743](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79b67433be96e64a3ae6a3379586d7e665af3743))
2100
- * remove subtitle from h1 tag ([27eb014](https://github.com/RedTurtle/design-comuni-plone-theme/commit/27eb014cff1d6ccec6a61020366ef5ab303570f6))
2101
- * show stato_servizio even when null ([24d89e5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24d89e50177ab040135d9b58e8fcbccb4bf66fb0))
2102
- * show stato_servizio even when null ([43541f5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43541f5d092941ecc9888ac0c4f937fa085b6849))
2103
-
2132
+ - cleanup className errors ([b971f31](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b971f3138c370df39518bf13aa072fa1ef9ffb24))
2133
+ - do not show titles of empty fields in ServizioView ([7d81ccf](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7d81ccfaed5addf9de6b223316d487d96230e13d))
2134
+ - flatten image urls ([ed900a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ed900a2b5ed651d7c341cf0043b7cf4b9da12fb2))
2135
+ - link tag in some CardReadMore usages ([8b6a75e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8b6a75e8bb9f1ff402451b3a21208832e3371930))
2136
+ - listing image when no image is set on the item ([9b4b7db](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9b4b7db85215635be460e673598c9c2554254068))
2137
+ - ordering and labels in DocumentoView ([79b6743](https://github.com/RedTurtle/design-comuni-plone-theme/commit/79b67433be96e64a3ae6a3379586d7e665af3743))
2138
+ - remove subtitle from h1 tag ([27eb014](https://github.com/RedTurtle/design-comuni-plone-theme/commit/27eb014cff1d6ccec6a61020366ef5ab303570f6))
2139
+ - show stato_servizio even when null ([24d89e5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24d89e50177ab040135d9b58e8fcbccb4bf66fb0))
2140
+ - show stato_servizio even when null ([43541f5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/43541f5d092941ecc9888ac0c4f937fa085b6849))
2104
2141
 
2105
2142
  ### Maintenance
2106
2143
 
2107
- * enhanced test-setup-config ([9b45002](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9b450021020f7d3639d28b39e49084e471e94933))
2108
- * fix config in tests, was missing italiaConfig ([83c5937](https://github.com/RedTurtle/design-comuni-plone-theme/commit/83c5937dc4418eb2befa4f211c91ecd51da3d380))
2109
- * fix test config ([1d924c1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1d924c1fdabbdabea99b93499a87bc605dbab014))
2110
- * fixed ServizioView test ([9ffa964](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9ffa9645af5e73c5fa1b6a1be9422647a2799bc3))
2111
- * twitter image profile removed ([fe733ab](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fe733ab2b9c890e14cca8960712a844c4e8b0f08))
2144
+ - enhanced test-setup-config ([9b45002](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9b450021020f7d3639d28b39e49084e471e94933))
2145
+ - fix config in tests, was missing italiaConfig ([83c5937](https://github.com/RedTurtle/design-comuni-plone-theme/commit/83c5937dc4418eb2befa4f211c91ecd51da3d380))
2146
+ - fix test config ([1d924c1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1d924c1fdabbdabea99b93499a87bc605dbab014))
2147
+ - fixed ServizioView test ([9ffa964](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9ffa9645af5e73c5fa1b6a1be9422647a2799bc3))
2148
+ - twitter image profile removed ([fe733ab](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fe733ab2b9c890e14cca8960712a844c4e8b0f08))
2112
2149
 
2113
2150
  ## [8.0.0-alpha.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.2...v8.0.0-alpha.3) (2023-01-17)
2114
2151
 
2115
-
2116
2152
  ### Bug Fixes
2117
2153
 
2118
- * i18n in pdc view ([eb67d56](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb67d56fbd464cab1fa1ed0a1b780b944a7b4b84))
2119
- * image component with Plone 6 images_scales ([#56](https://github.com/RedTurtle/design-comuni-plone-theme/issues/56)) ([5f97ac9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f97ac963764c2b239298b66ff7bbe7652f9f135))
2120
- * missing locales ([0729bd6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0729bd6e1aa8ff407b81c51aa99c9a32ad903899))
2121
- * persona view fields not showing properly ([bc54385](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc5438517b4806b13e77b925db3fe56b104f02c3))
2122
- * toolbar z-index in contents view ([e3b90de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e3b90dedb416e278043b9415151f9baeff71c87f))
2123
-
2154
+ - i18n in pdc view ([eb67d56](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb67d56fbd464cab1fa1ed0a1b780b944a7b4b84))
2155
+ - image component with Plone 6 images_scales ([#56](https://github.com/RedTurtle/design-comuni-plone-theme/issues/56)) ([5f97ac9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f97ac963764c2b239298b66ff7bbe7652f9f135))
2156
+ - missing locales ([0729bd6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0729bd6e1aa8ff407b81c51aa99c9a32ad903899))
2157
+ - persona view fields not showing properly ([bc54385](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc5438517b4806b13e77b925db3fe56b104f02c3))
2158
+ - toolbar z-index in contents view ([e3b90de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e3b90dedb416e278043b9415151f9baeff71c87f))
2124
2159
 
2125
2160
  ### Maintenance
2126
2161
 
2127
- * added sample test for CardPersona ([413d433](https://github.com/RedTurtle/design-comuni-plone-theme/commit/413d4338e8d933cb97d197086ce375ab3f2c48ac))
2162
+ - added sample test for CardPersona ([413d433](https://github.com/RedTurtle/design-comuni-plone-theme/commit/413d4338e8d933cb97d197086ce375ab3f2c48ac))
2128
2163
 
2129
2164
  ## [8.0.0-alpha.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.0.0-alpha.1...v8.0.0-alpha.2) (2023-01-13)
2130
2165
 
2131
-
2132
2166
  ### Features
2133
2167
 
2134
- * upgrade volto-data-grid-widget to 2.1.0 ([#55](https://github.com/RedTurtle/design-comuni-plone-theme/issues/55)) ([e9f8700](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9f8700c6f6a70ca16c5ffbcdfa93576f301c1db))
2135
-
2168
+ - upgrade volto-data-grid-widget to 2.1.0 ([#55](https://github.com/RedTurtle/design-comuni-plone-theme/issues/55)) ([e9f8700](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9f8700c6f6a70ca16c5ffbcdfa93576f301c1db))
2136
2169
 
2137
2170
  ### Bug Fixes
2138
2171
 
2139
- * upgraded volto-data-grid-widget to 2.0.0 ([d00b773](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d00b773f33588c7a0456106ee628054a00cb6a02))
2140
-
2172
+ - upgraded volto-data-grid-widget to 2.0.0 ([d00b773](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d00b773f33588c7a0456106ee628054a00cb6a02))
2141
2173
 
2142
2174
  ### Maintenance
2143
2175
 
2144
- * cleanup unused import ([6de76ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6de76edc4f98f609ef2ca1ce3926f6d68d296134))
2176
+ - cleanup unused import ([6de76ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6de76edc4f98f609ef2ca1ce3926f6d68d296134))
2145
2177
 
2146
2178
  ## [8.0.0-alpha.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0...v8.0.0-alpha.1) (2023-01-12)
2147
2179
 
2148
-
2149
2180
  ### ⚠ BREAKING CHANGES
2150
2181
 
2151
- * upgraded design-react-kit 4.0.2 and bootstrap-italia to last v1
2182
+ - upgraded design-react-kit 4.0.2 and bootstrap-italia to last v1
2152
2183
 
2153
2184
  ### Features
2154
2185
 
2155
- * added filed servizio attivo/non attivo ([#19](https://github.com/RedTurtle/design-comuni-plone-theme/issues/19)) ([069dd90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/069dd9089a17dd819efbacbf014b1e79c386fefb))
2156
- * luogo view ([#52](https://github.com/RedTurtle/design-comuni-plone-theme/issues/52)) ([81512bd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/81512bdca916a61f78c0691341d38c11a8d831d9))
2157
- * nuova vista servizio, validazione campi del servizio ([#46](https://github.com/RedTurtle/design-comuni-plone-theme/issues/46)) ([64885de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/64885de071db9837c486d8210c95285feeb09411))
2158
- * punti di contatto e incarichi ([#48](https://github.com/RedTurtle/design-comuni-plone-theme/issues/48)) ([257d2c9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/257d2c9177b355c3144a687131153b232ce588c6))
2159
- * tempi e scadenze servizio ([#47](https://github.com/RedTurtle/design-comuni-plone-theme/issues/47)) ([8181820](https://github.com/RedTurtle/design-comuni-plone-theme/commit/81818202fa10c1cad3a4e57812bedb08ed562c6a))
2160
- * upgraded design-react-kit 4.0.2 and bootstrap-italia to last v1 ([f61c2c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f61c2c3d118e7b1986d1041b0f281d7082ae0164))
2161
- * upgraded volto to 16.7.0 ([d1fb2f4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d1fb2f48b4a6754a509251a3445557c0b4dec351))
2162
- * view unita organizzativa ([#51](https://github.com/RedTurtle/design-comuni-plone-theme/issues/51)) ([d562d1f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d562d1f2de714fef8cca3ba639b340135ce0da0a))
2163
-
2186
+ - added filed servizio attivo/non attivo ([#19](https://github.com/RedTurtle/design-comuni-plone-theme/issues/19)) ([069dd90](https://github.com/RedTurtle/design-comuni-plone-theme/commit/069dd9089a17dd819efbacbf014b1e79c386fefb))
2187
+ - luogo view ([#52](https://github.com/RedTurtle/design-comuni-plone-theme/issues/52)) ([81512bd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/81512bdca916a61f78c0691341d38c11a8d831d9))
2188
+ - nuova vista servizio, validazione campi del servizio ([#46](https://github.com/RedTurtle/design-comuni-plone-theme/issues/46)) ([64885de](https://github.com/RedTurtle/design-comuni-plone-theme/commit/64885de071db9837c486d8210c95285feeb09411))
2189
+ - punti di contatto e incarichi ([#48](https://github.com/RedTurtle/design-comuni-plone-theme/issues/48)) ([257d2c9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/257d2c9177b355c3144a687131153b232ce588c6))
2190
+ - tempi e scadenze servizio ([#47](https://github.com/RedTurtle/design-comuni-plone-theme/issues/47)) ([8181820](https://github.com/RedTurtle/design-comuni-plone-theme/commit/81818202fa10c1cad3a4e57812bedb08ed562c6a))
2191
+ - upgraded design-react-kit 4.0.2 and bootstrap-italia to last v1 ([f61c2c3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f61c2c3d118e7b1986d1041b0f281d7082ae0164))
2192
+ - upgraded volto to 16.7.0 ([d1fb2f4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d1fb2f48b4a6754a509251a3445557c0b4dec351))
2193
+ - view unita organizzativa ([#51](https://github.com/RedTurtle/design-comuni-plone-theme/issues/51)) ([d562d1f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d562d1f2de714fef8cca3ba639b340135ce0da0a))
2164
2194
 
2165
2195
  ### Bug Fixes
2166
2196
 
2167
- * cleanup old styles ([fc4703d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc4703dd4fcc3f36c54d94242e3f2eba7f6eb699))
2168
- * correct the path to script i18n ([#20](https://github.com/RedTurtle/design-comuni-plone-theme/issues/20)) ([1c888a8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1c888a89df069cfd7baf28d03ea871de3fdf3f21))
2169
- * date aperte e ricorrenze ([#53](https://github.com/RedTurtle/design-comuni-plone-theme/issues/53)) ([70bab86](https://github.com/RedTurtle/design-comuni-plone-theme/commit/70bab86d3b8959f8421f5021ece65bdcac1a36e5))
2170
- * imports ([5371df7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5371df7fe1ce22c7fc682cd393944ac20cae6c18))
2171
- * incarichi changed to incarichi_persona ([fbb3773](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fbb377342d6e176126dcb43ab5534397aa78ee82))
2172
- * more style fixes after migration ([e6b8712](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6b8712dfdd2ba6dcff6b801e320233160f638bb))
2173
- * removed unused locales ([85ddc78](https://github.com/RedTurtle/design-comuni-plone-theme/commit/85ddc7880c3de0d6fbd2069474927d4f6cb5b62d))
2174
- * search view label transition fixed ([#34](https://github.com/RedTurtle/design-comuni-plone-theme/issues/34)) ([ea6d489](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ea6d4890a18c3d0dc409c86a7186a6554b9313f7))
2175
- * servizio attivo ([#31](https://github.com/RedTurtle/design-comuni-plone-theme/issues/31)) ([b31b4ba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b31b4ba0c438a94ba590deccae52e7550f884ff7))
2176
- * style fixes ([e185fa3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e185fa3073178056bad6d14cc2ab1faf376aa717))
2177
- * style fixes ([9113848](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9113848af2f5780c21317cd38ec33f057372958f))
2178
- * uo services cards ([aedb5b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aedb5b8bb6e507152f3a34dfeca02e09cd1fab23))
2179
- * updated locales ([6601e91](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6601e91d159b48dad20635eaf673c5305d4b92c8))
2180
-
2197
+ - cleanup old styles ([fc4703d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc4703dd4fcc3f36c54d94242e3f2eba7f6eb699))
2198
+ - correct the path to script i18n ([#20](https://github.com/RedTurtle/design-comuni-plone-theme/issues/20)) ([1c888a8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1c888a89df069cfd7baf28d03ea871de3fdf3f21))
2199
+ - date aperte e ricorrenze ([#53](https://github.com/RedTurtle/design-comuni-plone-theme/issues/53)) ([70bab86](https://github.com/RedTurtle/design-comuni-plone-theme/commit/70bab86d3b8959f8421f5021ece65bdcac1a36e5))
2200
+ - imports ([5371df7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5371df7fe1ce22c7fc682cd393944ac20cae6c18))
2201
+ - incarichi changed to incarichi_persona ([fbb3773](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fbb377342d6e176126dcb43ab5534397aa78ee82))
2202
+ - more style fixes after migration ([e6b8712](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6b8712dfdd2ba6dcff6b801e320233160f638bb))
2203
+ - removed unused locales ([85ddc78](https://github.com/RedTurtle/design-comuni-plone-theme/commit/85ddc7880c3de0d6fbd2069474927d4f6cb5b62d))
2204
+ - search view label transition fixed ([#34](https://github.com/RedTurtle/design-comuni-plone-theme/issues/34)) ([ea6d489](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ea6d4890a18c3d0dc409c86a7186a6554b9313f7))
2205
+ - servizio attivo ([#31](https://github.com/RedTurtle/design-comuni-plone-theme/issues/31)) ([b31b4ba](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b31b4ba0c438a94ba590deccae52e7550f884ff7))
2206
+ - style fixes ([e185fa3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e185fa3073178056bad6d14cc2ab1faf376aa717))
2207
+ - style fixes ([9113848](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9113848af2f5780c21317cd38ec33f057372958f))
2208
+ - uo services cards ([aedb5b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/aedb5b8bb6e507152f3a34dfeca02e09cd1fab23))
2209
+ - updated locales ([6601e91](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6601e91d159b48dad20635eaf673c5305d4b92c8))
2181
2210
 
2182
2211
  ### Maintenance
2183
2212
 
2184
- * disable auto deployment for releases ([0415b54](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0415b547720a5183dba55a69ed2d40c18d5fc79e))
2185
- * prepare for alpha deployment ([addeac3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/addeac3a02c25d9282f71ade3d15b063b9c89f37))
2186
- * removed alpha workflow and removed auto-deploy from develop workflow ([1ec92b2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1ec92b26c5d3dc0a87f9a0ebccdb40b82546d9b3))
2213
+ - disable auto deployment for releases ([0415b54](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0415b547720a5183dba55a69ed2d40c18d5fc79e))
2214
+ - prepare for alpha deployment ([addeac3](https://github.com/RedTurtle/design-comuni-plone-theme/commit/addeac3a02c25d9282f71ade3d15b063b9c89f37))
2215
+ - removed alpha workflow and removed auto-deploy from develop workflow ([1ec92b2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1ec92b26c5d3dc0a87f9a0ebccdb40b82546d9b3))
2187
2216
 
2188
2217
  ## [7.0.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.12...v7.0.0) (2023-01-11)
2189
2218
 
2190
-
2191
2219
  ### Bug Fixes
2192
2220
 
2193
- * remove sort_order from search query by date. Sort order is managed by backend ([#45](https://github.com/RedTurtle/design-comuni-plone-theme/issues/45)) ([802a98d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/802a98d003989c3ac7835db6d712c4d439d0f680))
2194
-
2221
+ - remove sort_order from search query by date. Sort order is managed by backend ([#45](https://github.com/RedTurtle/design-comuni-plone-theme/issues/45)) ([802a98d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/802a98d003989c3ac7835db6d712c4d439d0f680))
2195
2222
 
2196
2223
  ### Documentation
2197
2224
 
2198
- * improve conventional changelog ([5f70e72](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f70e725f5336e78f74899147bf325c9f85d2c44))
2225
+ - improve conventional changelog ([5f70e72](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f70e725f5336e78f74899147bf325c9f85d2c44))
2199
2226
 
2200
2227
  ## [7.0.0-alpha.12](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.11...v7.0.0-alpha.12) (2023-01-03)
2201
2228
 
2202
-
2203
2229
  ### Bug Fixes
2204
2230
 
2205
- * customized arrayWidget to fix condition of select without vocabulary ([#44](https://github.com/RedTurtle/design-comuni-plone-theme/issues/44)) ([d7d34cb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7d34cb4b870f36477cb19d43b468e236172e45c))
2206
-
2231
+ - customized arrayWidget to fix condition of select without vocabulary ([#44](https://github.com/RedTurtle/design-comuni-plone-theme/issues/44)) ([d7d34cb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d7d34cb4b870f36477cb19d43b468e236172e45c))
2207
2232
 
2208
2233
  ### Documentation
2209
2234
 
2210
- * improve conventional changelog ([1143ed8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1143ed83cd33d2f807dcc56276a734c4a71c4882))
2235
+ - improve conventional changelog ([1143ed8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1143ed83cd33d2f807dcc56276a734c4a71c4882))
2211
2236
 
2212
2237
  ## [7.0.0-alpha.11](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.10...v7.0.0-alpha.11) (2022-12-30)
2213
2238
 
2214
-
2215
2239
  ### Features
2216
2240
 
2217
- * hideable footer sub items ([#37](https://github.com/RedTurtle/design-comuni-plone-theme/issues/37)) ([567a2ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/567a2ed1df49e3913492600a145838f76c344c64))
2218
-
2241
+ - hideable footer sub items ([#37](https://github.com/RedTurtle/design-comuni-plone-theme/issues/37)) ([567a2ed](https://github.com/RedTurtle/design-comuni-plone-theme/commit/567a2ed1df49e3913492600a145838f76c344c64))
2219
2242
 
2220
2243
  ### Bug Fixes
2221
2244
 
2222
- * fixed layoutViewsNamesMapping config ([#39](https://github.com/RedTurtle/design-comuni-plone-theme/issues/39)) ([fff7819](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fff781944344887329cc4e956e62d8904535d0b5))
2223
- * image in complete block links template ([#38](https://github.com/RedTurtle/design-comuni-plone-theme/issues/38)) ([24b4109](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24b4109ce89bca515a199ab6aa624a90969598fc))
2224
- * modulistica view race condition on rendering content items ([#43](https://github.com/RedTurtle/design-comuni-plone-theme/issues/43)) ([f51dd5f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f51dd5f1cbc2679cf16f8bd84b4e29f3ef7c1925))
2225
- * race condition in rendering the toolbar in multilingual sites after saving a page ([6e557b1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6e557b1c5b65e09103cd5df79fca40f709a9482c))
2245
+ - fixed layoutViewsNamesMapping config ([#39](https://github.com/RedTurtle/design-comuni-plone-theme/issues/39)) ([fff7819](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fff781944344887329cc4e956e62d8904535d0b5))
2246
+ - image in complete block links template ([#38](https://github.com/RedTurtle/design-comuni-plone-theme/issues/38)) ([24b4109](https://github.com/RedTurtle/design-comuni-plone-theme/commit/24b4109ce89bca515a199ab6aa624a90969598fc))
2247
+ - modulistica view race condition on rendering content items ([#43](https://github.com/RedTurtle/design-comuni-plone-theme/issues/43)) ([f51dd5f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f51dd5f1cbc2679cf16f8bd84b4e29f3ef7c1925))
2248
+ - race condition in rendering the toolbar in multilingual sites after saving a page ([6e557b1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6e557b1c5b65e09103cd5df79fca40f709a9482c))
2226
2249
 
2227
2250
  ## [7.0.0-alpha.10](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.9...v7.0.0-alpha.10) (2022-12-23)
2228
2251
 
2229
-
2230
2252
  ### Features
2231
2253
 
2232
- * upgraded volto to 16.6.0 ([47ea40d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/47ea40d247cd42911a112394ab60a7d084915849))
2233
-
2254
+ - upgraded volto to 16.6.0 ([47ea40d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/47ea40d247cd42911a112394ab60a7d084915849))
2234
2255
 
2235
2256
  ### Bug Fixes
2236
2257
 
2237
- * IntersectionObserver.unobserve: Argument 1 is not an object ([#36](https://github.com/RedTurtle/design-comuni-plone-theme/issues/36)) ([b3e6870](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3e687016febead7daba781d3ec5bbab402b051c))
2238
- * related items preview image ([#35](https://github.com/RedTurtle/design-comuni-plone-theme/issues/35)) ([d48c48d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d48c48dc9cea05a2b07e241c24e934664b59e548))
2258
+ - IntersectionObserver.unobserve: Argument 1 is not an object ([#36](https://github.com/RedTurtle/design-comuni-plone-theme/issues/36)) ([b3e6870](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b3e687016febead7daba781d3ec5bbab402b051c))
2259
+ - related items preview image ([#35](https://github.com/RedTurtle/design-comuni-plone-theme/issues/35)) ([d48c48d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/d48c48dc9cea05a2b07e241c24e934664b59e548))
2239
2260
 
2240
2261
  ## [7.0.0-alpha.9](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.8...v7.0.0-alpha.9) (2022-12-20)
2241
2262
 
2242
-
2243
2263
  ### Bug Fixes
2244
2264
 
2245
- * install volto-sentry to restore sentry functionality ([5f7fe26](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f7fe2638501f9f587f02662bfaca70bbfc26bf3))
2265
+ - install volto-sentry to restore sentry functionality ([5f7fe26](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5f7fe2638501f9f587f02662bfaca70bbfc26bf3))
2246
2266
 
2247
2267
  ## [7.0.0-alpha.8](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.7...v7.0.0-alpha.8) (2022-12-19)
2248
2268
 
2249
-
2250
2269
  ### Bug Fixes
2251
2270
 
2252
- * race condition in Diff view and components, better diff preview for native volto blocks ([#30](https://github.com/RedTurtle/design-comuni-plone-theme/issues/30)) ([fc6535e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc6535e6912bf7d52632a5830651bd53d2d656a9))
2253
- * updated locales ([4433ed9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4433ed9487ea1ff6d0604445ab80b148c4ee7a45))
2254
- * upgraded volto-subfooter volto-secondarymenu volto-dropdownmenu ([2ce140c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ce140c0b1b5d3601f727fc158eb2e6e6b16a5c8))
2271
+ - race condition in Diff view and components, better diff preview for native volto blocks ([#30](https://github.com/RedTurtle/design-comuni-plone-theme/issues/30)) ([fc6535e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fc6535e6912bf7d52632a5830651bd53d2d656a9))
2272
+ - updated locales ([4433ed9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4433ed9487ea1ff6d0604445ab80b148c4ee7a45))
2273
+ - upgraded volto-subfooter volto-secondarymenu volto-dropdownmenu ([2ce140c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2ce140c0b1b5d3601f727fc158eb2e6e6b16a5c8))
2255
2274
 
2256
2275
  ## [7.0.0-alpha.7](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.6...v7.0.0-alpha.7) (2022-12-18)
2257
2276
 
2258
-
2259
2277
  ### Features
2260
2278
 
2261
- * upgraded volto-editablefooter to 5.0.1 ([3be20c0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3be20c0ea6922d7b249d8d1754169aba66de6dab))
2279
+ - upgraded volto-editablefooter to 5.0.1 ([3be20c0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3be20c0ea6922d7b249d8d1754169aba66de6dab))
2262
2280
 
2263
2281
  ## [7.0.0-alpha.6](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.5...v7.0.0-alpha.6) (2022-12-16)
2264
2282
 
2265
-
2266
2283
  ### Bug Fixes
2267
2284
 
2268
- * version overview customization ([80606fb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80606fbeec5ac9fe072f12f887b61c1ad904c219))
2269
-
2285
+ - version overview customization ([80606fb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/80606fbeec5ac9fe072f12f887b61c1ad904c219))
2270
2286
 
2271
2287
  ### Maintenance
2272
2288
 
2273
- * re-add locales in lint-staged ([bc649d0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc649d05cb7e142456c6f9e6ac33b70cbb90f683))
2289
+ - re-add locales in lint-staged ([bc649d0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/bc649d05cb7e142456c6f9e6ac33b70cbb90f683))
2274
2290
 
2275
2291
  ## [7.0.0-alpha.5](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.4...v7.0.0-alpha.5) (2022-12-16)
2276
2292
 
2277
-
2278
2293
  ### Features
2279
2294
 
2280
- * upgraded volto to 16.5.0 ([6404b0d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6404b0d5a7c83b2603227ab72e6322df9f09f015))
2281
-
2295
+ - upgraded volto to 16.5.0 ([6404b0d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6404b0d5a7c83b2603227ab72e6322df9f09f015))
2282
2296
 
2283
2297
  ### Bug Fixes
2284
2298
 
2285
- * version overview customization ([95332b9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/95332b9ee9fbad337a0b473615f0e8e33694460e))
2299
+ - version overview customization ([95332b9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/95332b9ee9fbad337a0b473615f0e8e33694460e))
2286
2300
 
2287
2301
  ## [7.0.0-alpha.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.3...v7.0.0-alpha.4) (2022-12-16)
2288
2302
 
2289
-
2290
2303
  ### Features
2291
2304
 
2292
- * added io-Comune version in controlpanels view ([#17](https://github.com/RedTurtle/design-comuni-plone-theme/issues/17)) ([f8c38fc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f8c38fc283f8fbebc523d18a9209e259991aa29c))
2293
- * file view custom ([#25](https://github.com/RedTurtle/design-comuni-plone-theme/issues/25)) ([90ce17e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/90ce17e2e2c7239a521c8cacc4edd4f4d0dd843e))
2294
- * use image_scales metadata ([#14](https://github.com/RedTurtle/design-comuni-plone-theme/issues/14)) ([12a4c2e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/12a4c2e7a80fcece8c94e51004ace78dc307e1f8))
2295
-
2305
+ - added io-Comune version in controlpanels view ([#17](https://github.com/RedTurtle/design-comuni-plone-theme/issues/17)) ([f8c38fc](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f8c38fc283f8fbebc523d18a9209e259991aa29c))
2306
+ - file view custom ([#25](https://github.com/RedTurtle/design-comuni-plone-theme/issues/25)) ([90ce17e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/90ce17e2e2c7239a521c8cacc4edd4f4d0dd843e))
2307
+ - use image_scales metadata ([#14](https://github.com/RedTurtle/design-comuni-plone-theme/issues/14)) ([12a4c2e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/12a4c2e7a80fcece8c94e51004ace78dc307e1f8))
2296
2308
 
2297
2309
  ### Bug Fixes
2298
2310
 
2299
- * editable footer errors and style ([#23](https://github.com/RedTurtle/design-comuni-plone-theme/issues/23)) ([f050b62](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f050b625f4e5201523bd55c8e0d2722a107d7d0f))
2300
- * history view ([#27](https://github.com/RedTurtle/design-comuni-plone-theme/issues/27)) ([f2ddda7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f2ddda7eb39f74e29749ab7c886ed838ab17326d))
2301
- * remove new volto headlines configs from listing block ([#28](https://github.com/RedTurtle/design-comuni-plone-theme/issues/28)) ([157577b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/157577b7c063287d70c6e14125b552d80cd29641))
2311
+ - editable footer errors and style ([#23](https://github.com/RedTurtle/design-comuni-plone-theme/issues/23)) ([f050b62](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f050b625f4e5201523bd55c8e0d2722a107d7d0f))
2312
+ - history view ([#27](https://github.com/RedTurtle/design-comuni-plone-theme/issues/27)) ([f2ddda7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f2ddda7eb39f74e29749ab7c886ed838ab17326d))
2313
+ - remove new volto headlines configs from listing block ([#28](https://github.com/RedTurtle/design-comuni-plone-theme/issues/28)) ([157577b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/157577b7c063287d70c6e14125b552d80cd29641))
2302
2314
 
2303
2315
  ## [7.0.0-alpha.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.2...v7.0.0-alpha.3) (2022-12-15)
2304
2316
 
2305
-
2306
2317
  ### Bug Fixes
2307
2318
 
2308
- * upgraded volto-venue to 4.0.2 ([b7205a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7205a412d57c3d816aac993ec94944b2aec8286))
2319
+ - upgraded volto-venue to 4.0.2 ([b7205a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b7205a412d57c3d816aac993ec94944b2aec8286))
2309
2320
 
2310
2321
  ## [7.0.0-alpha.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v7.0.0-alpha.1...v7.0.0-alpha.2) (2022-12-15)
2311
2322
 
2312
-
2313
2323
  ### Bug Fixes
2314
2324
 
2315
- * upgraded volto-venue to 4.0.1 ([cafbec6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cafbec6c2d460553e53cefb867fd29c47613843d))
2325
+ - upgraded volto-venue to 4.0.1 ([cafbec6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/cafbec6c2d460553e53cefb867fd29c47613843d))
2316
2326
 
2317
2327
  ## [7.0.0-alpha.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v6.5.0...v7.0.0-alpha.1) (2022-12-11)
2318
2328
 
2319
-
2320
2329
  ### ⚠ BREAKING CHANGES
2321
2330
 
2322
- * moment locales restrict to it/en (#15)
2323
- * change name to design-comuni-plone-theme
2331
+ - moment locales restrict to it/en (#15)
2332
+ - change name to design-comuni-plone-theme
2324
2333
 
2325
2334
  ### Features
2326
2335
 
2327
- * added checkbox for date in block HighlightedContent ([#7](https://github.com/RedTurtle/design-comuni-plone-theme/issues/7)) ([b1a3bce](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1a3bceccfa34a1d878465506c0b3657da546f54))
2328
- * added data-element on MegaMenu ([#610](https://github.com/RedTurtle/design-comuni-plone-theme/issues/610)) ([2e51337](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2e51337cb0b969da51cf9a810d81321b415c0c95))
2329
- * data-element added to footer menu and secondary menu ([#611](https://github.com/RedTurtle/design-comuni-plone-theme/issues/611)) ([ef2e748](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ef2e748be536ff1d32c51c67c1a71cd2dcc59243))
2330
- * lighthouse data-element tag on draftjs ([009c01e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/009c01e9f9a9ce31e4b4397f4eec199da8f71ef2))
2331
- * upgrade to volto16 ([#605](https://github.com/RedTurtle/design-comuni-plone-theme/issues/605)) ([e6be34d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6be34d025b7485c26873e530a3a3587c0706692)), closes [plone/volto#2103](https://github.com/plone/volto/issues/2103)
2332
- * upgraded volto to 16.3.0 ([1115a79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1115a799f6734bb3cebdcc7f879afdee5adf3d66))
2333
-
2336
+ - added checkbox for date in block HighlightedContent ([#7](https://github.com/RedTurtle/design-comuni-plone-theme/issues/7)) ([b1a3bce](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b1a3bceccfa34a1d878465506c0b3657da546f54))
2337
+ - added data-element on MegaMenu ([#610](https://github.com/RedTurtle/design-comuni-plone-theme/issues/610)) ([2e51337](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2e51337cb0b969da51cf9a810d81321b415c0c95))
2338
+ - data-element added to footer menu and secondary menu ([#611](https://github.com/RedTurtle/design-comuni-plone-theme/issues/611)) ([ef2e748](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ef2e748be536ff1d32c51c67c1a71cd2dcc59243))
2339
+ - lighthouse data-element tag on draftjs ([009c01e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/009c01e9f9a9ce31e4b4397f4eec199da8f71ef2))
2340
+ - upgrade to volto16 ([#605](https://github.com/RedTurtle/design-comuni-plone-theme/issues/605)) ([e6be34d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e6be34d025b7485c26873e530a3a3587c0706692)), closes [plone/volto#2103](https://github.com/plone/volto/issues/2103)
2341
+ - upgraded volto to 16.3.0 ([1115a79](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1115a799f6734bb3cebdcc7f879afdee5adf3d66))
2334
2342
 
2335
2343
  ### Bug Fixes
2336
2344
 
2337
- * card link color changed ([e2ca9a1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e2ca9a160a5b9829a5d51762fb9cb258ba27b428))
2338
- * i18n bin ([#12](https://github.com/RedTurtle/design-comuni-plone-theme/issues/12)) ([31b3aef](https://github.com/RedTurtle/design-comuni-plone-theme/commit/31b3aefc7b3e2a69a0af86905d7a8202eb699784))
2339
- * i18n cleanup ([41b9af2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/41b9af2bbc2aa6bbbfbb928862f8735a00e41e42))
2340
- * moment locales restrict to it/en ([#15](https://github.com/RedTurtle/design-comuni-plone-theme/issues/15)) ([602ddf9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/602ddf994669b38c1b0b1a12f3a55de58c7eccb0))
2341
- * proper handling of data-element in LinkEntity when it comes from backend data ([4b8106f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b8106f53465f8ed9483ff7643715572ff23a9e8))
2342
- * removed link style ([f070b02](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f070b02ffaa719d89a974e75965bc9339b67895a))
2343
- * tag inside attachment cards changed to h5 ([#612](https://github.com/RedTurtle/design-comuni-plone-theme/issues/612)) ([ecbc666](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ecbc6662f09dea79f6497bddb970ee0c2e1227e9))
2344
- * text report-inefficiency fixed ([f5877a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5877a283343411f660fc9684019c0cba7d3f47f))
2345
- * theme usage from child themes ([#22](https://github.com/RedTurtle/design-comuni-plone-theme/issues/22)) ([eb22c8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb22c8cf0542d02a68e829334701781ca6d56312))
2346
- * update html customization to fix redirects problems ([#4](https://github.com/RedTurtle/design-comuni-plone-theme/issues/4)) ([e9208e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9208e647ebbce5056c1f55c49be931a6ee4231f))
2347
- * use full image infos to have width/height in img tag ([#11](https://github.com/RedTurtle/design-comuni-plone-theme/issues/11)) ([035e9ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/035e9eadb36ac1a9e0ebf4b2c5d942942841457f))
2348
-
2345
+ - card link color changed ([e2ca9a1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e2ca9a160a5b9829a5d51762fb9cb258ba27b428))
2346
+ - i18n bin ([#12](https://github.com/RedTurtle/design-comuni-plone-theme/issues/12)) ([31b3aef](https://github.com/RedTurtle/design-comuni-plone-theme/commit/31b3aefc7b3e2a69a0af86905d7a8202eb699784))
2347
+ - i18n cleanup ([41b9af2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/41b9af2bbc2aa6bbbfbb928862f8735a00e41e42))
2348
+ - moment locales restrict to it/en ([#15](https://github.com/RedTurtle/design-comuni-plone-theme/issues/15)) ([602ddf9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/602ddf994669b38c1b0b1a12f3a55de58c7eccb0))
2349
+ - proper handling of data-element in LinkEntity when it comes from backend data ([4b8106f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4b8106f53465f8ed9483ff7643715572ff23a9e8))
2350
+ - removed link style ([f070b02](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f070b02ffaa719d89a974e75965bc9339b67895a))
2351
+ - tag inside attachment cards changed to h5 ([#612](https://github.com/RedTurtle/design-comuni-plone-theme/issues/612)) ([ecbc666](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ecbc6662f09dea79f6497bddb970ee0c2e1227e9))
2352
+ - text report-inefficiency fixed ([f5877a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f5877a283343411f660fc9684019c0cba7d3f47f))
2353
+ - theme usage from child themes ([#22](https://github.com/RedTurtle/design-comuni-plone-theme/issues/22)) ([eb22c8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/eb22c8cf0542d02a68e829334701781ca6d56312))
2354
+ - update html customization to fix redirects problems ([#4](https://github.com/RedTurtle/design-comuni-plone-theme/issues/4)) ([e9208e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e9208e647ebbce5056c1f55c49be931a6ee4231f))
2355
+ - use full image infos to have width/height in img tag ([#11](https://github.com/RedTurtle/design-comuni-plone-theme/issues/11)) ([035e9ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/035e9eadb36ac1a9e0ebf4b2c5d942942841457f))
2349
2356
 
2350
2357
  ### Changes
2351
2358
 
2352
- * change name to design-comuni-plone-theme ([e3bb745](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e3bb7459c66f4d34f4e2dc9a320cd174ba0505e1))
2353
-
2359
+ - change name to design-comuni-plone-theme ([e3bb745](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e3bb7459c66f4d34f4e2dc9a320cd174ba0505e1))
2354
2360
 
2355
2361
  ### Maintenance
2356
2362
 
2357
- * added a new phrase to social links title ([abfaf8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/abfaf8c8877a59cb8a8d7e6d4399751f17a9fcf6))
2358
- * added title to logo link ([854275e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/854275eb448090975b8e7d7754621b4ba29a3837))
2359
- * configured draftjs widget ([e05cd0a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e05cd0a31aa487ac0a36e5c00b2dc03b304927f3))
2360
- * update release script ([459cff7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/459cff7ddc00467427c84166b1b40efdf86d03ee))
2361
- * updated docs and removed obsolete scripts ([5723b6b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5723b6be16abbd070a21f4bd67385bbd03909d9c))
2362
- * updated style of link tooltip and codereview ([f9ae9a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9ae9a4085cfff2ab040157f4be406b3fe234f6e))
2363
+ - added a new phrase to social links title ([abfaf8c](https://github.com/RedTurtle/design-comuni-plone-theme/commit/abfaf8c8877a59cb8a8d7e6d4399751f17a9fcf6))
2364
+ - added title to logo link ([854275e](https://github.com/RedTurtle/design-comuni-plone-theme/commit/854275eb448090975b8e7d7754621b4ba29a3837))
2365
+ - configured draftjs widget ([e05cd0a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e05cd0a31aa487ac0a36e5c00b2dc03b304927f3))
2366
+ - update release script ([459cff7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/459cff7ddc00467427c84166b1b40efdf86d03ee))
2367
+ - updated docs and removed obsolete scripts ([5723b6b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5723b6be16abbd070a21f4bd67385bbd03909d9c))
2368
+ - updated style of link tooltip and codereview ([f9ae9a4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f9ae9a4085cfff2ab040157f4be406b3fe234f6e))
2363
2369
 
2364
2370
  ## [6.5.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.4.0...v6.5.0) (2022-11-08)
2365
2371
 
2366
-
2367
2372
  ### Features
2368
2373
 
2369
- * added data element attribute (lighthouse_id) in listing block ([#607](https://github.com/RedTurtle/design-volto-theme/issues/607)) ([0f03480](https://github.com/RedTurtle/design-volto-theme/commit/0f03480d7a1c7e2600bf063e86dfbd557e1437c9))
2370
-
2374
+ - added data element attribute (lighthouse_id) in listing block ([#607](https://github.com/RedTurtle/design-volto-theme/issues/607)) ([0f03480](https://github.com/RedTurtle/design-volto-theme/commit/0f03480d7a1c7e2600bf063e86dfbd557e1437c9))
2371
2375
 
2372
2376
  ### Bug Fixes
2373
2377
 
2374
- * conditional added to backgroundImage on single card ([b3b2e58](https://github.com/RedTurtle/design-volto-theme/commit/b3b2e583b992a464d299767ee1a96199e863ce2d))
2375
- * fixed arrows and dots stiles of slider listing template ([#608](https://github.com/RedTurtle/design-volto-theme/issues/608)) ([9b941ae](https://github.com/RedTurtle/design-volto-theme/commit/9b941ae50b71c20c7e489716a88ede53c6e570c6))
2376
- * fixed person image inside card with image template ([#606](https://github.com/RedTurtle/design-volto-theme/issues/606)) ([5f003ec](https://github.com/RedTurtle/design-volto-theme/commit/5f003ec2afabb3b46faff6430c65c1e51ed5badc))
2377
-
2378
+ - conditional added to backgroundImage on single card ([b3b2e58](https://github.com/RedTurtle/design-volto-theme/commit/b3b2e583b992a464d299767ee1a96199e863ce2d))
2379
+ - fixed arrows and dots stiles of slider listing template ([#608](https://github.com/RedTurtle/design-volto-theme/issues/608)) ([9b941ae](https://github.com/RedTurtle/design-volto-theme/commit/9b941ae50b71c20c7e489716a88ede53c6e570c6))
2380
+ - fixed person image inside card with image template ([#606](https://github.com/RedTurtle/design-volto-theme/issues/606)) ([5f003ec](https://github.com/RedTurtle/design-volto-theme/commit/5f003ec2afabb3b46faff6430c65c1e51ed5badc))
2378
2381
 
2379
2382
  ### Maintenance
2380
2383
 
2381
- * updated i18n ([604f9b6](https://github.com/RedTurtle/design-volto-theme/commit/604f9b6dfc78597ce45487e2356f3899c394ac42))
2384
+ - updated i18n ([604f9b6](https://github.com/RedTurtle/design-volto-theme/commit/604f9b6dfc78597ce45487e2356f3899c394ac42))
2382
2385
 
2383
2386
  ## [6.4.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.3.3...v6.4.0) (2022-10-27)
2384
2387
 
2385
-
2386
2388
  ### Features
2387
2389
 
2388
- * accordion modulistica ([#595](https://github.com/RedTurtle/design-volto-theme/issues/595)) ([51fbce4](https://github.com/RedTurtle/design-volto-theme/commit/51fbce496ed6de377c57d9c0fa7da4a97ff46c8b)), closes [#592](https://github.com/RedTurtle/design-volto-theme/issues/592) [#593](https://github.com/RedTurtle/design-volto-theme/issues/593) [volto-form-block#v2](https://github.com/RedTurtle/volto-form-block/issues/v2) [#594](https://github.com/RedTurtle/design-volto-theme/issues/594)
2389
- * react-highlight-words implementation inside general Search page ([#587](https://github.com/RedTurtle/design-volto-theme/issues/587)) ([72343d1](https://github.com/RedTurtle/design-volto-theme/commit/72343d1f822a4da9952c5493178905f0e0bfb1d1))
2390
-
2390
+ - accordion modulistica ([#595](https://github.com/RedTurtle/design-volto-theme/issues/595)) ([51fbce4](https://github.com/RedTurtle/design-volto-theme/commit/51fbce496ed6de377c57d9c0fa7da4a97ff46c8b)), closes [#592](https://github.com/RedTurtle/design-volto-theme/issues/592) [#593](https://github.com/RedTurtle/design-volto-theme/issues/593) [volto-form-block#v2](https://github.com/RedTurtle/volto-form-block/issues/v2) [#594](https://github.com/RedTurtle/design-volto-theme/issues/594)
2391
+ - react-highlight-words implementation inside general Search page ([#587](https://github.com/RedTurtle/design-volto-theme/issues/587)) ([72343d1](https://github.com/RedTurtle/design-volto-theme/commit/72343d1f822a4da9952c5493178905f0e0bfb1d1))
2391
2392
 
2392
2393
  ### Bug Fixes
2393
2394
 
2394
- * a11y-focus fixed inside editor ([#596](https://github.com/RedTurtle/design-volto-theme/issues/596)) ([17f375a](https://github.com/RedTurtle/design-volto-theme/commit/17f375a76f750c917d5476ee7c2206be6fbb1351))
2395
- * customize password reset routes until we use Volto 16 (volto [#3448](https://github.com/RedTurtle/design-volto-theme/issues/3448)) ([#602](https://github.com/RedTurtle/design-volto-theme/issues/602)) ([40ac240](https://github.com/RedTurtle/design-volto-theme/commit/40ac24014bede155ca355dedff9a954c8d1c6d97))
2396
- * fixed accordion height in cartellaModulistica ([52acab5](https://github.com/RedTurtle/design-volto-theme/commit/52acab5e059388fc452cffd98a4090f95d1069b5))
2397
- * fixed more action from the toolbar ([#601](https://github.com/RedTurtle/design-volto-theme/issues/601)) ([e343b44](https://github.com/RedTurtle/design-volto-theme/commit/e343b44e780900aab22720a8266a5c2d640e14f0))
2398
- * table horizontal scroll on mobile ([#600](https://github.com/RedTurtle/design-volto-theme/issues/600)) ([eff89bf](https://github.com/RedTurtle/design-volto-theme/commit/eff89bf1097bc4dfa0bb7a433e6e862174a2bdb4))
2399
- * word-break setted to normal only insite footer-small-prints ([#594](https://github.com/RedTurtle/design-volto-theme/issues/594)) ([c5c2956](https://github.com/RedTurtle/design-volto-theme/commit/c5c29569e5dc2ad648357dd8606c4ef5eaabfa22))
2400
-
2395
+ - a11y-focus fixed inside editor ([#596](https://github.com/RedTurtle/design-volto-theme/issues/596)) ([17f375a](https://github.com/RedTurtle/design-volto-theme/commit/17f375a76f750c917d5476ee7c2206be6fbb1351))
2396
+ - customize password reset routes until we use Volto 16 (volto [#3448](https://github.com/RedTurtle/design-volto-theme/issues/3448)) ([#602](https://github.com/RedTurtle/design-volto-theme/issues/602)) ([40ac240](https://github.com/RedTurtle/design-volto-theme/commit/40ac24014bede155ca355dedff9a954c8d1c6d97))
2397
+ - fixed accordion height in cartellaModulistica ([52acab5](https://github.com/RedTurtle/design-volto-theme/commit/52acab5e059388fc452cffd98a4090f95d1069b5))
2398
+ - fixed more action from the toolbar ([#601](https://github.com/RedTurtle/design-volto-theme/issues/601)) ([e343b44](https://github.com/RedTurtle/design-volto-theme/commit/e343b44e780900aab22720a8266a5c2d640e14f0))
2399
+ - table horizontal scroll on mobile ([#600](https://github.com/RedTurtle/design-volto-theme/issues/600)) ([eff89bf](https://github.com/RedTurtle/design-volto-theme/commit/eff89bf1097bc4dfa0bb7a433e6e862174a2bdb4))
2400
+ - word-break setted to normal only insite footer-small-prints ([#594](https://github.com/RedTurtle/design-volto-theme/issues/594)) ([c5c2956](https://github.com/RedTurtle/design-volto-theme/commit/c5c29569e5dc2ad648357dd8606c4ef5eaabfa22))
2401
2401
 
2402
2402
  ### Maintenance
2403
2403
 
2404
- * description added to document on modulistica folder ([#597](https://github.com/RedTurtle/design-volto-theme/issues/597)) ([9d571bb](https://github.com/RedTurtle/design-volto-theme/commit/9d571bbf32fe1645d3e1d8e5b2cc87f5d0125b28))
2405
- * description added to gallery image popup ([#603](https://github.com/RedTurtle/design-volto-theme/issues/603)) ([59bebef](https://github.com/RedTurtle/design-volto-theme/commit/59bebefe9db1b79cd74749fd25b7e8649f4ba51b))
2404
+ - description added to document on modulistica folder ([#597](https://github.com/RedTurtle/design-volto-theme/issues/597)) ([9d571bb](https://github.com/RedTurtle/design-volto-theme/commit/9d571bbf32fe1645d3e1d8e5b2cc87f5d0125b28))
2405
+ - description added to gallery image popup ([#603](https://github.com/RedTurtle/design-volto-theme/issues/603)) ([59bebef](https://github.com/RedTurtle/design-volto-theme/commit/59bebefe9db1b79cd74749fd25b7e8649f4ba51b))
2406
2406
 
2407
2407
  ### [6.3.3](https://github.com/RedTurtle/design-volto-theme/compare/v6.3.2...v6.3.3) (2022-10-19)
2408
2408
 
2409
-
2410
2409
  ### Bug Fixes
2411
2410
 
2412
- * fixed imports volto-form-block customization ([a39879b](https://github.com/RedTurtle/design-volto-theme/commit/a39879bc1f187ae651537bb975cb7b3221f58c9e))
2411
+ - fixed imports volto-form-block customization ([a39879b](https://github.com/RedTurtle/design-volto-theme/commit/a39879bc1f187ae651537bb975cb7b3221f58c9e))
2413
2412
 
2414
2413
  ### [6.3.2](https://github.com/RedTurtle/design-volto-theme/compare/v6.3.1...v6.3.2) (2022-10-19)
2415
2414
 
2416
-
2417
2415
  ### Maintenance
2418
2416
 
2419
- * updated volto-form-block#v2.8.1 ([122b9f8](https://github.com/RedTurtle/design-volto-theme/commit/122b9f8bbb368ad0688661bb59e90ffed0fc2ef8)), closes [volto-form-block#v2](https://github.com/RedTurtle/volto-form-block/issues/v2)
2417
+ - updated volto-form-block#v2.8.1 ([122b9f8](https://github.com/RedTurtle/design-volto-theme/commit/122b9f8bbb368ad0688661bb59e90ffed0fc2ef8)), closes [volto-form-block#v2](https://github.com/RedTurtle/volto-form-block/issues/v2)
2420
2418
 
2421
2419
  ### [6.3.1](https://github.com/redturtle/design-volto-theme/compare/v6.3.0...v6.3.1) (2022-10-07)
2422
2420
 
2423
-
2424
2421
  ### Maintenance
2425
2422
 
2426
- * updated volto-subsites v3.0.4 ([eb23f5f](https://github.com/redturtle/design-volto-theme/commit/eb23f5f79929039d2b85158e461bdb393dee5679))
2423
+ - updated volto-subsites v3.0.4 ([eb23f5f](https://github.com/redturtle/design-volto-theme/commit/eb23f5f79929039d2b85158e461bdb393dee5679))
2427
2424
 
2428
2425
  ## [6.3.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.2.2...v6.3.0) (2022-10-05)
2429
2426
 
2430
-
2431
2427
  ### Features
2432
2428
 
2433
- * added sorting of bandi search results ([#593](https://github.com/RedTurtle/design-volto-theme/issues/593)) ([76f621c](https://github.com/RedTurtle/design-volto-theme/commit/76f621cc0da7c2514add8e2fcb396475dfb2eb8d))
2434
-
2429
+ - added sorting of bandi search results ([#593](https://github.com/RedTurtle/design-volto-theme/issues/593)) ([76f621c](https://github.com/RedTurtle/design-volto-theme/commit/76f621cc0da7c2514add8e2fcb396475dfb2eb8d))
2435
2430
 
2436
2431
  ### Bug Fixes
2437
2432
 
2438
- * overhaul url checking system of Video Block, added tests, added error message in edit ([#592](https://github.com/RedTurtle/design-volto-theme/issues/592)) ([83bdb0e](https://github.com/RedTurtle/design-volto-theme/commit/83bdb0eed076fa91e2cb0f1712fe26db644a02d0))
2433
+ - overhaul url checking system of Video Block, added tests, added error message in edit ([#592](https://github.com/RedTurtle/design-volto-theme/issues/592)) ([83bdb0e](https://github.com/RedTurtle/design-volto-theme/commit/83bdb0eed076fa91e2cb0f1712fe26db644a02d0))
2439
2434
 
2440
2435
  ### [6.2.2](https://github.com/redturtle/design-volto-theme/compare/v6.2.1...v6.2.2) (2022-10-04)
2441
2436
 
2442
-
2443
2437
  ### Bug Fixes
2444
2438
 
2445
- * reverted header height change ([cd6eec6](https://github.com/redturtle/design-volto-theme/commit/cd6eec6ce275c39a9cfd49e006bedd85417ac366))
2439
+ - reverted header height change ([cd6eec6](https://github.com/redturtle/design-volto-theme/commit/cd6eec6ce275c39a9cfd49e006bedd85417ac366))
2446
2440
 
2447
2441
  ### [6.2.1](https://github.com/RedTurtle/design-volto-theme/compare/v6.2.0...v6.2.1) (2022-09-30)
2448
2442
 
2449
-
2450
2443
  ### Bug Fixes
2451
2444
 
2452
- * fixed dates of cardCalendar component ([#590](https://github.com/RedTurtle/design-volto-theme/issues/590)) ([eebaef0](https://github.com/RedTurtle/design-volto-theme/commit/eebaef07fc78e47180b3a197e21a9edde614dbd7))
2453
- * fixed window.env of customer satisfaction addon ([#591](https://github.com/RedTurtle/design-volto-theme/issues/591)) ([7e892a1](https://github.com/RedTurtle/design-volto-theme/commit/7e892a14268b91a0ac38d079368c9541a611bc3a))
2454
- * various ui fixes ([#586](https://github.com/RedTurtle/design-volto-theme/issues/586)) ([4ef3426](https://github.com/RedTurtle/design-volto-theme/commit/4ef3426242105469f28b677451eed28d31f0c261))
2445
+ - fixed dates of cardCalendar component ([#590](https://github.com/RedTurtle/design-volto-theme/issues/590)) ([eebaef0](https://github.com/RedTurtle/design-volto-theme/commit/eebaef07fc78e47180b3a197e21a9edde614dbd7))
2446
+ - fixed window.env of customer satisfaction addon ([#591](https://github.com/RedTurtle/design-volto-theme/issues/591)) ([7e892a1](https://github.com/RedTurtle/design-volto-theme/commit/7e892a14268b91a0ac38d079368c9541a611bc3a))
2447
+ - various ui fixes ([#586](https://github.com/RedTurtle/design-volto-theme/issues/586)) ([4ef3426](https://github.com/RedTurtle/design-volto-theme/commit/4ef3426242105469f28b677451eed28d31f0c261))
2455
2448
 
2456
2449
  ## [6.2.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.9...v6.2.0) (2022-09-29)
2457
2450
 
2458
-
2459
2451
  ### Maintenance
2460
2452
 
2461
- * updated volto-customer-satisfaction v0.3.2 ([13d418a](https://github.com/RedTurtle/design-volto-theme/commit/13d418a2961946b2dd2b4590474ab942ebfda370))
2453
+ - updated volto-customer-satisfaction v0.3.2 ([13d418a](https://github.com/RedTurtle/design-volto-theme/commit/13d418a2961946b2dd2b4590474ab942ebfda370))
2462
2454
 
2463
2455
  ### [6.1.9](https://github.com/redturtle/design-volto-theme/compare/v6.1.8...v6.1.9) (2022-09-19)
2464
2456
 
2465
-
2466
2457
  ### Bug Fixes
2467
2458
 
2468
- * layout alignment in pages ([#585](https://github.com/redturtle/design-volto-theme/issues/585)) ([7d7aafd](https://github.com/redturtle/design-volto-theme/commit/7d7aafd973cf8093c15dd02e15d9ce0d8bcd0649))
2469
- * rendering logic of ulteriori_informazioni section in every content type that has it ([#584](https://github.com/redturtle/design-volto-theme/issues/584)) ([8eb806e](https://github.com/redturtle/design-volto-theme/commit/8eb806e9474b10df7569a059a654e7ccbe6084c2))
2459
+ - layout alignment in pages ([#585](https://github.com/redturtle/design-volto-theme/issues/585)) ([7d7aafd](https://github.com/redturtle/design-volto-theme/commit/7d7aafd973cf8093c15dd02e15d9ce0d8bcd0649))
2460
+ - rendering logic of ulteriori_informazioni section in every content type that has it ([#584](https://github.com/redturtle/design-volto-theme/issues/584)) ([8eb806e](https://github.com/redturtle/design-volto-theme/commit/8eb806e9474b10df7569a059a654e7ccbe6084c2))
2470
2461
 
2471
2462
  ### [6.1.8](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.7...v6.1.8) (2022-09-14)
2472
2463
 
2473
-
2474
2464
  ### Bug Fixes
2475
2465
 
2476
- * fixed description alignment of photogallery listing template ([#583](https://github.com/RedTurtle/design-volto-theme/issues/583)) ([b16e314](https://github.com/RedTurtle/design-volto-theme/commit/b16e3141406d84bc622e24f701e4bf00c3575a92))
2466
+ - fixed description alignment of photogallery listing template ([#583](https://github.com/RedTurtle/design-volto-theme/issues/583)) ([b16e314](https://github.com/RedTurtle/design-volto-theme/commit/b16e3141406d84bc622e24f701e4bf00c3575a92))
2477
2467
 
2478
2468
  ### [6.1.7](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.6...v6.1.7) (2022-09-12)
2479
2469
 
2480
-
2481
2470
  ### Bug Fixes
2482
2471
 
2483
- * fixed change grid-gallery listing template ([#582](https://github.com/RedTurtle/design-volto-theme/issues/582)) ([f4882e1](https://github.com/RedTurtle/design-volto-theme/commit/f4882e15ef2ccf2e0754bd813775026d6f058154))
2472
+ - fixed change grid-gallery listing template ([#582](https://github.com/RedTurtle/design-volto-theme/issues/582)) ([f4882e1](https://github.com/RedTurtle/design-volto-theme/commit/f4882e15ef2ccf2e0754bd813775026d6f058154))
2484
2473
 
2485
2474
  ### [6.1.6](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.5...v6.1.6) (2022-09-07)
2486
2475
 
2487
-
2488
2476
  ### Bug Fixes
2489
2477
 
2490
- * fixed mrs.developer version of volto-subsites addon ([c30f7b0](https://github.com/RedTurtle/design-volto-theme/commit/c30f7b00fd4aa9570da6346019aeaed8e059e4c1))
2478
+ - fixed mrs.developer version of volto-subsites addon ([c30f7b0](https://github.com/RedTurtle/design-volto-theme/commit/c30f7b00fd4aa9570da6346019aeaed8e059e4c1))
2491
2479
 
2492
2480
  ### [6.1.5](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.4...v6.1.5) (2022-09-07)
2493
2481
 
2494
-
2495
2482
  ### Maintenance
2496
2483
 
2497
- * updated volto-subsites v3.0.3 ([3cff4c0](https://github.com/RedTurtle/design-volto-theme/commit/3cff4c07355f09d1484268a213c69af3888e88c5))
2484
+ - updated volto-subsites v3.0.3 ([3cff4c0](https://github.com/RedTurtle/design-volto-theme/commit/3cff4c07355f09d1484268a213c69af3888e88c5))
2498
2485
 
2499
2486
  ### [6.1.4](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.3...v6.1.4) (2022-09-02)
2500
2487
 
2501
-
2502
2488
  ### Maintenance
2503
2489
 
2504
- * added classes to pageheader to enable css customizations ([12f3ec6](https://github.com/RedTurtle/design-volto-theme/commit/12f3ec6912f118e8be1b48ffb256233e2c7e8c10))
2490
+ - added classes to pageheader to enable css customizations ([12f3ec6](https://github.com/RedTurtle/design-volto-theme/commit/12f3ec6912f118e8be1b48ffb256233e2c7e8c10))
2505
2491
 
2506
2492
  ### [6.1.3](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.2...v6.1.3) (2022-09-01)
2507
2493
 
2508
-
2509
2494
  ### Bug Fixes
2510
2495
 
2511
- * fixed few imports for CTABlock and ArgumentsInEvidence blocks ([#581](https://github.com/RedTurtle/design-volto-theme/issues/581)) ([8879606](https://github.com/RedTurtle/design-volto-theme/commit/88796069cf0d4c92576763d976d15562dc264de4))
2512
- * fixed video preview when an image is loaded ([#579](https://github.com/RedTurtle/design-volto-theme/issues/579)) ([b16db1d](https://github.com/RedTurtle/design-volto-theme/commit/b16db1d918cf0e8d998e1f5756aa9648d02a61ad))
2513
- * updated volto-subsites ([e7934aa](https://github.com/RedTurtle/design-volto-theme/commit/e7934aadbdfb2466c4496d3e28f5c7b081109f9f))
2496
+ - fixed few imports for CTABlock and ArgumentsInEvidence blocks ([#581](https://github.com/RedTurtle/design-volto-theme/issues/581)) ([8879606](https://github.com/RedTurtle/design-volto-theme/commit/88796069cf0d4c92576763d976d15562dc264de4))
2497
+ - fixed video preview when an image is loaded ([#579](https://github.com/RedTurtle/design-volto-theme/issues/579)) ([b16db1d](https://github.com/RedTurtle/design-volto-theme/commit/b16db1d918cf0e8d998e1f5756aa9648d02a61ad))
2498
+ - updated volto-subsites ([e7934aa](https://github.com/RedTurtle/design-volto-theme/commit/e7934aadbdfb2466c4496d3e28f5c7b081109f9f))
2514
2499
 
2515
2500
  ### [6.1.2](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.1...v6.1.2) (2022-08-31)
2516
2501
 
2517
-
2518
2502
  ### Features
2519
2503
 
2520
- * added popup on map pin ([#577](https://github.com/RedTurtle/design-volto-theme/issues/577)) ([adf902a](https://github.com/RedTurtle/design-volto-theme/commit/adf902ae761cb94bc191f99ce0d9118ac4c40045))
2521
-
2504
+ - added popup on map pin ([#577](https://github.com/RedTurtle/design-volto-theme/issues/577)) ([adf902a](https://github.com/RedTurtle/design-volto-theme/commit/adf902ae761cb94bc191f99ce0d9118ac4c40045))
2522
2505
 
2523
2506
  ### Bug Fixes
2524
2507
 
2525
- * fixed width and height of slider images ([8d4cfab](https://github.com/RedTurtle/design-volto-theme/commit/8d4cfabe4c4170bf8efc9820c3aabeb28345e2e8))
2526
-
2508
+ - fixed width and height of slider images ([8d4cfab](https://github.com/RedTurtle/design-volto-theme/commit/8d4cfabe4c4170bf8efc9820c3aabeb28345e2e8))
2527
2509
 
2528
2510
  ### Maintenance
2529
2511
 
2530
- * updated volto-subsites ([dd2b41d](https://github.com/RedTurtle/design-volto-theme/commit/dd2b41d5738c20e9212507d718c0ad92cab584bc))
2512
+ - updated volto-subsites ([dd2b41d](https://github.com/RedTurtle/design-volto-theme/commit/dd2b41d5738c20e9212507d718c0ad92cab584bc))
2531
2513
 
2532
2514
  ### [6.1.1](https://github.com/RedTurtle/design-volto-theme/compare/v6.1.0...v6.1.1) (2022-08-25)
2533
2515
 
2534
-
2535
2516
  ### Features
2536
2517
 
2537
- * added map Where to contact section of Service CT ([#576](https://github.com/RedTurtle/design-volto-theme/issues/576)) ([53db880](https://github.com/RedTurtle/design-volto-theme/commit/53db880a9a142d435e82adaee39b908f9f464a54))
2518
+ - added map Where to contact section of Service CT ([#576](https://github.com/RedTurtle/design-volto-theme/issues/576)) ([53db880](https://github.com/RedTurtle/design-volto-theme/commit/53db880a9a142d435e82adaee39b908f9f464a54))
2538
2519
 
2539
2520
  ## [6.1.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.0.2...v6.1.0) (2022-08-25)
2540
2521
 
2541
-
2542
2522
  ### Features
2543
2523
 
2544
- * staticize google fonts ([3c3c7e5](https://github.com/RedTurtle/design-volto-theme/commit/3c3c7e5dc6797ea446fcffd2e1596b11146bacbc))
2545
-
2524
+ - staticize google fonts ([3c3c7e5](https://github.com/RedTurtle/design-volto-theme/commit/3c3c7e5dc6797ea446fcffd2e1596b11146bacbc))
2546
2525
 
2547
2526
  ### Maintenance
2548
2527
 
2549
- * updated VOLTO-BRANCHES.md ([01ac0ff](https://github.com/RedTurtle/design-volto-theme/commit/01ac0ff28864bcb41cc91d287a0dcbb322986684))
2528
+ - updated VOLTO-BRANCHES.md ([01ac0ff](https://github.com/RedTurtle/design-volto-theme/commit/01ac0ff28864bcb41cc91d287a0dcbb322986684))
2550
2529
 
2551
2530
  ### [6.0.2](https://github.com/RedTurtle/design-volto-theme/compare/v6.0.1...v6.0.2) (2022-08-24)
2552
2531
 
2553
-
2554
2532
  ### Maintenance
2555
2533
 
2556
- * updated volto-gdpr-privacy ([7969986](https://github.com/RedTurtle/design-volto-theme/commit/7969986ec5db77eece02119472a7a87230993ca7))
2534
+ - updated volto-gdpr-privacy ([7969986](https://github.com/RedTurtle/design-volto-theme/commit/7969986ec5db77eece02119472a7a87230993ca7))
2557
2535
 
2558
2536
  ### [6.0.1](https://github.com/RedTurtle/design-volto-theme/compare/v6.0.0...v6.0.1) (2022-08-24)
2559
2537
 
2560
-
2561
2538
  ### Maintenance
2562
2539
 
2563
- * updated volto ([8aad301](https://github.com/RedTurtle/design-volto-theme/commit/8aad301b1dc3595fda3b6b7a4dd1b2a91269aa10))
2540
+ - updated volto ([8aad301](https://github.com/RedTurtle/design-volto-theme/commit/8aad301b1dc3595fda3b6b7a4dd1b2a91269aa10))
2564
2541
 
2565
2542
  ## [6.0.0](https://github.com/RedTurtle/design-volto-theme/compare/v6.0.0-alpha.1...v6.0.0) (2022-08-24)
2566
2543
 
2567
-
2568
2544
  ### Features
2569
2545
 
2570
- * added criticalCss ([9881546](https://github.com/RedTurtle/design-volto-theme/commit/9881546d5a8fc3e8a3b4b8dc71b7115f10192231))
2571
- * added enableCustomerSatisfactionCaptcha prop in config.settings.siteProperties ([124a479](https://github.com/RedTurtle/design-volto-theme/commit/124a479da417f09546240d00bf8031a68ade2fe3))
2572
- * added enableVoltoForrmBlockCaptcha siteProperty to disable captcha in form-block ([692acab](https://github.com/RedTurtle/design-volto-theme/commit/692acabfa2ac29731df4ff8237ff3aeb6edfc99d))
2573
- * added innerHtml in secondary menu items ([976d4fd](https://github.com/RedTurtle/design-volto-theme/commit/976d4fd885a90a421f15ede5ae6a22db1f851ff3))
2574
- * added page-loader ([792a661](https://github.com/RedTurtle/design-volto-theme/commit/792a66121c550979a4001f80b1e498a318898076))
2575
- * lazyload subsites css ([f78b006](https://github.com/RedTurtle/design-volto-theme/commit/f78b006d85f02794949b8a2ce78c1b0f78bf98ec))
2576
- * resize asset images ([9e1fc48](https://github.com/RedTurtle/design-volto-theme/commit/9e1fc484ee7d9f6982ca1d49856eb03221628d94))
2577
- * use download/width/height from item.image.scales in gridgallerytemplate ([5cc9eae](https://github.com/RedTurtle/design-volto-theme/commit/5cc9eae4a2c996148dc0f787df7bec06548334c0))
2578
-
2579
-
2580
- ### Bug Fixes
2581
-
2582
- * fix default value for enableCustomerSatisfactionCaptcha ([c93a7a6](https://github.com/RedTurtle/design-volto-theme/commit/c93a7a666dcf946f67dd8c681d2ed0d812bea3e1))
2583
- * fix dependencies webpack-image-resize-loader ([#569](https://github.com/RedTurtle/design-volto-theme/issues/569)) ([d2da668](https://github.com/RedTurtle/design-volto-theme/commit/d2da6682332cc9408dfa2a898738ab5032109e11))
2584
- * fix print styles for content-image ([#573](https://github.com/RedTurtle/design-volto-theme/issues/573)) ([c943fe9](https://github.com/RedTurtle/design-volto-theme/commit/c943fe97dd911fac9c7d661cd7821b534dcc2630))
2585
- * fix search back from subsite's result ([91a031e](https://github.com/RedTurtle/design-volto-theme/commit/91a031ea074c848a3bfc0b2fa4b4f4d2656b3de5))
2586
- * fixed autoplay and play button of photogallery and slider listing templates ([#571](https://github.com/RedTurtle/design-volto-theme/issues/571)) ([ec5f7a4](https://github.com/RedTurtle/design-volto-theme/commit/ec5f7a468ec76178e76f4ef9e8471f5709760eb0))
2587
- * fixed ParentSiteMenu item html ([d58d921](https://github.com/RedTurtle/design-volto-theme/commit/d58d9217d20fe4dae5ed952109150b3fa8247bbc))
2588
- * fixed subsites import ([#570](https://github.com/RedTurtle/design-volto-theme/issues/570)) ([884c626](https://github.com/RedTurtle/design-volto-theme/commit/884c626443095c465d68ffe00af745baef11e992))
2589
- * gif removed ([550325e](https://github.com/RedTurtle/design-volto-theme/commit/550325e74dd9d68b858ad56a55ad651be78fa37d))
2590
- * handle anchor ([f7ebee9](https://github.com/RedTurtle/design-volto-theme/commit/f7ebee901c0228c951ad14370724d2391a3de5a9))
2591
- * padding block html ([895d98b](https://github.com/RedTurtle/design-volto-theme/commit/895d98b34cb3f245494fcfebcd7d53fd103235fb))
2592
- * removed critical css file for children sites ([d8e0c02](https://github.com/RedTurtle/design-volto-theme/commit/d8e0c0231f8d19d0a54ab74a765314a153b06319))
2593
- * subsite scss ([7e92a97](https://github.com/RedTurtle/design-volto-theme/commit/7e92a9714b64f4a659277f1f02ec566594f4b0f9))
2594
- * version ([cc54e4f](https://github.com/RedTurtle/design-volto-theme/commit/cc54e4f427dab8017fb9c4c96e2b47820ef2069d))
2595
- * width auto to slider image ([c71b840](https://github.com/RedTurtle/design-volto-theme/commit/c71b840a102a81a7db22d52b89df0a5d1839597e))
2596
-
2597
-
2598
- ### Maintenance
2599
-
2600
- * added page-loader styles ([d2e01e9](https://github.com/RedTurtle/design-volto-theme/commit/d2e01e97304d18e9e491788f3bcfb59bfdcaf75a))
2601
- * changed loadable names ([4ca97e7](https://github.com/RedTurtle/design-volto-theme/commit/4ca97e748f4e06d3d4fb49dcaa7cbb06be8d2316))
2602
- * css optimizations ([8056002](https://github.com/RedTurtle/design-volto-theme/commit/805600280df0d5afd902fbf6b1c54b6930d3e2be))
2603
- * hero block optimization for lightouse ([c1f6dd4](https://github.com/RedTurtle/design-volto-theme/commit/c1f6dd442fa5024df9a511b89a217b81ee2d10f3))
2604
- * removed AppExtras customization ([09eb1fd](https://github.com/RedTurtle/design-volto-theme/commit/09eb1fda9c76e0a5bde4ae81c74b0b9c1719914f))
2605
- * removed customization for AppExtras ([45c68c0](https://github.com/RedTurtle/design-volto-theme/commit/45c68c0dcc55fc9a7b275821b6dabd34c9029abe))
2606
- * updated volto ([cb5a239](https://github.com/RedTurtle/design-volto-theme/commit/cb5a2397bd47b6e8a6282bc89133d8d92a732bcb))
2607
- * upgraded volto-gdpr-privacy to v1.3.9 ([f2ec64a](https://github.com/RedTurtle/design-volto-theme/commit/f2ec64afcbf03d60f93607d2033e5917b725f81f))
2608
- * **deps:** bump async from 2.6.3 to 2.6.4 ([#498](https://github.com/RedTurtle/design-volto-theme/issues/498)) ([a86232f](https://github.com/RedTurtle/design-volto-theme/commit/a86232f1488ad59b3235a2005d469ca173683697))
2609
- * **deps:** bump terser from 4.8.0 to 4.8.1 ([#557](https://github.com/RedTurtle/design-volto-theme/issues/557)) ([bc4e3b7](https://github.com/RedTurtle/design-volto-theme/commit/bc4e3b7f8a0617b571bd8ca6df5877d4383d96b4))
2610
- * removed unused css class link-more ([56649f2](https://github.com/RedTurtle/design-volto-theme/commit/56649f2aca0e64c764762483563c2b0837da5acf))
2611
- * updated branches and addon customizations docs ([d77cca1](https://github.com/RedTurtle/design-volto-theme/commit/d77cca1487515b113baa8a6ff1f7397931269c0f))
2546
+ - added criticalCss ([9881546](https://github.com/RedTurtle/design-volto-theme/commit/9881546d5a8fc3e8a3b4b8dc71b7115f10192231))
2547
+ - added enableCustomerSatisfactionCaptcha prop in config.settings.siteProperties ([124a479](https://github.com/RedTurtle/design-volto-theme/commit/124a479da417f09546240d00bf8031a68ade2fe3))
2548
+ - added enableVoltoForrmBlockCaptcha siteProperty to disable captcha in form-block ([692acab](https://github.com/RedTurtle/design-volto-theme/commit/692acabfa2ac29731df4ff8237ff3aeb6edfc99d))
2549
+ - added innerHtml in secondary menu items ([976d4fd](https://github.com/RedTurtle/design-volto-theme/commit/976d4fd885a90a421f15ede5ae6a22db1f851ff3))
2550
+ - added page-loader ([792a661](https://github.com/RedTurtle/design-volto-theme/commit/792a66121c550979a4001f80b1e498a318898076))
2551
+ - lazyload subsites css ([f78b006](https://github.com/RedTurtle/design-volto-theme/commit/f78b006d85f02794949b8a2ce78c1b0f78bf98ec))
2552
+ - resize asset images ([9e1fc48](https://github.com/RedTurtle/design-volto-theme/commit/9e1fc484ee7d9f6982ca1d49856eb03221628d94))
2553
+ - use download/width/height from item.image.scales in gridgallerytemplate ([5cc9eae](https://github.com/RedTurtle/design-volto-theme/commit/5cc9eae4a2c996148dc0f787df7bec06548334c0))
2554
+
2555
+ ### Bug Fixes
2556
+
2557
+ - fix default value for enableCustomerSatisfactionCaptcha ([c93a7a6](https://github.com/RedTurtle/design-volto-theme/commit/c93a7a666dcf946f67dd8c681d2ed0d812bea3e1))
2558
+ - fix dependencies webpack-image-resize-loader ([#569](https://github.com/RedTurtle/design-volto-theme/issues/569)) ([d2da668](https://github.com/RedTurtle/design-volto-theme/commit/d2da6682332cc9408dfa2a898738ab5032109e11))
2559
+ - fix print styles for content-image ([#573](https://github.com/RedTurtle/design-volto-theme/issues/573)) ([c943fe9](https://github.com/RedTurtle/design-volto-theme/commit/c943fe97dd911fac9c7d661cd7821b534dcc2630))
2560
+ - fix search back from subsite's result ([91a031e](https://github.com/RedTurtle/design-volto-theme/commit/91a031ea074c848a3bfc0b2fa4b4f4d2656b3de5))
2561
+ - fixed autoplay and play button of photogallery and slider listing templates ([#571](https://github.com/RedTurtle/design-volto-theme/issues/571)) ([ec5f7a4](https://github.com/RedTurtle/design-volto-theme/commit/ec5f7a468ec76178e76f4ef9e8471f5709760eb0))
2562
+ - fixed ParentSiteMenu item html ([d58d921](https://github.com/RedTurtle/design-volto-theme/commit/d58d9217d20fe4dae5ed952109150b3fa8247bbc))
2563
+ - fixed subsites import ([#570](https://github.com/RedTurtle/design-volto-theme/issues/570)) ([884c626](https://github.com/RedTurtle/design-volto-theme/commit/884c626443095c465d68ffe00af745baef11e992))
2564
+ - gif removed ([550325e](https://github.com/RedTurtle/design-volto-theme/commit/550325e74dd9d68b858ad56a55ad651be78fa37d))
2565
+ - handle anchor ([f7ebee9](https://github.com/RedTurtle/design-volto-theme/commit/f7ebee901c0228c951ad14370724d2391a3de5a9))
2566
+ - padding block html ([895d98b](https://github.com/RedTurtle/design-volto-theme/commit/895d98b34cb3f245494fcfebcd7d53fd103235fb))
2567
+ - removed critical css file for children sites ([d8e0c02](https://github.com/RedTurtle/design-volto-theme/commit/d8e0c0231f8d19d0a54ab74a765314a153b06319))
2568
+ - subsite scss ([7e92a97](https://github.com/RedTurtle/design-volto-theme/commit/7e92a9714b64f4a659277f1f02ec566594f4b0f9))
2569
+ - version ([cc54e4f](https://github.com/RedTurtle/design-volto-theme/commit/cc54e4f427dab8017fb9c4c96e2b47820ef2069d))
2570
+ - width auto to slider image ([c71b840](https://github.com/RedTurtle/design-volto-theme/commit/c71b840a102a81a7db22d52b89df0a5d1839597e))
2571
+
2572
+ ### Maintenance
2573
+
2574
+ - added page-loader styles ([d2e01e9](https://github.com/RedTurtle/design-volto-theme/commit/d2e01e97304d18e9e491788f3bcfb59bfdcaf75a))
2575
+ - changed loadable names ([4ca97e7](https://github.com/RedTurtle/design-volto-theme/commit/4ca97e748f4e06d3d4fb49dcaa7cbb06be8d2316))
2576
+ - css optimizations ([8056002](https://github.com/RedTurtle/design-volto-theme/commit/805600280df0d5afd902fbf6b1c54b6930d3e2be))
2577
+ - hero block optimization for lightouse ([c1f6dd4](https://github.com/RedTurtle/design-volto-theme/commit/c1f6dd442fa5024df9a511b89a217b81ee2d10f3))
2578
+ - removed AppExtras customization ([09eb1fd](https://github.com/RedTurtle/design-volto-theme/commit/09eb1fda9c76e0a5bde4ae81c74b0b9c1719914f))
2579
+ - removed customization for AppExtras ([45c68c0](https://github.com/RedTurtle/design-volto-theme/commit/45c68c0dcc55fc9a7b275821b6dabd34c9029abe))
2580
+ - updated volto ([cb5a239](https://github.com/RedTurtle/design-volto-theme/commit/cb5a2397bd47b6e8a6282bc89133d8d92a732bcb))
2581
+ - upgraded volto-gdpr-privacy to v1.3.9 ([f2ec64a](https://github.com/RedTurtle/design-volto-theme/commit/f2ec64afcbf03d60f93607d2033e5917b725f81f))
2582
+ - **deps:** bump async from 2.6.3 to 2.6.4 ([#498](https://github.com/RedTurtle/design-volto-theme/issues/498)) ([a86232f](https://github.com/RedTurtle/design-volto-theme/commit/a86232f1488ad59b3235a2005d469ca173683697))
2583
+ - **deps:** bump terser from 4.8.0 to 4.8.1 ([#557](https://github.com/RedTurtle/design-volto-theme/issues/557)) ([bc4e3b7](https://github.com/RedTurtle/design-volto-theme/commit/bc4e3b7f8a0617b571bd8ca6df5877d4383d96b4))
2584
+ - removed unused css class link-more ([56649f2](https://github.com/RedTurtle/design-volto-theme/commit/56649f2aca0e64c764762483563c2b0837da5acf))
2585
+ - updated branches and addon customizations docs ([d77cca1](https://github.com/RedTurtle/design-volto-theme/commit/d77cca1487515b113baa8a6ff1f7397931269c0f))
2612
2586
 
2613
2587
  ### [5.32.3](https://github.com/RedTurtle/design-volto-theme/compare/v5.32.2...v5.32.3) (2022-08-23)
2614
2588