design-comuni-plone-theme 11.29.2 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/.github/workflows/main.yml +16 -16
  2. package/.github/workflows/npm.yml +1 -1
  3. package/.github/workflows/withnewsletter.yml +47 -0
  4. package/.release-it.json +1 -0
  5. package/.yarn/cache/@babel-helper-module-imports-npm-7.24.3-edb733448b-c23492189b.zip +0 -0
  6. package/.yarn/cache/@babel-types-npm-7.24.0-a0508cb308-4b574a37d4.zip +0 -0
  7. package/.yarn/cache/babel-plugin-lodash-npm-3.3.4-c7161075b6-044a4261e6.zip +0 -0
  8. package/.yarn/cache/braces-npm-3.0.3-582c14023c-b95aa0b3bd.zip +0 -0
  9. package/.yarn/cache/fill-range-npm-7.1.1-bf491486db-b4abfbca38.zip +0 -0
  10. package/.yarn/cache/micromatch-npm-4.0.8-c9570e4aca-79920eb634.zip +0 -0
  11. package/.yarn/cache/require-package-name-npm-2.0.1-ac9a206b63-00f4e9e467.zip +0 -0
  12. package/.yarn/install-state.gz +0 -0
  13. package/CHANGELOG.md +1728 -1659
  14. package/RELEASE.md +6 -0
  15. package/locales/de/LC_MESSAGES/volto.po +86 -19
  16. package/locales/en/LC_MESSAGES/volto.po +86 -19
  17. package/locales/es/LC_MESSAGES/volto.po +86 -19
  18. package/locales/fr/LC_MESSAGES/volto.po +86 -19
  19. package/locales/it/LC_MESSAGES/volto.po +87 -20
  20. package/locales/volto.pot +87 -20
  21. package/package.json +3 -1
  22. package/publiccode.yml +2 -2
  23. package/src/components/Collapse.jsx +1 -0
  24. package/src/components/ItaliaTheme/AppExtras/SiteSettingsExtras.jsx +0 -6
  25. package/src/components/ItaliaTheme/Blocks/Accordion/Block/EditBlock.jsx +29 -24
  26. package/src/components/ItaliaTheme/Blocks/Accordion/Block/ViewBlock.jsx +4 -12
  27. package/src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx +118 -42
  28. package/src/components/ItaliaTheme/Blocks/Accordion/View.jsx +4 -18
  29. package/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx +60 -113
  30. package/src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx +1 -0
  31. package/src/components/ItaliaTheme/Blocks/Alert/View.jsx +5 -14
  32. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block.jsx +16 -11
  33. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Body.jsx +2 -1
  34. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +39 -1
  35. package/src/components/ItaliaTheme/Blocks/CTABlock/Block.jsx +35 -95
  36. package/src/components/ItaliaTheme/Blocks/Callout/Edit.jsx +108 -0
  37. package/src/components/ItaliaTheme/Blocks/Callout/Sidebar.jsx +173 -0
  38. package/src/components/ItaliaTheme/Blocks/Callout/View.jsx +45 -0
  39. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/EditBlock.jsx +86 -63
  40. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/ViewBlock.jsx +19 -39
  41. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx +101 -22
  42. package/src/components/ItaliaTheme/Blocks/ContactsBlock/View.jsx +13 -21
  43. package/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx +21 -25
  44. package/src/components/ItaliaTheme/Blocks/CountDown/View.jsx +6 -15
  45. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/EditBlock.jsx +52 -22
  46. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/ViewBlock.jsx +9 -29
  47. package/src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx +108 -21
  48. package/src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx +1 -9
  49. package/src/components/ItaliaTheme/Blocks/IconBlocks/View.jsx +6 -14
  50. package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +0 -1
  51. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/EditBlock.jsx +45 -15
  52. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/ViewBlock.jsx +2 -18
  53. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +98 -11
  54. package/src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx +2 -7
  55. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block.jsx +35 -67
  56. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Edit.jsx +2 -8
  57. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/BodyWrapper.jsx +2 -1
  58. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit.jsx +98 -84
  59. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/View.jsx +20 -3
  60. package/src/components/ItaliaTheme/Blocks/UOSearch/Sidebar.jsx +11 -11
  61. package/src/components/ItaliaTheme/Blocks/__tests__/Accordion.test.jsx +11 -28
  62. package/src/components/ItaliaTheme/Blocks/__tests__/Alert.test.jsx +10 -14
  63. package/src/components/ItaliaTheme/Blocks/__tests__/ArgumentsInEvidence.test.jsx +20 -28
  64. package/src/components/ItaliaTheme/Blocks/__tests__/CTABlock.test.jsx +14 -29
  65. package/src/components/ItaliaTheme/Blocks/__tests__/CardWithImage.test.jsx +11 -28
  66. package/src/components/ItaliaTheme/Blocks/__tests__/ContactsBlock.test.jsx +75 -140
  67. package/src/components/ItaliaTheme/Blocks/__tests__/Countdown.test.jsx +20 -28
  68. package/src/components/ItaliaTheme/Blocks/__tests__/IconBlocks.test.jsx +22 -56
  69. package/src/components/ItaliaTheme/Blocks/__tests__/NumbersBlock.test.jsx +14 -43
  70. package/src/components/ItaliaTheme/Blocks/__tests__/SimpleCard.test.jsx +14 -30
  71. package/src/components/ItaliaTheme/BrandText/BrandText.jsx +8 -14
  72. package/src/components/ItaliaTheme/BrandTextFooter/BrandTextFooter.jsx +31 -2
  73. package/src/components/ItaliaTheme/Footer/FooterInfos.jsx +21 -8
  74. package/src/components/ItaliaTheme/Footer/FooterNavigation.jsx +3 -3
  75. package/src/components/ItaliaTheme/Header/HeaderSlim/HeaderSlim.jsx +0 -7
  76. package/src/components/ItaliaTheme/Icons/Icon.jsx +0 -1
  77. package/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx +5 -1
  78. package/src/components/ItaliaTheme/View/BandoView/BandoApprofondimenti.jsx +1 -2
  79. package/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx +14 -5
  80. package/src/components/ItaliaTheme/View/Commons/Attachment.jsx +19 -3
  81. package/src/components/ItaliaTheme/View/Commons/Attachments.jsx +0 -1
  82. package/src/components/ItaliaTheme/View/Commons/DownloadFileFormat.jsx +11 -7
  83. package/src/components/ItaliaTheme/View/Commons/Gallery.jsx +1 -0
  84. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderEventDates.jsx +0 -1
  85. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderLinkServizio.jsx +6 -2
  86. package/src/components/ItaliaTheme/View/Commons/RichTextRender.jsx +8 -6
  87. package/src/components/ItaliaTheme/View/Commons/__tests__/RichText.test.jsx +14 -17
  88. package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno.jsx +1 -1
  89. package/src/components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni.jsx +0 -4
  90. package/src/components/ItaliaTheme/View/ServizioView/ServizioAccedi.jsx +10 -7
  91. package/src/components/ItaliaTheme/View/ServizioView/ServizioMetatag.jsx +4 -3
  92. package/src/components/ItaliaTheme/View/__disabled_tests__/IncaricoView.test__disabled.jsx +24 -30
  93. package/src/components/ItaliaTheme/View/__tests__/CartellaModulisticaView.test.jsx +12 -1
  94. package/src/components/ItaliaTheme/View/__tests__/PageView.test.jsx +24 -2
  95. package/src/components/ItaliaTheme/View/__tests__/PersonaView.test.jsx +96 -92
  96. package/src/components/ItaliaTheme/View/__tests__/ServizioAChiSiRivolge.test.jsx +240 -286
  97. package/src/components/ItaliaTheme/View/__tests__/ServizioAccedi.test.jsx +240 -286
  98. package/src/components/ItaliaTheme/View/__tests__/ServizioCasiParticolari.test.jsx +240 -286
  99. package/src/components/ItaliaTheme/View/__tests__/ServizioComeFare.test.jsx +240 -286
  100. package/src/components/ItaliaTheme/View/__tests__/ServizioCondizioni.test.jsx +240 -286
  101. package/src/components/ItaliaTheme/View/__tests__/ServizioContatti.test.jsx +240 -286
  102. package/src/components/ItaliaTheme/View/__tests__/ServizioCosE.test.jsx +240 -286
  103. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaServe.test.jsx +240 -286
  104. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaSiOttiene.test.jsx +240 -286
  105. package/src/components/ItaliaTheme/View/__tests__/ServizioCostiVincoli.test.jsx +240 -286
  106. package/src/components/ItaliaTheme/View/__tests__/ServizioMetadati.test.jsx +240 -286
  107. package/src/components/ItaliaTheme/View/__tests__/ServizioModulistica.test.jsx +240 -286
  108. package/src/components/ItaliaTheme/View/__tests__/ServizioProcedure.test.jsx +240 -286
  109. package/src/components/ItaliaTheme/View/__tests__/ServizioSitiEsterni.test.jsx +240 -286
  110. package/src/components/ItaliaTheme/View/__tests__/ServizioTempiScadenze.test.jsx +240 -286
  111. package/src/components/ItaliaTheme/View/__tests__/ServizioUlterioriInformazioni.test.jsx +240 -286
  112. package/src/components/ItaliaTheme/View/__tests__/ServizioView.test.jsx +470 -560
  113. package/src/components/ItaliaTheme/View/__tests__/TrasparenzaView.test.jsx +12 -1
  114. package/src/components/ItaliaTheme/index.js +0 -1
  115. package/src/components/ItaliaTheme/manage/Widgets/ColorListWidget.jsx +11 -2
  116. package/src/components/ItaliaTheme/manage/Widgets/HtmlSlateWidget.jsx +156 -0
  117. package/src/components/ItaliaTheme/manage/Widgets/RichTextWidget.jsx +88 -0
  118. package/src/components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget.jsx +158 -0
  119. package/src/components/ItaliaTheme/manage/Widgets/TextEditorWidget.jsx +167 -270
  120. package/src/config/Blocks/ListingOptions/index.js +0 -1
  121. package/src/config/Blocks/ListingOptions/utils.js +0 -7
  122. package/src/config/Blocks/blocks.js +29 -8
  123. package/src/config/Blocks/listingVariations.js +1 -1
  124. package/src/config/Slate/Alignment/AlignMenu.jsx +169 -0
  125. package/src/config/Slate/Alignment/index.js +42 -0
  126. package/src/config/Slate/Blockquote/BlockquoteMenu.jsx +151 -0
  127. package/src/config/Slate/Blockquote/index.js +19 -0
  128. package/src/config/Slate/Headings/HeadingsMenu.jsx +139 -0
  129. package/src/config/Slate/Headings/headingsMenu.scss +44 -0
  130. package/src/config/Slate/Headings/index.js +62 -0
  131. package/src/config/Slate/Link/deserializer.js +25 -0
  132. package/src/config/Slate/Link/index.js +126 -0
  133. package/src/config/Slate/Link/renderer.jsx +99 -0
  134. package/src/config/Slate/LinkButton/index.js +47 -0
  135. package/src/config/Slate/TextLarger/index.js +51 -0
  136. package/src/config/Slate/Underline/index.js +10 -0
  137. package/src/config/Slate/config.js +43 -0
  138. package/src/config/Slate/deserializers.js +66 -0
  139. package/src/config/Slate/dropdownStyle.scss +14 -0
  140. package/src/config/Slate/dropdownUtils.js +422 -0
  141. package/src/config/Slate/extensions/breakList.js +91 -0
  142. package/src/config/Slate/handlers.js +243 -0
  143. package/src/config/Slate/utils.js +73 -0
  144. package/src/config/Widgets/widgets.js +1 -2
  145. package/src/config/italiaConfig.js +5 -53
  146. package/src/customizations/volto/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +361 -0
  147. package/src/customizations/volto/components/manage/Blocks/HeroImageLeft/Edit.jsx +75 -200
  148. package/src/customizations/volto/components/manage/Blocks/Video/Body.jsx +0 -1
  149. package/src/customizations/volto/components/manage/Blocks/Video/Edit.jsx +1 -1
  150. package/src/customizations/volto/components/manage/Form/BlocksToolbar.jsx +1 -1
  151. package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +76 -18
  152. package/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +4 -0
  153. package/src/customizations/volto-form-block/components/Field.jsx +45 -22
  154. package/src/helpers/EnhanceLink.js +44 -0
  155. package/src/helpers/FormValidation/FormValidationHelpers.js +3 -0
  156. package/src/helpers/blocks.js +80 -0
  157. package/src/helpers/files.js +13 -13
  158. package/src/helpers/index.js +4 -3
  159. package/src/helpers/richTextHelper.js +10 -0
  160. package/src/icons/Group.svg +1 -0
  161. package/src/icons/blocco-icone.svg +0 -3
  162. package/src/icons/blockquote-card-dark.svg +1 -0
  163. package/src/icons/blockquote-card.svg +1 -0
  164. package/src/icons/blockquote-simple.svg +1 -0
  165. package/src/icons/text-larger.svg +1 -0
  166. package/src/theme/ItaliaTheme/Blocks/_accordion.scss +2 -22
  167. package/src/theme/ItaliaTheme/Blocks/_alert.scss +51 -4
  168. package/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss +1 -0
  169. package/src/theme/ItaliaTheme/Blocks/_callout.scss +32 -0
  170. package/src/theme/ItaliaTheme/Blocks/_contacts.scss +17 -51
  171. package/src/theme/ItaliaTheme/Blocks/_countdown.scss +10 -1
  172. package/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss +7 -23
  173. package/src/theme/ItaliaTheme/Blocks/_gridBlock.scss +1 -1
  174. package/src/theme/ItaliaTheme/Blocks/_hero.scss +1 -8
  175. package/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss +6 -77
  176. package/src/theme/ItaliaTheme/Blocks/_imageCardTextBlock.scss +3 -2
  177. package/src/theme/ItaliaTheme/Blocks/_numbers.scss +6 -20
  178. package/src/theme/ItaliaTheme/Blocks/_simpleCardTextBlock.scss +8 -2
  179. package/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss +3 -1
  180. package/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss +1 -0
  181. package/src/theme/ItaliaTheme/Components/_megamenu.scss +0 -4
  182. package/src/theme/ItaliaTheme/Components/_mobileMenu.scss +12 -16
  183. package/src/theme/ItaliaTheme/Print/_page.scss +1 -1
  184. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_contacts.scss +3 -0
  185. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_cta.scss +1 -0
  186. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_searchSections.scss +1 -0
  187. package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_headercenter.scss +1 -0
  188. package/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss +11 -2
  189. package/src/theme/ItaliaTheme/Views/_servizio.scss +2 -2
  190. package/src/theme/ItaliaTheme/Views/_slider.scss +3 -0
  191. package/src/theme/ItaliaTheme/Widgets/_iconWidget.scss +4 -0
  192. package/src/theme/ItaliaTheme/_common.scss +1 -0
  193. package/src/theme/ItaliaTheme/_home.scss +0 -4
  194. package/src/theme/ItaliaTheme/_main.scss +78 -84
  195. package/src/theme/_cms-ui.scss +63 -160
  196. package/src/theme/_mixins.scss +13 -0
  197. package/src/theme/bootstrap-override/_bootstrap-italia-site.scss +1 -0
  198. package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +1 -1
  199. package/src/theme/bootstrap-override/bootstrap-italia/_forms.scss +7 -0
  200. package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +8 -3
  201. package/src/theme/extras/_forms.scss +2 -14
  202. package/src/theme/site.scss +1 -1
  203. package/test-setup-config.js +58 -0
  204. package/.yarn/cache/braces-npm-3.0.2-782240b28a-e2a8e769a8.zip +0 -0
  205. package/.yarn/cache/fill-range-npm-7.0.1-b8b1817caa-cc283f4e65.zip +0 -0
  206. package/.yarn/cache/micromatch-npm-4.0.5-cfab5d7669-02a17b671c.zip +0 -0
  207. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block.jsx +0 -151
  208. package/src/components/ItaliaTheme/RemoveBodyClass/RemoveBodyClass.jsx +0 -84
  209. package/src/config/RichTextEditor/LinkEntity.jsx +0 -27
  210. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/Link/index.jsx +0 -44
  211. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +0 -349
  212. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/index.js +0 -150
  213. package/src/config/RichTextEditor/Plugins/AnchorPlugin/index.js +0 -88
  214. package/src/config/RichTextEditor/ToolbarButtons/AlignButton.jsx +0 -61
  215. package/src/config/RichTextEditor/ToolbarButtons/ButtonsButton.jsx +0 -14
  216. package/src/config/RichTextEditor/ToolbarButtons/CalloutsButton.jsx +0 -38
  217. package/src/config/RichTextEditor/ToolbarButtons/DraftJsDropdownButton.jsx +0 -106
  218. package/src/config/RichTextEditor/ToolbarButtons/HeadingsButton.jsx +0 -57
  219. package/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx +0 -65
  220. package/src/config/RichTextEditor/ToolbarButtons/UnderlineButton.jsx +0 -14
  221. package/src/config/RichTextEditor/config.js +0 -253
  222. package/src/config/volto-gdpr-privacy-defaultPanelConfig.js +0 -292
  223. package/src/customizations/volto/components/manage/Blocks/ToC/View.jsx +0 -134
  224. package/src/customizations/volto/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +0 -99
  225. package/src/customizations/volto/config/RichTextEditor/Plugins.jsx +0 -63
  226. package/src/helpers/redraftHelper.js +0 -9
  227. package/src/theme/ItaliaTheme/Components/_logo.scss +0 -10
@@ -18,20 +18,16 @@ const mock_fields = {
18
18
  encoding: 'base64',
19
19
  filename: 'insalata-1280x720.jpeg',
20
20
  },
21
- text: {
22
- blocks: [
23
- {
24
- data: {},
25
- depth: 0,
26
- entityRanges: [],
27
- inlineStyleRanges: [],
28
- key: 'ctqrv',
29
- text: 'Ciao',
30
- type: 'unstyled',
31
- },
32
- ],
33
- entityMap: {},
34
- },
21
+ text: [
22
+ {
23
+ children: [
24
+ {
25
+ text: 'Ciao',
26
+ },
27
+ ],
28
+ type: 'p',
29
+ },
30
+ ],
35
31
  };
36
32
 
37
33
  const store = mockStore({
@@ -607,20 +607,16 @@ const mock_fields = {
607
607
  },
608
608
  ],
609
609
  id: '1675259976943',
610
- title: {
611
- blocks: [
612
- {
613
- data: {},
614
- depth: 0,
615
- entityRanges: [],
616
- inlineStyleRanges: [],
617
- key: 'b3tg0',
618
- text: 'Gunpowder',
619
- type: 'unstyled',
620
- },
621
- ],
622
- entityMap: {},
623
- },
610
+ title: [
611
+ {
612
+ type: 'p',
613
+ children: [
614
+ {
615
+ text: 'Gunpowder',
616
+ },
617
+ ],
618
+ },
619
+ ],
624
620
  },
625
621
  {
626
622
  argument: [
@@ -879,20 +875,16 @@ const mock_fields = {
879
875
  },
880
876
  ],
881
877
  id: '1675262982489',
882
- title: {
883
- blocks: [
884
- {
885
- data: {},
886
- depth: 0,
887
- entityRanges: [],
888
- inlineStyleRanges: [],
889
- key: '1dq8b',
890
- text: 'Gelatine',
891
- type: 'unstyled',
892
- },
893
- ],
894
- entityMap: {},
895
- },
878
+ title: [
879
+ {
880
+ type: 'p',
881
+ children: [
882
+ {
883
+ text: 'Gelatine',
884
+ },
885
+ ],
886
+ },
887
+ ],
896
888
  },
897
889
  ],
898
890
  text: "She's a killer queen",
@@ -59,7 +59,8 @@ const mock_fields = {
59
59
  has_children: false,
60
60
  head_title: null,
61
61
  icona: null,
62
- id: 'business-teamwork-join-hands-together-business-teamwork-concept_1150-1804.webp',
62
+ id:
63
+ 'business-teamwork-join-hands-together-business-teamwork-concept_1150-1804.webp',
63
64
  image: {
64
65
  scales: {
65
66
  gallery: {
@@ -286,34 +287,18 @@ const mock_fields = {
286
287
  ],
287
288
  ctaLink: 'http://localhost:3000/eventi',
288
289
  ctaLinkTitle: 'In conversation',
289
- cta_content: {
290
- blocks: [
291
- {
292
- data: {},
293
- depth: 0,
294
- entityRanges: [],
295
- inlineStyleRanges: [],
296
- key: '2urs0',
297
- text: 'She never kept the same address',
298
- type: 'unstyled',
299
- },
300
- ],
301
- entityMap: {},
302
- },
303
- cta_title: {
304
- blocks: [
305
- {
306
- data: {},
307
- depth: 0,
308
- entityRanges: [],
309
- inlineStyleRanges: [],
310
- key: 'd77m6',
311
- text: 'To avoid complications',
312
- type: 'unstyled',
313
- },
314
- ],
315
- entityMap: {},
316
- },
290
+ cta_content: [
291
+ {
292
+ children: [
293
+ {
294
+ text: 'She never kept the same address',
295
+ },
296
+ ],
297
+ type: 'p',
298
+ },
299
+ ],
300
+
301
+ cta_title: 'To avoid complications',
317
302
  showFullWidth: true,
318
303
  showImage: true,
319
304
  };
@@ -18,34 +18,17 @@ const mock_fields = {
18
18
  encoding: 'base64',
19
19
  filename: 'fisiatria.jpeg',
20
20
  },
21
- image_card_content: {
22
- blocks: [
23
- {
24
- data: {},
25
- depth: 0,
26
- entityRanges: [],
27
- inlineStyleRanges: [],
28
- key: '40dgi',
29
- text: 'Is this just fantasy?',
30
- type: 'unstyled',
31
- },
32
- ],
33
- entityMap: {},
34
- },
35
- image_card_title: {
36
- blocks: [
37
- {
38
- data: {},
39
- depth: 0,
40
- entityRanges: [],
41
- inlineStyleRanges: [],
42
- key: '61l6b',
43
- text: 'Is this the real life?',
44
- type: 'unstyled',
45
- },
46
- ],
47
- entityMap: {},
48
- },
21
+ image_card_content: [
22
+ {
23
+ children: [
24
+ {
25
+ text: 'Is this just fantasy?',
26
+ },
27
+ ],
28
+ type: 'p',
29
+ },
30
+ ],
31
+ image_card_title: 'Is this the real life?',
49
32
  rightImage: true,
50
33
  showImage: true,
51
34
  sizeNatural: true,
@@ -13,157 +13,92 @@ const mockStore = configureStore(middlewares);
13
13
  const mock_fields = {
14
14
  '@type': 'contacts',
15
15
  bg_color: 'primary',
16
- description: {
17
- blocks: [
18
- {
19
- data: {},
20
- depth: 0,
21
- entityRanges: [],
22
- inlineStyleRanges: [],
23
- key: '1hkp5',
24
- text: 'Let them eat cake',
25
- type: 'unstyled',
26
- },
27
- ],
28
- entityMap: {},
29
- },
16
+ description: [
17
+ {
18
+ children: [
19
+ {
20
+ text: 'Let them eat cake',
21
+ },
22
+ ],
23
+ type: 'p',
24
+ },
25
+ ],
30
26
  href: 'http://localhost:3000/eventi',
31
27
  lastChange: 1675330752814,
32
28
  linkMoreTitle: 'Extraordinarily nice',
33
29
  subblocks: [
34
30
  {
35
- email: {
36
- blocks: [
37
- {
38
- data: {},
39
- depth: 0,
40
- entityRanges: [],
41
- inlineStyleRanges: [],
42
- key: 'b64ho',
43
- text: 'For Khrushchev and Kennedy',
44
- type: 'unstyled',
45
- },
46
- ],
47
- entityMap: {},
48
- },
31
+ email: [
32
+ {
33
+ children: [
34
+ {
35
+ text: 'For Khrushchev and Kennedy',
36
+ },
37
+ ],
38
+ type: 'p',
39
+ },
40
+ ],
41
+
49
42
  id: '1675328833526',
50
- tel: {
51
- blocks: [
52
- {
53
- data: {},
54
- depth: 0,
55
- entityRanges: [],
56
- inlineStyleRanges: [],
57
- key: '8jj4b',
58
- text: 'A built-in remedy',
59
- type: 'unstyled',
60
- },
61
- ],
62
- entityMap: {},
63
- },
64
- text: {
65
- blocks: [
66
- {
67
- data: {},
68
- depth: 0,
69
- entityRanges: [],
70
- inlineStyleRanges: [],
71
- key: '797hd',
72
- text: 'Just like Mary Antoinette',
73
- type: 'unstyled',
74
- },
75
- ],
76
- entityMap: {},
77
- },
78
- title: {
79
- blocks: [
80
- {
81
- data: {},
82
- depth: 0,
83
- entityRanges: [],
84
- inlineStyleRanges: [],
85
- key: 'cue58',
86
- text: 'She said',
87
- type: 'unstyled',
88
- },
89
- ],
90
- entityMap: {},
91
- },
43
+ tel: [
44
+ {
45
+ children: [
46
+ {
47
+ text: 'A built-in remedy',
48
+ },
49
+ ],
50
+ type: 'p',
51
+ },
52
+ ],
53
+ text: [
54
+ {
55
+ children: [
56
+ {
57
+ text: 'Just like Mary Antoinette',
58
+ },
59
+ ],
60
+ type: 'p',
61
+ },
62
+ ],
63
+ title: 'She said',
92
64
  },
93
65
  {
94
- email: {
95
- blocks: [
96
- {
97
- data: {},
98
- depth: 0,
99
- entityRanges: [],
100
- inlineStyleRanges: [],
101
- key: 'd9ppr',
102
- text: 'Well versed in etiquette',
103
- type: 'unstyled',
104
- },
105
- ],
106
- entityMap: {},
107
- },
66
+ email: [
67
+ {
68
+ children: [
69
+ {
70
+ text: 'Well versed in etiquette',
71
+ },
72
+ ],
73
+ type: 'p',
74
+ },
75
+ ],
108
76
  id: '1675330720693',
109
- tel: {
110
- blocks: [
111
- {
112
- data: {},
113
- depth: 0,
114
- entityRanges: [],
115
- inlineStyleRanges: [],
116
- key: '519mp',
117
- text: 'Caviar and cigarettes',
118
- type: 'unstyled',
119
- },
120
- ],
121
- entityMap: {},
122
- },
123
- text: {
124
- blocks: [
125
- {
126
- data: {},
127
- depth: 0,
128
- entityRanges: [],
129
- inlineStyleRanges: [],
130
- key: 'fdbkp',
131
- text: "You can't decline",
132
- type: 'unstyled',
133
- },
134
- ],
135
- entityMap: {},
136
- },
137
- title: {
138
- blocks: [
139
- {
140
- data: {},
141
- depth: 0,
142
- entityRanges: [],
143
- inlineStyleRanges: [],
144
- key: '999ad',
145
- text: 'At anytime an invitation',
146
- type: 'unstyled',
147
- },
148
- ],
149
- entityMap: {},
150
- },
77
+ tel: [
78
+ {
79
+ children: [
80
+ {
81
+ text: 'Caviar and cigarettes',
82
+ },
83
+ ],
84
+ type: 'p',
85
+ },
86
+ ],
87
+
88
+ text: [
89
+ {
90
+ children: [
91
+ {
92
+ text: "You can't decline",
93
+ },
94
+ ],
95
+ type: 'p',
96
+ },
97
+ ],
98
+ title: 'At anytime an invitation',
151
99
  },
152
100
  ],
153
- title: {
154
- blocks: [
155
- {
156
- data: {},
157
- depth: 0,
158
- entityRanges: [],
159
- inlineStyleRanges: [],
160
- key: '12dh5',
161
- text: 'In her pretty cabinet',
162
- type: 'unstyled',
163
- },
164
- ],
165
- entityMap: {},
166
- },
101
+ title: 'In her pretty cabinet',
167
102
  };
168
103
 
169
104
  const store = mockStore({
@@ -202,40 +202,32 @@ const mock_fields = {
202
202
  whole_day: null,
203
203
  },
204
204
  ],
205
- countdown_text: {
206
- blocks: [
207
- {
208
- data: {},
209
- depth: 0,
210
- entityRanges: [],
211
- inlineStyleRanges: [],
212
- key: '6chjd',
213
- text: 'Insatiable an appetite',
214
- type: 'unstyled',
215
- },
216
- ],
217
- entityMap: {},
218
- },
205
+ countdown_text: [
206
+ {
207
+ children: [
208
+ {
209
+ text: 'Insatiable an appetite',
210
+ },
211
+ ],
212
+ type: 'p',
213
+ },
214
+ ],
219
215
  countDownPosition: 'right',
220
216
  endDate: '2050-02-28T09:48:37.327Z',
221
217
  showFullWidth: true,
222
218
  showHours: true,
223
219
  showMinutes: true,
224
220
  showSeconds: true,
225
- text: {
226
- blocks: [
227
- {
228
- data: {},
229
- depth: 0,
230
- entityRanges: [],
231
- inlineStyleRanges: [],
232
- key: '4ir6b',
233
- text: 'Recommended at the price',
234
- type: 'unstyled',
235
- },
236
- ],
237
- entityMap: {},
238
- },
221
+ text: [
222
+ {
223
+ children: [
224
+ {
225
+ text: 'Recommended at the price',
226
+ },
227
+ ],
228
+ type: 'p',
229
+ },
230
+ ],
239
231
  };
240
232
 
241
233
  const store = mockStore({
@@ -284,20 +284,16 @@ const mock_fields = {
284
284
  whole_day: null,
285
285
  },
286
286
  ],
287
- description: {
288
- blocks: [
289
- {
290
- data: {},
291
- depth: 0,
292
- entityRanges: [],
293
- inlineStyleRanges: [],
294
- key: '9v9gk',
295
- text: 'With his brim pulled way down low',
296
- type: 'unstyled',
297
- },
298
- ],
299
- entityMap: {},
300
- },
287
+ description: [
288
+ {
289
+ children: [
290
+ {
291
+ text: 'With his brim pulled way down low',
292
+ },
293
+ ],
294
+ type: 'p',
295
+ },
296
+ ],
301
297
  href: '/',
302
298
  lastChange: 1675437158941,
303
299
  linkMoreTitle: "Ain't no sound but the sound of his feet",
@@ -307,50 +303,20 @@ const mock_fields = {
307
303
  icon: 'hand-holding-heart',
308
304
  id: '1675437158941',
309
305
  linkMoreTitle: 'Are you hanging on the edge of your seat?',
310
- text: {
311
- blocks: [
312
- {
313
- data: {},
314
- depth: 0,
315
- entityRanges: [],
316
- inlineStyleRanges: [],
317
- key: '606nn',
318
- text: 'Are you ready for this?\n',
319
- type: 'unstyled',
320
- },
321
- ],
322
- entityMap: {},
323
- },
324
- title: {
325
- blocks: [
326
- {
327
- data: {},
328
- depth: 0,
329
- entityRanges: [],
330
- inlineStyleRanges: [],
331
- key: '3qt26',
332
- text: 'Machine guns ready to go',
333
- type: 'unstyled',
334
- },
335
- ],
336
- entityMap: {},
337
- },
306
+ text: [
307
+ {
308
+ children: [
309
+ {
310
+ text: 'Are you ready for this?',
311
+ },
312
+ ],
313
+ type: 'p',
314
+ },
315
+ ],
316
+ title: 'Machine guns ready to go',
338
317
  },
339
318
  ],
340
- title: {
341
- blocks: [
342
- {
343
- data: {},
344
- depth: 0,
345
- entityRanges: [],
346
- inlineStyleRanges: [],
347
- key: 'ap3pb',
348
- text: 'Steve walks warily down the street',
349
- type: 'unstyled',
350
- },
351
- ],
352
- entityMap: {},
353
- },
319
+ title: 'Steve walks warily down the street',
354
320
  };
355
321
 
356
322
  const store = mockStore({
@@ -59,7 +59,8 @@ const mock_fields = {
59
59
  has_children: false,
60
60
  head_title: null,
61
61
  icona: null,
62
- id: 'business-teamwork-join-hands-together-business-teamwork-concept_1150-1804.webp',
62
+ id:
63
+ 'business-teamwork-join-hands-together-business-teamwork-concept_1150-1804.webp',
63
64
  image: {
64
65
  scales: {
65
66
  gallery: {
@@ -291,50 +292,20 @@ const mock_fields = {
291
292
  subblocks: [
292
293
  {
293
294
  id: '1675873050846',
294
- text: {
295
- blocks: [
296
- {
297
- data: {},
298
- depth: 0,
299
- entityRanges: [],
300
- inlineStyleRanges: [],
301
- key: '6l805',
302
- text: 'Is this just fantasy',
303
- type: 'unstyled',
304
- },
305
- ],
306
- entityMap: {},
307
- },
308
- title: {
309
- blocks: [
310
- {
311
- data: {},
312
- depth: 0,
313
- entityRanges: [],
314
- inlineStyleRanges: [],
315
- key: 'd13g8',
316
- text: '26',
317
- type: 'unstyled',
318
- },
319
- ],
320
- entityMap: {},
321
- },
295
+ text: [
296
+ {
297
+ children: [
298
+ {
299
+ text: 'Is this just fantasy',
300
+ },
301
+ ],
302
+ type: 'p',
303
+ },
304
+ ],
305
+ title: '26',
322
306
  },
323
307
  ],
324
- title: {
325
- blocks: [
326
- {
327
- data: {},
328
- depth: 0,
329
- entityRanges: [],
330
- inlineStyleRanges: [],
331
- key: '7d5lk',
332
- text: 'Is this the real life',
333
- type: 'unstyled',
334
- },
335
- ],
336
- entityMap: {},
337
- },
308
+ title: 'Is this the real life',
338
309
  };
339
310
 
340
311
  const store = mockStore({