design-comuni-plone-theme 11.0.0-alpha.1 → 11.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.
- package/.github/workflows/main.yml +1 -1
- package/.github/workflows/prs.yml +1 -1
- package/.github/workflows/release.yml +1 -1
- package/.github/workflows/themes.yml +2 -1
- package/CHANGELOG.md +176 -0
- package/Makefile +1 -1
- package/README.md +22 -0
- package/RELEASE.md +64 -0
- package/locales/de/LC_MESSAGES/volto.po +10 -0
- package/locales/en/LC_MESSAGES/volto.po +10 -0
- package/locales/es/LC_MESSAGES/volto.po +10 -0
- package/locales/fr/LC_MESSAGES/volto.po +10 -0
- package/locales/it/LC_MESSAGES/volto.po +42 -32
- package/locales/volto.pot +11 -1
- package/package.json +7 -5
- package/publiccode.yml +26 -2
- package/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx +6 -2
- package/src/components/ItaliaTheme/Blocks/CountDown/View.jsx +6 -2
- package/src/components/ItaliaTheme/Blocks/HighlightedContent/Body.jsx +10 -2
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImageTemplate.jsx +12 -1
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +18 -11
- package/src/components/ItaliaTheme/Blocks/Listing/CompleteBlockLinksTemplate.jsx +26 -14
- package/src/components/ItaliaTheme/Blocks/Listing/ContentInEvidenceTemplate.jsx +21 -14
- package/src/components/ItaliaTheme/Blocks/Listing/RibbonCardTemplate.jsx +7 -1
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateDefault.jsx +7 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow.jsx +7 -0
- package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +5 -2
- package/src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx +6 -2
- package/src/components/ItaliaTheme/Blocks/__tests__/Countdown.test.jsx +1 -83
- package/src/components/ItaliaTheme/Breadcrumbs/Breadcrumbs.jsx +49 -4
- package/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx +7 -2
- package/src/components/ItaliaTheme/CustomerSatisfaction/Steps/AnswersStep.jsx +8 -8
- package/src/components/ItaliaTheme/Pagination/Pagination.jsx +2 -11
- package/src/components/ItaliaTheme/Pagination/PaginationItem.jsx +1 -6
- package/src/components/ItaliaTheme/Search/Search.jsx +1 -1
- package/src/components/ItaliaTheme/View/Commons/Gallery.jsx +4 -3
- package/src/components/ItaliaTheme/View/ServizioView/ServizioMetatag.jsx +2 -2
- package/src/config/Blocks/ListingOptions/utils.js +0 -1
- package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +1 -0
- package/src/config/RichTextEditor/config.js +30 -13
- package/src/config/italiaConfig.js +15 -1
- package/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx +0 -8
- package/src/customizations/volto/components/manage/Blocks/Search/SearchBlockView.jsx +4 -1
- package/src/customizations/volto/components/manage/Widgets/WysiwygWidget.jsx +362 -0
- package/src/customizations/volto/components/theme/NotFound/NotFound.jsx +9 -10
- package/src/helpers/customizationsI18n.js +4 -0
- package/src/helpers/index.js +2 -0
- package/src/helpers/registry.js +18 -0
- package/src/helpers/registry.test.js +45 -0
- package/src/reducers/breadcrumbs.js +89 -0
- package/src/reducers/index.js +2 -0
- package/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss +18 -7
- package/src/theme/ItaliaTheme/Blocks/_calendar.scss +5 -0
- package/src/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss +0 -6
- package/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss +3 -2
- package/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss +0 -4
- package/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss +0 -5
- package/src/theme/ItaliaTheme/Blocks/_imageBlock.scss +4 -0
- package/src/theme/ItaliaTheme/Blocks/_search.scss +11 -5
- package/src/theme/ItaliaTheme/Components/_customerSatisfaction.scss +13 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_accordion.scss +26 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_argumentsInEvidence.scss +18 -2
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_calendar.scss +12 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss +16 -8
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_contacts.scss +32 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_cta.scss +13 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_form.scss +49 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_highlitedContent.scss +97 -6
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_iconBlock.scss +34 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_searchSections.scss +83 -7
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_squaresImageTemplateAndSlideUp.scss +52 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_tableOfContents.scss +17 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Components/_subsiteFooter.scss +35 -5
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Components/_subsiteHeader.scss +37 -0
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Views/_common.scss +170 -1
- package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/_common.scss +300 -4
- package/src/theme/ItaliaTheme/Subsites/_common.scss +7 -0
- package/src/theme/ItaliaTheme/Subsites/_mixin.scss +117 -17
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_buttons.scss +24 -12
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_chips.scss +22 -13
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_header.scss +2 -6
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_headercenter.scss +8 -3
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_linklist.scss +3 -1
- package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_navigation.scss +15 -21
- package/src/theme/ItaliaTheme/Views/_common.scss +5 -0
- package/src/theme/ItaliaTheme/Widgets/_dataGridWidget.scss +1 -12
- package/src/theme/ItaliaTheme/_common.scss +2 -19
- package/src/components/ItaliaTheme/Blocks/CountDown/Background.jsx +0 -7
- package/src/customizations/volto-gdpr-privacy/components/ConditionalEmbed/ConditionalEmbed.jsx +0 -135
|
@@ -18,5 +18,6 @@ jobs:
|
|
|
18
18
|
curl --fail --request POST \
|
|
19
19
|
--form token=${{ secrets.TOKEN }} \
|
|
20
20
|
--form ref=master \
|
|
21
|
-
--form "variables[
|
|
21
|
+
--form "variables[ADDON_NAME]=design-comuni-plone-theme" \
|
|
22
|
+
--form "variables[ADDON_TAG]=${{ steps.get_version.outputs.VERSION }}" \
|
|
22
23
|
"https://gitlab.com/api/v4/projects/${{ secrets.PROJECT_ID }}/trigger/pipeline"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.0.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.6.4...v11.0.0) (2023-12-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* a11y stili per i sottositi (#428)
|
|
9
|
+
* card image height from newest bootstrap-italia version (#406)
|
|
10
|
+
* upgrade to design-react-kit 5.0.0-1 and bootstrap-italia 2.6.1 (#407)
|
|
11
|
+
* upgrade to volto 17.5.0 (#382)
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* added block extra tags placeholders ([#436](https://github.com/redturtle/design-comuni-plone-theme/issues/436)) ([8085131](https://github.com/redturtle/design-comuni-plone-theme/commit/808513130fd6acb3b423978b27b69bd393ea8194))
|
|
16
|
+
* card image height from newest bootstrap-italia version ([#406](https://github.com/redturtle/design-comuni-plone-theme/issues/406)) ([d2a0703](https://github.com/redturtle/design-comuni-plone-theme/commit/d2a070368f9e70acb11e6ba3c74d11e93278cefa))
|
|
17
|
+
* update to volto 17.7.0 ([104aeea](https://github.com/redturtle/design-comuni-plone-theme/commit/104aeeae2009a8109fed7e8509dcdae1852b9c82))
|
|
18
|
+
* 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)) ([11d783c](https://github.com/redturtle/design-comuni-plone-theme/commit/11d783cef89a95df12d7b948d1695ca5549c1357))
|
|
19
|
+
* upgrade to volto 17.5.0 ([#382](https://github.com/redturtle/design-comuni-plone-theme/issues/382)) ([4f399dc](https://github.com/redturtle/design-comuni-plone-theme/commit/4f399dcdeb841fdd91d19d55dc87d0ad5e15dd2d))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* a11y stili per i sottositi ([#428](https://github.com/redturtle/design-comuni-plone-theme/issues/428)) ([907e4dc](https://github.com/redturtle/design-comuni-plone-theme/commit/907e4dc6b8161db34ba57e02a234f069ed47efa0))
|
|
25
|
+
* background image for NumbersBlock and Countdown block ([#423](https://github.com/redturtle/design-comuni-plone-theme/issues/423)) ([f5bf04a](https://github.com/redturtle/design-comuni-plone-theme/commit/f5bf04a53802062dee0c5eb584165aaa780a7522))
|
|
26
|
+
* gallery component for ct views breaking with newer backend versions ([#422](https://github.com/redturtle/design-comuni-plone-theme/issues/422)) ([f28cfa4](https://github.com/redturtle/design-comuni-plone-theme/commit/f28cfa461a369329cfbbe7af2164110575fb5bad))
|
|
27
|
+
* image size in listing ([15f974b](https://github.com/redturtle/design-comuni-plone-theme/commit/15f974b56fe63e43c8245059160d9a7a3cd5bb7d))
|
|
28
|
+
* listing block card-slide-text-template read-more alignment ([#416](https://github.com/redturtle/design-comuni-plone-theme/issues/416)) ([49acda4](https://github.com/redturtle/design-comuni-plone-theme/commit/49acda41f212f742d4e13a9688bf37a4eedc8fba))
|
|
29
|
+
* locales ([6910a8a](https://github.com/redturtle/design-comuni-plone-theme/commit/6910a8accf10286810ade09741fe8a6895e73383))
|
|
30
|
+
* schema.org metatag default serviceUrl ([a455088](https://github.com/redturtle/design-comuni-plone-theme/commit/a4550880d7204a5ee8f316a08c99c38a7f71d219))
|
|
31
|
+
* update volto-editablefooter to 5.0.3 ([a986dd9](https://github.com/redturtle/design-comuni-plone-theme/commit/a986dd9aa8f8593a1603d2c60b59de4343fc2f19))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Maintenance
|
|
35
|
+
|
|
36
|
+
* release v11.0.0-alpha.0 ([12522b1](https://github.com/redturtle/design-comuni-plone-theme/commit/12522b1929aa053a7bc5a60c982e5cb9f60306d9))
|
|
37
|
+
* release v11.0.0-alpha.1 ([9b90860](https://github.com/redturtle/design-comuni-plone-theme/commit/9b90860b69fa7b6968eaeaeafde930bf03fa3f43))
|
|
38
|
+
* release v11.0.0-alpha.2 ([b1bb715](https://github.com/redturtle/design-comuni-plone-theme/commit/b1bb715e074178656bffc9583989ee42cd2fabd5))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Documentation
|
|
42
|
+
|
|
43
|
+
* updated publiccode ([400c34b](https://github.com/redturtle/design-comuni-plone-theme/commit/400c34bd1860d252c12a12f21e1af18d8cb7049d))
|
|
44
|
+
|
|
45
|
+
## [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)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* 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))
|
|
51
|
+
* 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))
|
|
52
|
+
* image size in listing ([397ba93](https://github.com/RedTurtle/design-comuni-plone-theme/commit/397ba932c0742690535c9dd6868cd0bda740f11b))
|
|
53
|
+
* update volto-editablefooter to 5.0.3 ([8fcada1](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8fcada1c5e36e67fd79f3fa99ec9077d0565a661))
|
|
54
|
+
|
|
3
55
|
## [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)
|
|
4
56
|
|
|
5
57
|
|
|
@@ -29,12 +81,136 @@
|
|
|
29
81
|
* 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))
|
|
30
82
|
* 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))
|
|
31
83
|
|
|
84
|
+
## [10.6.4](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.6.3...v10.6.4) (2023-12-18)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
### Bug Fixes
|
|
88
|
+
|
|
89
|
+
* external-link icon colors ([27ba53d](https://github.com/redturtle/design-comuni-plone-theme/commit/27ba53db1fb14b318f0d792545481903cd1dea4c))
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Documentation
|
|
93
|
+
|
|
94
|
+
* aggiornata lista dei comuni nel README.md ([#162](https://github.com/redturtle/design-comuni-plone-theme/issues/162)) ([23f9c50](https://github.com/redturtle/design-comuni-plone-theme/commit/23f9c501634795f0263e0c7bb66eb26768853e65))
|
|
95
|
+
* aggiunti i comuni di nci a publiccode.yml ([#163](https://github.com/redturtle/design-comuni-plone-theme/issues/163)) ([3748bcd](https://github.com/redturtle/design-comuni-plone-theme/commit/3748bcddd93d86137f74bd4311ebe50600a04549))
|
|
96
|
+
* aggiunto campegine a publiccode.yml ([#160](https://github.com/redturtle/design-comuni-plone-theme/issues/160)) ([f36c5c1](https://github.com/redturtle/design-comuni-plone-theme/commit/f36c5c103df04b8c5cca05885f1cf90a322129c7))
|
|
97
|
+
* aggiunto canossa a publiccode.yml ([#161](https://github.com/redturtle/design-comuni-plone-theme/issues/161)) ([5172337](https://github.com/redturtle/design-comuni-plone-theme/commit/5172337fce80452311249c81b16397bd826aa7c0))
|
|
98
|
+
* updated publiccode ([c962dc6](https://github.com/redturtle/design-comuni-plone-theme/commit/c962dc699f850ff9f5206afb01abe38d2577a3cf))
|
|
99
|
+
|
|
100
|
+
## [10.6.3](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.6.2...v10.6.3) (2023-12-15)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* different styles and ui for all Search block listing templates when compared to default Listing template ([#437](https://github.com/redturtle/design-comuni-plone-theme/issues/437)) ([d6cf41d](https://github.com/redturtle/design-comuni-plone-theme/commit/d6cf41dd63e6d1b891ff045238d5d7d9d9df5ff0))
|
|
106
|
+
* gdpr privacy conditional embed to work in diff view ([#438](https://github.com/redturtle/design-comuni-plone-theme/issues/438)) ([6a8c361](https://github.com/redturtle/design-comuni-plone-theme/commit/6a8c361feda654f0301b5026533234438469ff37))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Documentation
|
|
110
|
+
|
|
111
|
+
* aggiornamento della lista dei comuni in publiccode.yml ([#159](https://github.com/redturtle/design-comuni-plone-theme/issues/159)) ([7e87e9f](https://github.com/redturtle/design-comuni-plone-theme/commit/7e87e9f2071adeced38eae57eb8d09cee6433fa1))
|
|
112
|
+
* updated publiccode and release log ([f27a61a](https://github.com/redturtle/design-comuni-plone-theme/commit/f27a61aef3f41ac34bcbdf9e58e2a6ae0166d0f9))
|
|
113
|
+
|
|
114
|
+
## [10.6.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.6.1...v10.6.2) (2023-12-14)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### Bug Fixes
|
|
118
|
+
|
|
119
|
+
* custom inline styles rendering in wysiwygwidget ([17e1d10](https://github.com/redturtle/design-comuni-plone-theme/commit/17e1d10a2de1c8ba4d12a7364bc8858761b4b92e))
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Documentation
|
|
123
|
+
|
|
124
|
+
* aggiornamento lista dei comuni in publiccode.yml ([#158](https://github.com/redturtle/design-comuni-plone-theme/issues/158)) ([2abad9a](https://github.com/redturtle/design-comuni-plone-theme/commit/2abad9aecaa288ca87670183df13212bdb47fa66))
|
|
125
|
+
* updated publiccode and release log ([38d8d00](https://github.com/redturtle/design-comuni-plone-theme/commit/38d8d00daf1b3c822d11a701ecc3a83657c865cb))
|
|
126
|
+
|
|
127
|
+
## [10.6.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.6.0...v10.6.1) (2023-12-13)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Bug Fixes
|
|
131
|
+
|
|
132
|
+
* patch data grid widget for allow_reorder ([41dd7ea](https://github.com/RedTurtle/design-comuni-plone-theme/commit/41dd7ea62d0af8557a61f558996fe076c9638d40))
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Documentation
|
|
136
|
+
|
|
137
|
+
* updated publiccode and release log ([055a8c8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/055a8c84e1d55974d59ca17ac7da6a3dbb6e101b))
|
|
138
|
+
|
|
139
|
+
## [10.6.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.5.0...v10.6.0) (2023-12-12)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
### Features
|
|
143
|
+
|
|
144
|
+
* 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))
|
|
145
|
+
* 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))
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* removed automatic pager-link and updated available manual data-elements ([2553322](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2553322f8e8e61d877546bc7303d3a1c460a70f6))
|
|
151
|
+
* schema.org metadata per i servizi ([ee21c7d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ee21c7d4b0a4b4362f42239bb2ff7b4b7f6ac3b9))
|
|
152
|
+
* traduzioni mancanti ([#432](https://github.com/RedTurtle/design-comuni-plone-theme/issues/432)) ([14ee678](https://github.com/RedTurtle/design-comuni-plone-theme/commit/14ee678fc710f15b0db8018ac508c5c5b13964ef))
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Documentation
|
|
156
|
+
|
|
157
|
+
* 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))
|
|
158
|
+
* updated publiccode and release log ([7e3dc2f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/7e3dc2f915ae1b8d13753a3ff24b87a20cd9a7d2))
|
|
159
|
+
|
|
160
|
+
## [10.5.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.3...v10.5.0) (2023-12-06)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
### Features
|
|
164
|
+
|
|
165
|
+
* 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))
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
* 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))
|
|
171
|
+
* 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))
|
|
172
|
+
* 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))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Documentation
|
|
176
|
+
|
|
177
|
+
* updated publiccode and release log ([05312b4](https://github.com/RedTurtle/design-comuni-plone-theme/commit/05312b4f8705bc4805beee9b6b2ba98e9f399e62))
|
|
178
|
+
|
|
179
|
+
## [10.4.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.2...v10.4.3) (2023-11-28)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Bug Fixes
|
|
183
|
+
|
|
184
|
+
* 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))
|
|
185
|
+
* 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))
|
|
186
|
+
* 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))
|
|
187
|
+
* 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))
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Documentation
|
|
191
|
+
|
|
192
|
+
* updated publiccode and release log ([33b267f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/33b267f2f20d68b521a1452d300f7288f1d01fb1))
|
|
193
|
+
|
|
194
|
+
## [10.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.1...v10.4.2) (2023-11-23)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
### Bug Fixes
|
|
198
|
+
|
|
199
|
+
* 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))
|
|
200
|
+
* 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))
|
|
201
|
+
* 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))
|
|
202
|
+
|
|
32
203
|
|
|
33
204
|
### Maintenance
|
|
34
205
|
|
|
35
206
|
* fix babel-eslint ([a7aa9a6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7aa9a6dff9f420bceef34809c2f7e23da883bcd))
|
|
36
207
|
* upgrade linters ([9d8f13a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d8f13a34d82fb6cc9ce68f0881a46ffd8803eca))
|
|
37
208
|
|
|
209
|
+
|
|
210
|
+
### Documentation
|
|
211
|
+
|
|
212
|
+
* updated publiccode and release log ([603c65d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/603c65d1de43952d7a1936127ea043d8a631a8b3))
|
|
213
|
+
|
|
38
214
|
## [10.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.0...v10.4.1) (2023-11-21)
|
|
39
215
|
|
|
40
216
|
|
package/Makefile
CHANGED
|
@@ -27,7 +27,7 @@ CURRENT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
27
27
|
# ADDON ?= "design-comuni-plone-theme"
|
|
28
28
|
|
|
29
29
|
PLONE_VERSION=6
|
|
30
|
-
VOLTO_VERSION=17.
|
|
30
|
+
VOLTO_VERSION=17.7.0
|
|
31
31
|
|
|
32
32
|
ADDON_NAME='design-comuni-plone-theme'
|
|
33
33
|
ADDON_PATH='design-comuni-plone-theme'
|
package/README.md
CHANGED
|
@@ -68,26 +68,47 @@ Si veda ad esempio:
|
|
|
68
68
|
- [Biblioteche Pianura Est](https://bibest.it)
|
|
69
69
|
- [Camera di Commercio dell'Umbria](https://www.umbria.camcom.it/)
|
|
70
70
|
- [Camera di Commercio di Reggio Emilia](https://www.re.camcom.gov.it/)
|
|
71
|
+
- [Comune della Spezia](https://www.comune.laspezia.it/)
|
|
71
72
|
- [Comune di Bibbiano](https://www.comune.bibbiano.re.it/)
|
|
73
|
+
- [Comune di Borgo Tossignano](https://www.comune.borgotossignano.bo.it/)
|
|
72
74
|
- [Comune di Campegine](https://www.comune.campegine.re.it/)
|
|
73
75
|
- [Comune di Camposanto](https://www.comune.camposanto.mo.it/)
|
|
74
76
|
- [Comune di Canossa](https://www.comune.canossa.re.it/)
|
|
75
77
|
- [Comune di Cantagallo](https://www.comune.cantagallo.po.it/)
|
|
78
|
+
- [Comune di Casalfiumanese](https://www.comune.casalfiumanese.bo.it/)
|
|
79
|
+
- [Comune di Castel del Rio](https://www.comune.casteldelrio.bo.it/)
|
|
80
|
+
- [Comune di Cavezzo](https://www.comune.cavezzo.mo.it/)
|
|
76
81
|
- [Comune di Cavriago](https://www.comune.cavriago.re.it/)
|
|
82
|
+
- [Comune di Concordia sul Secchia](https://www.comune.concordia.mo.it/)
|
|
83
|
+
- [Comune di Dozza](https://www.comune.dozza.bo.it/)
|
|
84
|
+
- [Comune di Finale Emilia](https://www.comune.finale.mo.it/)
|
|
85
|
+
- [Comune di Fiorano Modenese](https://www.comune.fiorano-modenese.mo.it/)
|
|
86
|
+
- [Comune di Fontanelice](https://www.comune.fontanelice.bo.it/)
|
|
87
|
+
- [Comune di Formigine](https://www.comune.formigine.mo.it/)
|
|
88
|
+
- [Comune di Frassinoro](https://www.comune.frassinoro.mo.it/)
|
|
77
89
|
- [Comune di Gattatico](https://www.comune.gattatico.re.it/)
|
|
78
90
|
- [Comune di Imola](https://www.comune.imola.bo.it)
|
|
91
|
+
- [Comune di Maranello](https://www.comune.maranello.mo.it/)
|
|
79
92
|
- [Comune di Medolla](https://www.comune.medolla.mo.it/)
|
|
80
93
|
- [Comune di Mirandola](https://www.comune.mirandola.mo.it/)
|
|
81
94
|
- [Comune di Modena](https://www.comune.modena.it/)
|
|
82
95
|
- [Comune di Montecchio Emilia](https://www.comune.montecchio-emilia.re.it/)
|
|
96
|
+
- [Comune di Montefiorino](https://www.comune.montefiorino.mo.it/)
|
|
97
|
+
- [Comune di Mordano](https://www.comune.mordano.bo.it/)
|
|
83
98
|
- [Comune di Novellara](https://www.comune.novellara.re.it/)
|
|
99
|
+
- [Comune di Palagano](https://www.comune.palagano.mo.it/)
|
|
84
100
|
- [Comune di Parma](https://www.comune.parma.it/)
|
|
85
101
|
- [Comune di Piacenza](https://www.comune.piacenza.it/)
|
|
102
|
+
- [Comune di Prignano sulla Secchia](https://www.comune.prignano.mo.it/)
|
|
86
103
|
- [Comune di Reggio Emilia](https://www.comune.re.it/)
|
|
104
|
+
- [Comune di San Felice sul Panaro](https://www.comune.sanfelice.mo.it/)
|
|
87
105
|
- [Comune di San Lazzaro di Savena](https://www.comune.sanlazzaro.bo.it)
|
|
88
106
|
- [Comune di San Polo d'Enza](https://www.comune.sanpolodenza.re.it/)
|
|
89
107
|
- [Comune di San Possidonio](https://www.comune.sanpossidonio.mo.it/)
|
|
108
|
+
- [Comune di San Prospero](https://www.comune.sanprospero.mo.it/)
|
|
90
109
|
- [Comune di Santilario d'Enza](https://www.comune.santilariodenza.re.it/)
|
|
110
|
+
- [Comune di Sassuolo](https://www.comune.sassuolo.mo.it/)
|
|
111
|
+
- [Comune di Toscolano Maderno](https://www.comune.toscolanomaderno.bs.it/)
|
|
91
112
|
- [Comune di Vaiano](https://www.comune.vaiano.po.it/)
|
|
92
113
|
- [Comune di Vernio](https://www.comune.vernio.po.it/)
|
|
93
114
|
- [Comando Generale della Guardia di Finanza](https://www.gdf.gov.it/it)
|
|
@@ -95,6 +116,7 @@ Si veda ad esempio:
|
|
|
95
116
|
- [Nuovo Circondario Imolese](https://www.nuovocircondarioimolese.it)
|
|
96
117
|
- [Ospedali Galliera - Bilancio Sociale](https://bilanciosociale.galliera.it)
|
|
97
118
|
- [Provincia di Pisa](https://www.provincia.pisa.it/)
|
|
119
|
+
- [Unione Comuni Distretto Ceramico](https://www.distrettoceramico.mo.it/)
|
|
98
120
|
- [UCMAN (Unione dei Comuni Modenesi Area Nord)](https://www.unioneareanord.mo.it/)
|
|
99
121
|
- [Unione Val d'Enza](https://www.unionevaldenza.it/)
|
|
100
122
|
- [Unione Val di Bisenzio](https://www.bisenzio.it/)
|
package/RELEASE.md
CHANGED
|
@@ -47,6 +47,69 @@
|
|
|
47
47
|
|
|
48
48
|
- Modificata l'altezza delle immagini delle card, per essere in linea con i template agid.
|
|
49
49
|
|
|
50
|
+
### Fix
|
|
51
|
+
|
|
52
|
+
- Sistemati gli stili per i sottositi per l'accessibilità.
|
|
53
|
+
|
|
54
|
+
## Versione 10.6.4 (18/12/2023)
|
|
55
|
+
|
|
56
|
+
### Fix
|
|
57
|
+
|
|
58
|
+
- Colori delle icone che specificano che un link è esterno che in alcuni casi erano errati.
|
|
59
|
+
|
|
60
|
+
## Versione 10.6.3 (15/12/2023)
|
|
61
|
+
|
|
62
|
+
### Fix
|
|
63
|
+
|
|
64
|
+
- Sistemati alcuni problemi di visualizzazione nei template disponibili per il blocco Cerca. Ora tutti i template disponibili per questo blocco rispecchiano graficamente quelli per il blocco Elenco sia in visualizzazione che in modifica.
|
|
65
|
+
|
|
66
|
+
## Versione 10.6.2 (14/12/2023)
|
|
67
|
+
|
|
68
|
+
### Fix
|
|
69
|
+
|
|
70
|
+
- Ora si vedono correttamente gli stili di allineamento del testo in alcuni editor di testo, ad esempio header e footer dei sottositi.
|
|
71
|
+
|
|
72
|
+
## Versione 10.6.1 (13/12/2023)
|
|
73
|
+
|
|
74
|
+
### Novità
|
|
75
|
+
|
|
76
|
+
- I seguenti campi sono ora riordinabili liberamente: "Timeline tempi e scadenze" per il tipo di contenuto _Servizio_ e "Valore punto di contatto" del tipo di contenuto _Punto di contatto_.
|
|
77
|
+
|
|
78
|
+
### Fix
|
|
79
|
+
|
|
80
|
+
- Rimosso pager-link automatico dal paginatore perché non riconosciuto dal validatore. È ora possibile inserire a mano il data-element pager-link nei blocchi di testo.
|
|
81
|
+
|
|
82
|
+
## Versione 10.5.0 (06/12/2023)
|
|
83
|
+
|
|
84
|
+
### Novità
|
|
85
|
+
|
|
86
|
+
- Nel blocco elenco, nel criterio di configurazione 'Posizione', è ora presente uno strumento per facilitare la ricerca dei contenuti nel sito, senza dover scrivere il percorso a mano.
|
|
87
|
+
|
|
88
|
+
### Fix
|
|
89
|
+
|
|
90
|
+
- Le immagini nelle card dei contenuti correlati sono centrate verticalmente.
|
|
91
|
+
- Il feedback form ora richiede necessariamente una risposta oltre al voto in stelle.
|
|
92
|
+
- Dimensione del titolo del blocco calendario uniformata ai titoli degli altri blocchi elenco.
|
|
93
|
+
|
|
94
|
+
## Versione 10.4.3 (28/11/2023)
|
|
95
|
+
|
|
96
|
+
### Migliorie
|
|
97
|
+
|
|
98
|
+
- Ora nella pagina 404 "Questa pagina non esiste" viene suggerito il proseguimento della navigazione verso la homepage invece che verso la ricerca.
|
|
99
|
+
|
|
100
|
+
### Fix
|
|
101
|
+
|
|
102
|
+
- Migliorata l'accessibilità del modulo di valutazione del sito che si trova in fondo ad ogni pagina.
|
|
103
|
+
- Il blocco Elenco con variazione Bandi viene visualizzato correttamente anche su tablet.
|
|
104
|
+
|
|
105
|
+
## Versione 10.4.2 (23/11/2023)
|
|
106
|
+
|
|
107
|
+
### Fix
|
|
108
|
+
|
|
109
|
+
- Sistemato il layout della card nella variazione Bandi del Blocco Elenco per la modalità tablet
|
|
110
|
+
- Sistemata accessibilità del read-more nel blocco elenco con variazione "Card con testo animato" quando si è in un sottosito con uno stile applicato.
|
|
111
|
+
- Sistemato errore quando viene impostato "service-link" come ID lighthouse.
|
|
112
|
+
|
|
50
113
|
## Versione 10.4.1 (21/11/2023)
|
|
51
114
|
|
|
52
115
|
### Migliorie
|
|
@@ -62,6 +125,7 @@
|
|
|
62
125
|
### Novità
|
|
63
126
|
|
|
64
127
|
- Aggiunta la possibilità di selezionare la dimensione dell'immagine nel blocco Alert, inoltre è stato aggiornato anche il widget per la selezione del colore di sfondo.
|
|
128
|
+
- Aggiunte le breadcrumbs nella pagina dei risultati della ricerca
|
|
65
129
|
|
|
66
130
|
### Fix
|
|
67
131
|
|
|
@@ -2169,6 +2169,11 @@ msgstr ""
|
|
|
2169
2169
|
msgid "hide_dates"
|
|
2170
2170
|
msgstr ""
|
|
2171
2171
|
|
|
2172
|
+
#: helpers/customizationsI18n
|
|
2173
|
+
# defaultMessage: Home page
|
|
2174
|
+
msgid "homepage"
|
|
2175
|
+
msgstr ""
|
|
2176
|
+
|
|
2172
2177
|
#: components/ItaliaTheme/Blocks/HTML/Sidebar
|
|
2173
2178
|
# defaultMessage: Mostra lo sfondo a tutta larghezza
|
|
2174
2179
|
msgid "htmlFullWidth"
|
|
@@ -3134,6 +3139,11 @@ msgstr ""
|
|
|
3134
3139
|
msgid "search_adv_filters"
|
|
3135
3140
|
msgstr ""
|
|
3136
3141
|
|
|
3142
|
+
#: config/italiaConfig
|
|
3143
|
+
# defaultMessage: Ricerca
|
|
3144
|
+
msgid "search_brdc"
|
|
3145
|
+
msgstr ""
|
|
3146
|
+
|
|
3137
3147
|
#: components/ItaliaTheme/Search/Search
|
|
3138
3148
|
# defaultMessage: Tipologia
|
|
3139
3149
|
msgid "search_content_types"
|
|
@@ -2154,6 +2154,11 @@ msgstr ""
|
|
|
2154
2154
|
msgid "hide_dates"
|
|
2155
2155
|
msgstr ""
|
|
2156
2156
|
|
|
2157
|
+
#: helpers/customizationsI18n
|
|
2158
|
+
# defaultMessage: Home page
|
|
2159
|
+
msgid "homepage"
|
|
2160
|
+
msgstr "Home page"
|
|
2161
|
+
|
|
2157
2162
|
#: components/ItaliaTheme/Blocks/HTML/Sidebar
|
|
2158
2163
|
# defaultMessage: Mostra lo sfondo a tutta larghezza
|
|
2159
2164
|
msgid "htmlFullWidth"
|
|
@@ -3119,6 +3124,11 @@ msgstr "Search site"
|
|
|
3119
3124
|
msgid "search_adv_filters"
|
|
3120
3125
|
msgstr "Advanced filters"
|
|
3121
3126
|
|
|
3127
|
+
#: config/italiaConfig
|
|
3128
|
+
# defaultMessage: Ricerca
|
|
3129
|
+
msgid "search_brdc"
|
|
3130
|
+
msgstr "Search"
|
|
3131
|
+
|
|
3122
3132
|
#: components/ItaliaTheme/Search/Search
|
|
3123
3133
|
# defaultMessage: Tipologia
|
|
3124
3134
|
msgid "search_content_types"
|
|
@@ -2163,6 +2163,11 @@ msgstr "Para esta plantilla el número de resultados por página debe ser 7. Com
|
|
|
2163
2163
|
msgid "hide_dates"
|
|
2164
2164
|
msgstr "Ocultar fechas"
|
|
2165
2165
|
|
|
2166
|
+
#: helpers/customizationsI18n
|
|
2167
|
+
# defaultMessage: Home page
|
|
2168
|
+
msgid "homepage"
|
|
2169
|
+
msgstr ""
|
|
2170
|
+
|
|
2166
2171
|
#: components/ItaliaTheme/Blocks/HTML/Sidebar
|
|
2167
2172
|
# defaultMessage: Mostra lo sfondo a tutta larghezza
|
|
2168
2173
|
msgid "htmlFullWidth"
|
|
@@ -3128,6 +3133,11 @@ msgstr "Busca en el sitio"
|
|
|
3128
3133
|
msgid "search_adv_filters"
|
|
3129
3134
|
msgstr "Filtros avanzados"
|
|
3130
3135
|
|
|
3136
|
+
#: config/italiaConfig
|
|
3137
|
+
# defaultMessage: Ricerca
|
|
3138
|
+
msgid "search_brdc"
|
|
3139
|
+
msgstr ""
|
|
3140
|
+
|
|
3131
3141
|
#: components/ItaliaTheme/Search/Search
|
|
3132
3142
|
# defaultMessage: Tipologia
|
|
3133
3143
|
msgid "search_content_types"
|
|
@@ -2171,6 +2171,11 @@ msgstr ""
|
|
|
2171
2171
|
msgid "hide_dates"
|
|
2172
2172
|
msgstr ""
|
|
2173
2173
|
|
|
2174
|
+
#: helpers/customizationsI18n
|
|
2175
|
+
# defaultMessage: Home page
|
|
2176
|
+
msgid "homepage"
|
|
2177
|
+
msgstr ""
|
|
2178
|
+
|
|
2174
2179
|
#: components/ItaliaTheme/Blocks/HTML/Sidebar
|
|
2175
2180
|
# defaultMessage: Mostra lo sfondo a tutta larghezza
|
|
2176
2181
|
msgid "htmlFullWidth"
|
|
@@ -3136,6 +3141,11 @@ msgstr "Rechercher sur le site"
|
|
|
3136
3141
|
msgid "search_adv_filters"
|
|
3137
3142
|
msgstr "Filtres avancés"
|
|
3138
3143
|
|
|
3144
|
+
#: config/italiaConfig
|
|
3145
|
+
# defaultMessage: Ricerca
|
|
3146
|
+
msgid "search_brdc"
|
|
3147
|
+
msgstr ""
|
|
3148
|
+
|
|
3139
3149
|
#: components/ItaliaTheme/Search/Search
|
|
3140
3150
|
# defaultMessage: Tipologia
|
|
3141
3151
|
msgid "search_content_types"
|