design-comuni-plone-theme 11.19.0 → 11.20.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 (97) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/CHANGELOG.md +22 -0
  3. package/package.json +1 -1
  4. package/publiccode.yml +2 -2
  5. package/src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx +1 -1
  6. package/src/components/ItaliaTheme/Blocks/Accordion/index.js +16 -0
  7. package/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx +2 -4
  8. package/src/components/ItaliaTheme/Blocks/Alert/index.js +16 -0
  9. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +1 -1
  10. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/index.js +17 -0
  11. package/src/components/ItaliaTheme/Blocks/BandiSearch/Edit.jsx +1 -1
  12. package/src/components/ItaliaTheme/Blocks/BandiSearch/index.js +16 -0
  13. package/src/components/ItaliaTheme/Blocks/Break/index.js +10 -0
  14. package/src/components/ItaliaTheme/Blocks/CTABlock/Edit.jsx +2 -2
  15. package/src/components/ItaliaTheme/Blocks/CTABlock/index.js +17 -0
  16. package/src/components/ItaliaTheme/Blocks/Calendar/Edit.jsx +2 -6
  17. package/src/components/ItaliaTheme/Blocks/Calendar/index.js +17 -0
  18. package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/SelectFilter.jsx +6 -4
  19. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx +1 -1
  20. package/src/components/ItaliaTheme/Blocks/ContactsBlock/index.js +17 -0
  21. package/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx +1 -1
  22. package/src/components/ItaliaTheme/Blocks/CountDown/index.js +16 -0
  23. package/src/components/ItaliaTheme/Blocks/EventSearch/Edit.jsx +1 -1
  24. package/src/components/ItaliaTheme/Blocks/EventSearch/index.js +17 -0
  25. package/src/components/ItaliaTheme/Blocks/HighlightedContent/Edit.jsx +1 -1
  26. package/src/components/ItaliaTheme/Blocks/HighlightedContent/getAsyncData.js +10 -0
  27. package/src/components/ItaliaTheme/Blocks/HighlightedContent/index.js +17 -0
  28. package/src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx +1 -1
  29. package/src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx +1 -1
  30. package/src/components/ItaliaTheme/Blocks/IconBlocks/index.js +17 -0
  31. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +2 -2
  32. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Sidebar.jsx +1 -1
  33. package/src/components/ItaliaTheme/Blocks/NumbersBlock/index.js +17 -0
  34. package/src/components/ItaliaTheme/Blocks/SearchSections/Edit.jsx +3 -5
  35. package/src/components/ItaliaTheme/Blocks/SearchSections/index.js +17 -0
  36. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Edit.jsx +1 -1
  37. package/src/components/ItaliaTheme/Blocks/TextCard/index.js +23 -0
  38. package/src/components/ItaliaTheme/Blocks/UOSearch/Edit.jsx +1 -1
  39. package/src/components/ItaliaTheme/Blocks/UOSearch/index.js +17 -0
  40. package/src/components/ItaliaTheme/Blocks/VideoGallery/Edit.jsx +1 -1
  41. package/src/components/ItaliaTheme/Blocks/VideoGallery/index.js +17 -0
  42. package/src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx +8 -7
  43. package/src/components/ItaliaTheme/Icons/Icon.jsx +1 -1
  44. package/src/components/ItaliaTheme/View/BandoView/index.js +68 -0
  45. package/src/components/ItaliaTheme/View/CartellaModulisticaView/index.js +20 -0
  46. package/src/components/ItaliaTheme/View/Commons/index.jsx +358 -20
  47. package/src/components/ItaliaTheme/View/DocumentoView/index.js +68 -0
  48. package/src/components/ItaliaTheme/View/EventoView/index.js +74 -0
  49. package/src/components/ItaliaTheme/View/FAQ/FaqFolder/index.js +32 -0
  50. package/src/components/ItaliaTheme/View/FAQ/FaqView/index.js +20 -0
  51. package/src/components/ItaliaTheme/View/IncaricoView/index.js +26 -0
  52. package/src/components/ItaliaTheme/View/ModuloView/index.js +44 -0
  53. package/src/components/ItaliaTheme/View/NewsItemView/index.js +62 -0
  54. package/src/components/ItaliaTheme/View/PageView/index.js +26 -0
  55. package/src/components/ItaliaTheme/View/PaginaArgomentoView/index.js +26 -0
  56. package/src/components/ItaliaTheme/View/PersonaView/index.js +44 -0
  57. package/src/components/ItaliaTheme/View/PuntoDiContattoView/index.js +26 -0
  58. package/src/components/ItaliaTheme/View/ServizioView/index.js +152 -0
  59. package/src/components/ItaliaTheme/View/TrasparenzaView/index.js +20 -0
  60. package/src/components/ItaliaTheme/View/UOView/index.js +86 -0
  61. package/src/components/ItaliaTheme/View/VenueView/index.js +86 -0
  62. package/src/components/ItaliaTheme/View/index.js +255 -203
  63. package/src/components/ItaliaTheme/index.js +43 -15
  64. package/src/components/ItaliaTheme/manage/Widgets/IconWidget.jsx +1 -1
  65. package/src/components/ItaliaTheme/manage/Widgets/index.js +94 -0
  66. package/src/config/Blocks/blocks.js +87 -49
  67. package/src/config/Views/views.js +20 -20
  68. package/src/config/Widgets/widgets.js +12 -10
  69. package/src/config/italiaConfig.js +23 -21
  70. package/src/config/loadables.js +5 -0
  71. package/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx +6 -1
  72. package/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +31 -14
  73. package/src/customizations/volto/components/theme/Search/Search.jsx +6 -1
  74. package/src/customizations/volto-feedback/components/FeedbackForm/Steps/{Commons.jsx → Commons/FormHeader.jsx} +2 -1
  75. package/src/helpers/IconWidget/IconAliasHelper.js +2 -1
  76. package/src/helpers/index.js +1 -2
  77. package/src/icons/index.js +161 -0
  78. /package/src/components/ItaliaTheme/View/{__tests__/CartellaModulisticaView.test.jsx → __disabled_tests__/CartellaModulisticaView.test__disabled.jsx} +0 -0
  79. /package/src/components/ItaliaTheme/View/{__tests__/ModuloView.test.jsx → __disabled_tests__/ModuloView.test__disabled.jsx} +0 -0
  80. /package/src/components/ItaliaTheme/View/{__tests__/PersonaView.test.jsx → __disabled_tests__/PersonaView.test__disabled.jsx} +0 -0
  81. /package/src/components/ItaliaTheme/View/{__tests__/ServizioAChiSiRivolge.test.jsx → __disabled_tests__/ServizioAChiSiRivolge.test__disabled.jsx} +0 -0
  82. /package/src/components/ItaliaTheme/View/{__tests__/ServizioAccedi.test.jsx → __disabled_tests__/ServizioAccedi.test__disabled.jsx} +0 -0
  83. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCasiParticolari.test.jsx → __disabled_tests__/ServizioCasiParticolari.test__disabled.jsx} +0 -0
  84. /package/src/components/ItaliaTheme/View/{__tests__/ServizioComeFare.test.jsx → __disabled_tests__/ServizioComeFare.test__disabled.jsx} +0 -0
  85. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCondizioni.test.jsx → __disabled_tests__/ServizioCondizioni.test__disabled.jsx} +0 -0
  86. /package/src/components/ItaliaTheme/View/{__tests__/ServizioContatti.test.jsx → __disabled_tests__/ServizioContatti.test__disabled.jsx} +0 -0
  87. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCosE.test.jsx → __disabled_tests__/ServizioCosE.test__disabled.jsx} +0 -0
  88. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCosaServe.test.jsx → __disabled_tests__/ServizioCosaServe.test__disabled.jsx} +0 -0
  89. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCosaSiOttiene.test.jsx → __disabled_tests__/ServizioCosaSiOttiene.test__disabled.jsx} +0 -0
  90. /package/src/components/ItaliaTheme/View/{__tests__/ServizioCostiVincoli.test.jsx → __disabled_tests__/ServizioCostiVincoli.test__disabled.jsx} +0 -0
  91. /package/src/components/ItaliaTheme/View/{__tests__/ServizioMetadati.test.jsx → __disabled_tests__/ServizioMetadati.test__disabled.jsx} +0 -0
  92. /package/src/components/ItaliaTheme/View/{__tests__/ServizioModulistica.test.jsx → __disabled_tests__/ServizioModulistica.test__disabled.jsx} +0 -0
  93. /package/src/components/ItaliaTheme/View/{__tests__/ServizioProcedure.test.jsx → __disabled_tests__/ServizioProcedure.test__disabled.jsx} +0 -0
  94. /package/src/components/ItaliaTheme/View/{__tests__/ServizioSitiEsterni.test.jsx → __disabled_tests__/ServizioSitiEsterni.test__disabled.jsx} +0 -0
  95. /package/src/components/ItaliaTheme/View/{__tests__/ServizioTempiScadenze.test.jsx → __disabled_tests__/ServizioTempiScadenze.test__disabled.jsx} +0 -0
  96. /package/src/components/ItaliaTheme/View/{__tests__/ServizioUlterioriInformazioni.test.jsx → __disabled_tests__/ServizioUlterioriInformazioni.test__disabled.jsx} +0 -0
  97. /package/src/components/ItaliaTheme/View/{__tests__/TrasparenzaView.test.jsx → __disabled_tests__/TrasparenzaView.test__disabled.jsx} +0 -0
@@ -1,13 +1,13 @@
1
1
  /**
2
- * Icon component.
3
- * @module components/ItaliaTheme/Icons/SectionIcon
2
+ * FontAwesomeIcon component.
3
+ * @module components/ItaliaTheme/Icons/FontAwesomeIcon
4
4
  */
5
5
  import React, { useMemo } from 'react';
6
6
  import { v4 as uuid } from 'uuid';
7
- import { fontAwesomeAliases } from 'design-comuni-plone-theme/helpers/index';
7
+ import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable';
8
8
 
9
9
  const FontAwesomeIcon = (props) => {
10
- const { className, icon, prefix, title } = props;
10
+ const { className, icon, prefix, title, fontAwesomeAliases } = props;
11
11
  const iconID = useMemo(() => uuid(), []);
12
12
  const [loadedIcon, setLoadedIcon] = React.useState({
13
13
  module: null,
@@ -27,9 +27,9 @@ const FontAwesomeIcon = (props) => {
27
27
  let iconName = '';
28
28
  if (Array.isArray(icon)) {
29
29
  prefixKey = icon[0];
30
- iconName = getIconAlias(icon[1], fontAwesomeAliases);
30
+ iconName = getIconAlias(icon[1], fontAwesomeAliases.default);
31
31
  } else {
32
- iconName = getIconAlias(icon, fontAwesomeAliases);
32
+ iconName = getIconAlias(icon, fontAwesomeAliases.default);
33
33
  }
34
34
 
35
35
  return [
@@ -53,6 +53,7 @@ const FontAwesomeIcon = (props) => {
53
53
  (iconName !== loadedIcon.iconName || prefixFolder !== loadedIcon.family)
54
54
  ) {
55
55
  import(
56
+ /* webpackChunkName: "DCPTIcons" */
56
57
  `design-comuni-plone-theme/icons/fontawesome-free-6.4.0-web/svgs/${prefixFolder}/${iconName}.svg`
57
58
  )
58
59
  .then((_loadedIcon) => {
@@ -89,4 +90,4 @@ const FontAwesomeIcon = (props) => {
89
90
  );
90
91
  };
91
92
 
92
- export default FontAwesomeIcon;
93
+ export default injectLazyLibs(['fontAwesomeAliases'])(FontAwesomeIcon);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Icon component.
3
- * @module components/ItaliaTheme/Icons/SectionIcon
3
+ * @module components/ItaliaTheme/Icons/Icon
4
4
  */
5
5
  import React from 'react';
6
6
  import classNames from 'classnames';
@@ -0,0 +1,68 @@
1
+ import loadable from '@loadable/component';
2
+
3
+ export const BandoView = loadable(
4
+ () =>
5
+ import(
6
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoView'
7
+ ),
8
+ );
9
+ export const BandoPlaceholderAfterContent = loadable(
10
+ () =>
11
+ import(
12
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/Placeholder/AfterContent'
13
+ ),
14
+ );
15
+ export const BandoPlaceholderAfterRelatedItems = loadable(
16
+ () =>
17
+ import(
18
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/Placeholder/AfterRelatedItems'
19
+ ),
20
+ );
21
+ export const BandoText = loadable(
22
+ () =>
23
+ import(
24
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoText'
25
+ ),
26
+ );
27
+ export const BandoUfficioResponsabile = loadable(
28
+ () =>
29
+ import(
30
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoUfficioResponsabile'
31
+ ),
32
+ );
33
+ export const BandoAreaResponsabile = loadable(
34
+ () =>
35
+ import(
36
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoAreaResponsabile'
37
+ ),
38
+ );
39
+ export const BandoServizi = loadable(
40
+ () =>
41
+ import(
42
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoServizi'
43
+ ),
44
+ );
45
+ export const BandoDate = loadable(
46
+ () =>
47
+ import(
48
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoDate'
49
+ ),
50
+ );
51
+ export const BandoApprofondimenti = loadable(
52
+ () =>
53
+ import(
54
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoApprofondimenti'
55
+ ),
56
+ );
57
+ export const BandoNoteAggiornamento = loadable(
58
+ () =>
59
+ import(
60
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoNoteAggiornamento'
61
+ ),
62
+ );
63
+ export const BandoUlterioriInformazioni = loadable(
64
+ () =>
65
+ import(
66
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/BandoView/BandoUlterioriInformazioni'
67
+ ),
68
+ );
@@ -0,0 +1,20 @@
1
+ import loadable from '@loadable/component';
2
+
3
+ export const CartellaModulisticaView = loadable(
4
+ () =>
5
+ import(
6
+ /* webpackChunkName: "DCPTViews_CartMod" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/CartellaModulisticaView/CartellaModulisticaView'
7
+ ),
8
+ );
9
+ export const CartellaModulisticaAfterContent = loadable(
10
+ () =>
11
+ import(
12
+ /* webpackChunkName: "DCPTViews_CartMod" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/CartellaModulisticaView/Placeholder/AfterContent'
13
+ ),
14
+ );
15
+ export const CartellaModulisticaAfterRelatedItems = loadable(
16
+ () =>
17
+ import(
18
+ /* webpackChunkName: "DCPTViews_CartMod" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/CartellaModulisticaView/Placeholder/AfterRelatedItems'
19
+ ),
20
+ );
@@ -1,20 +1,358 @@
1
- export Attachments from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Attachments';
2
- export Attachment from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Attachment';
3
- export Gallery from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Gallery';
4
- export CuredBy from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/CuredBy';
5
- export VenuesSmall from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/VenuesSmall';
6
- export WideImage from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/WideImage';
7
- export SideMenu from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SideMenu';
8
- export PageHeader from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeader';
9
- export OfficeCard from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/OfficeCard';
10
- export Metadata from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Metadata';
11
- export Sharing from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Sharing';
12
- export Venue from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Venue';
13
- export SmallVenue from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SmallVenue';
14
- export GenericCard from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/GenericCard';
15
- export RelatedNews from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedNews';
16
- export Actions from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Actions';
17
- export NewsCard from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/NewsCard';
18
- export TextOrBlocks from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/TextOrBlocks';
19
- export RelatedItems from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedItems';
20
- export SkipToMainContent from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SkipToMainContent';
1
+ import loadable from '@loadable/component';
2
+
3
+ export RenderBlocks from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RenderBlocks';
4
+
5
+ export {
6
+ RichTextRender,
7
+ richTextHasContent,
8
+ } from 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RichTextRender';
9
+
10
+ export const RichTextSection = loadable(
11
+ () =>
12
+ import(
13
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RichTextSection'
14
+ ),
15
+ );
16
+ export const RichText = loadable(
17
+ () =>
18
+ import(
19
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RichText'
20
+ ),
21
+ );
22
+
23
+ export const RelatedNewsArticles = loadable(
24
+ () =>
25
+ import(
26
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedNewsArticles'
27
+ ),
28
+ );
29
+ export const RelatedArticles = loadable(
30
+ () =>
31
+ import(
32
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedArticles'
33
+ ),
34
+ );
35
+ export const ArgumentIcon = loadable(
36
+ () =>
37
+ import(
38
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Argument/ArgumentIcon'
39
+ ),
40
+ );
41
+ export const ContactLink = loadable(
42
+ () =>
43
+ import(
44
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/ContactLink'
45
+ ),
46
+ );
47
+
48
+ export const TextOrBlocks = loadable(
49
+ () =>
50
+ import(
51
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/TextOrBlocks'
52
+ ),
53
+ );
54
+
55
+ export const Sharing = loadable(
56
+ () =>
57
+ import(
58
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Sharing'
59
+ ),
60
+ );
61
+ export const Actions = loadable(
62
+ () =>
63
+ import(
64
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Actions'
65
+ ),
66
+ );
67
+ export const SideMenu = loadable(
68
+ () =>
69
+ import(
70
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SideMenu'
71
+ ),
72
+ );
73
+ export const Gallery = loadable(
74
+ () =>
75
+ import(
76
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Gallery'
77
+ ),
78
+ );
79
+ export const Dates = loadable(
80
+ () =>
81
+ import(
82
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Dates'
83
+ ),
84
+ );
85
+ export const HelpBox = loadable(
86
+ () =>
87
+ import(
88
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/HelpBox'
89
+ ),
90
+ );
91
+ export const EmbeddedVideo = loadable(
92
+ () =>
93
+ import(
94
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/EmbeddedVideo'
95
+ ),
96
+ );
97
+ export const Events = loadable(
98
+ () =>
99
+ import(
100
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Events'
101
+ ),
102
+ );
103
+ export const Venue = loadable(
104
+ () =>
105
+ import(
106
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Venue'
107
+ ),
108
+ );
109
+ export const ContentTypeViewSections = loadable(
110
+ () =>
111
+ import(
112
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/ContentTypeViewSections'
113
+ ),
114
+ );
115
+
116
+ export const PageHeader = loadable(
117
+ () =>
118
+ import(
119
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeader'
120
+ ),
121
+ );
122
+ export const PageHeaderDates = loadable(
123
+ () =>
124
+ import(
125
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates'
126
+ ),
127
+ );
128
+ export const PageHeaderExtend = loadable(
129
+ () =>
130
+ import(
131
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderExtend'
132
+ ),
133
+ );
134
+ export const PageHeaderEventDates = loadable(
135
+ () =>
136
+ import(
137
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderEventDates'
138
+ ),
139
+ );
140
+ export const PageHeaderPersona = loadable(
141
+ () =>
142
+ import(
143
+ /* webpackChunkName: "DCPTViews_Persona" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderPersona'
144
+ ),
145
+ );
146
+ export const PageHeaderBando = loadable(
147
+ () =>
148
+ import(
149
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderBando'
150
+ ),
151
+ );
152
+ export const PageHeaderNewsItem = loadable(
153
+ () =>
154
+ import(
155
+ /* webpackChunkName: "DCPTViews_Notizia" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderNewsItem'
156
+ ),
157
+ );
158
+ export const PageHeaderStatoServizio = loadable(
159
+ () =>
160
+ import(
161
+ /* webpackChunkName: "DCPTViews_Servizio" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderStatoServizio'
162
+ ),
163
+ );
164
+ export const PageHeaderLinkServizio = loadable(
165
+ () =>
166
+ import(
167
+ /* webpackChunkName: "DCPTViews_Servizio" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderLinkServizio'
168
+ ),
169
+ );
170
+ export const PageHeaderTassonomiaArgomenti = loadable(
171
+ () =>
172
+ import(
173
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderTassonomiaArgomenti'
174
+ ),
175
+ );
176
+ export const PageHeaderDocumento = loadable(
177
+ () =>
178
+ import(
179
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDocumento'
180
+ ),
181
+ );
182
+ export const Attachment = loadable(
183
+ () =>
184
+ import(
185
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Attachment'
186
+ ),
187
+ );
188
+ export const Attachments = loadable(
189
+ () =>
190
+ import(
191
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Attachments'
192
+ ),
193
+ );
194
+ export const CuredBy = loadable(
195
+ () =>
196
+ import(
197
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/CuredBy'
198
+ ),
199
+ );
200
+ export const Metadata = loadable(
201
+ () =>
202
+ import(
203
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Metadata'
204
+ ),
205
+ );
206
+ export const PageMetadata = loadable(
207
+ () =>
208
+ import(
209
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageMetadata'
210
+ ),
211
+ );
212
+ export const SearchSectionForm = loadable(
213
+ () =>
214
+ import(
215
+ /* webpackChunkName: "DCPTViews_Page" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SearchSectionForm'
216
+ ),
217
+ );
218
+ export const PageHeaderNav = loadable(
219
+ () =>
220
+ import(
221
+ /* webpackChunkName: "DCPTViews_Page" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/PageHeaderNav'
222
+ ),
223
+ );
224
+ export const SkipToMainContent = loadable(
225
+ () =>
226
+ import(
227
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SkipToMainContent'
228
+ ),
229
+ );
230
+ export const TrasparenzaFields = loadable(
231
+ () =>
232
+ import(
233
+ /* webpackChunkName: "DCPTViews_Servizio" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/TrasparenzaFields'
234
+ ),
235
+ );
236
+
237
+ export const Modules = loadable(
238
+ () =>
239
+ import(
240
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Modules'
241
+ ),
242
+ );
243
+ export const Module = loadable(
244
+ () =>
245
+ import(
246
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Module'
247
+ ),
248
+ );
249
+
250
+ export const GenericCard = loadable(
251
+ () =>
252
+ import(
253
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/GenericCard'
254
+ ),
255
+ );
256
+ export const NewsCard = loadable(
257
+ () =>
258
+ import(
259
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/NewsCard'
260
+ ),
261
+ );
262
+ export const OfficeCard = loadable(
263
+ () =>
264
+ import(
265
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/OfficeCard'
266
+ ),
267
+ );
268
+ export const ContactsCard = loadable(
269
+ () =>
270
+ import(
271
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/ContactsCard'
272
+ ),
273
+ );
274
+
275
+ export const RelatedNews = loadable(
276
+ () =>
277
+ import(
278
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedNews'
279
+ ),
280
+ );
281
+ export const WideImage = loadable(
282
+ () =>
283
+ import(
284
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/WideImage'
285
+ ),
286
+ );
287
+ export const ContentImage = loadable(
288
+ () =>
289
+ import(
290
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/ContentImage'
291
+ ),
292
+ );
293
+ export const VenuesSmall = loadable(
294
+ () =>
295
+ import(
296
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/VenuesSmall'
297
+ ),
298
+ );
299
+ export const Locations = loadable(
300
+ () =>
301
+ import(
302
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Locations'
303
+ ),
304
+ );
305
+ export const LocationItem = loadable(
306
+ () =>
307
+ import(
308
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/LocationItem'
309
+ ),
310
+ );
311
+ export const LocationsMap = loadable(
312
+ () =>
313
+ import(
314
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/LocationsMap'
315
+ ),
316
+ );
317
+ export const SmallVenue = loadable(
318
+ () =>
319
+ import(
320
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/SmallVenue'
321
+ ),
322
+ );
323
+ export const Sponsors = loadable(
324
+ () =>
325
+ import(
326
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/Sponsors'
327
+ ),
328
+ );
329
+ export const RelatedItems = loadable(
330
+ () =>
331
+ import(
332
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedItems'
333
+ ),
334
+ );
335
+ export const RelatedItemInEvidence = loadable(
336
+ () =>
337
+ import(
338
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/RelatedItemInEvidence/RelatedItemInEvidence'
339
+ ),
340
+ );
341
+ export const DownloadFileFormat = loadable(
342
+ () =>
343
+ import(
344
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/DownloadFileFormat'
345
+ ),
346
+ );
347
+ export const BandoStatus = loadable(
348
+ () =>
349
+ import(
350
+ /* webpackChunkName: "DCPTViewsCommons" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/BandoStatus'
351
+ ),
352
+ );
353
+ export const BandoDates = loadable(
354
+ () =>
355
+ import(
356
+ /* webpackChunkName: "DCPTViews_Bando" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/Commons/BandoDates'
357
+ ),
358
+ );
@@ -0,0 +1,68 @@
1
+ import loadable from '@loadable/component';
2
+
3
+ export const DocumentoView = loadable(
4
+ () =>
5
+ import(
6
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoView'
7
+ ),
8
+ );
9
+ export const DocumentoPlaceholderAfterContent = loadable(
10
+ () =>
11
+ import(
12
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/Placeholder/AfterContent'
13
+ ),
14
+ );
15
+ export const DocumentoPlaceholderAfterRelatedItems = loadable(
16
+ () =>
17
+ import(
18
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/Placeholder/AfterRelatedItems'
19
+ ),
20
+ );
21
+ export const DocumentoAutori = loadable(
22
+ () =>
23
+ import(
24
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoAutori'
25
+ ),
26
+ );
27
+ export const DocumentoDescrizione = loadable(
28
+ () =>
29
+ import(
30
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoDescrizione'
31
+ ),
32
+ );
33
+ export const DocumentoDocumenti = loadable(
34
+ () =>
35
+ import(
36
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoDocumenti'
37
+ ),
38
+ );
39
+ export const DocumentoUfficioResponsabile = loadable(
40
+ () =>
41
+ import(
42
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoUfficioResponsabile'
43
+ ),
44
+ );
45
+ export const DocumentoAreaResponsabile = loadable(
46
+ () =>
47
+ import(
48
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoAreaResponsabile'
49
+ ),
50
+ );
51
+ export const DocumentoAccedereServizio = loadable(
52
+ () =>
53
+ import(
54
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoAccedereServizio'
55
+ ),
56
+ );
57
+ export const DocumentoDocAllegati = loadable(
58
+ () =>
59
+ import(
60
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoDocAllegati'
61
+ ),
62
+ );
63
+ export const DocumentoUlterioriInformazioni = loadable(
64
+ () =>
65
+ import(
66
+ /* webpackChunkName: "DCPTViews_Documento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/DocumentoView/DocumentoUlterioriInformazioni'
67
+ ),
68
+ );
@@ -0,0 +1,74 @@
1
+ import loadable from '@loadable/component';
2
+
3
+ export const EventoView = loadable(
4
+ () =>
5
+ import(
6
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoView'
7
+ ),
8
+ );
9
+ export const EventoPlaceholderAfterContent = loadable(
10
+ () =>
11
+ import(
12
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/Placeholder/AfterContent'
13
+ ),
14
+ );
15
+ export const EventoPlaceholderAfterRelatedItems = loadable(
16
+ () =>
17
+ import(
18
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/Placeholder/AfterRelatedItems'
19
+ ),
20
+ );
21
+ export const EventoCosE = loadable(
22
+ () =>
23
+ import(
24
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoCosE'
25
+ ),
26
+ );
27
+ export const EventoLuoghi = loadable(
28
+ () =>
29
+ import(
30
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoLuoghi'
31
+ ),
32
+ );
33
+ export const EventoDateOrari = loadable(
34
+ () =>
35
+ import(
36
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoDateOrari'
37
+ ),
38
+ );
39
+ export const EventoCosti = loadable(
40
+ () =>
41
+ import(
42
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoCosti'
43
+ ),
44
+ );
45
+ export const EventoDocumenti = loadable(
46
+ () =>
47
+ import(
48
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoDocumenti'
49
+ ),
50
+ );
51
+ export const EventoContatti = loadable(
52
+ () =>
53
+ import(
54
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoContatti'
55
+ ),
56
+ );
57
+ export const EventoPadreEFigli = loadable(
58
+ () =>
59
+ import(
60
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoPadreEFigli'
61
+ ),
62
+ );
63
+ export const EventoSponsors = loadable(
64
+ () =>
65
+ import(
66
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoSponsors'
67
+ ),
68
+ );
69
+ export const EventoUlterioriInformazioni = loadable(
70
+ () =>
71
+ import(
72
+ /* webpackChunkName: "DCPTViews_Evento" */ 'design-comuni-plone-theme/components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni'
73
+ ),
74
+ );