design-comuni-plone-theme 12.6.3 → 12.6.5
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/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +24 -0
- package/RELEASE.md +6 -0
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +8 -3
- package/src/components/ItaliaTheme/manage/Widgets/ConditionallyRequiredDateWidget.jsx +1 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [12.6.5](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.6.4...v12.6.5) (2025-11-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* removed file extension from slide up text cards ([#1033](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1033)) ([5c6da97](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5c6da970c8c80b5426ab7dd9aca29b7aaedfdfb2))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* updated publiccode and release log ([e726ec9](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e726ec9b3bf747426412faf2e75157a4f58b09c4))
|
|
14
|
+
|
|
15
|
+
## [12.6.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.6.3...v12.6.4) (2025-10-30)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* error during Incarico creation ([#1031](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1031)) ([475f099](https://github.com/RedTurtle/design-comuni-plone-theme/commit/475f099cc23ddd54ba2dbbea0df81783b98be43f))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Documentation
|
|
24
|
+
|
|
25
|
+
* updated publiccode ([333ab04](https://github.com/RedTurtle/design-comuni-plone-theme/commit/333ab0420481417f5a63d4fb07c5d08e208f0d61))
|
|
26
|
+
|
|
3
27
|
## [12.6.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.6.2...v12.6.3) (2025-10-27)
|
|
4
28
|
|
|
5
29
|
|
package/RELEASE.md
CHANGED
package/package.json
CHANGED
package/publiccode.yml
CHANGED
|
@@ -227,9 +227,9 @@ maintenance:
|
|
|
227
227
|
name: io-Comune - Il sito AgID per Comuni ed Enti Pubblici
|
|
228
228
|
platforms:
|
|
229
229
|
- web
|
|
230
|
-
releaseDate: '2025-
|
|
230
|
+
releaseDate: '2025-11-04'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 12.6.
|
|
232
|
+
softwareVersion: 12.6.5
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -71,6 +71,11 @@ const CardWithSlideUpTextTemplate = (props) => {
|
|
|
71
71
|
dependencies: ['CardWithSlideUpTextTemplate', item['@type']],
|
|
72
72
|
}).component;
|
|
73
73
|
|
|
74
|
+
const cardItem = {
|
|
75
|
+
...item,
|
|
76
|
+
enhanced_links_enabled: false,
|
|
77
|
+
};
|
|
78
|
+
|
|
74
79
|
return (
|
|
75
80
|
<div
|
|
76
81
|
className="listing-item box bg-img mb-2"
|
|
@@ -90,7 +95,7 @@ const CardWithSlideUpTextTemplate = (props) => {
|
|
|
90
95
|
</div>
|
|
91
96
|
)}
|
|
92
97
|
<UniversalLink
|
|
93
|
-
item={!isEditMode ?
|
|
98
|
+
item={!isEditMode ? cardItem : null}
|
|
94
99
|
href={isEditMode ? '#' : null}
|
|
95
100
|
key={index}
|
|
96
101
|
data-element={id_lighthouse}
|
|
@@ -116,7 +121,7 @@ const CardWithSlideUpTextTemplate = (props) => {
|
|
|
116
121
|
<CardReadMore
|
|
117
122
|
iconName="it-arrow-right"
|
|
118
123
|
tag={UniversalLink}
|
|
119
|
-
item={!isEditMode ?
|
|
124
|
+
item={!isEditMode ? cardItem : null}
|
|
120
125
|
href={isEditMode ? '#' : null}
|
|
121
126
|
text={intl.formatMessage(messages.vedi)}
|
|
122
127
|
className="justify-content-end"
|
|
@@ -125,7 +130,7 @@ const CardWithSlideUpTextTemplate = (props) => {
|
|
|
125
130
|
/>
|
|
126
131
|
</div>
|
|
127
132
|
<UniversalLink
|
|
128
|
-
item={!isEditMode ?
|
|
133
|
+
item={!isEditMode ? cardItem : null}
|
|
129
134
|
className="card-link"
|
|
130
135
|
aria-hidden="true"
|
|
131
136
|
tabIndex="-1"
|
|
@@ -18,7 +18,7 @@ const ConditionallyRequiredDateWidget = (props) => {
|
|
|
18
18
|
// the field must not be required
|
|
19
19
|
const isRequired =
|
|
20
20
|
tipoIncarico !== 'amministrativo' &&
|
|
21
|
-
tipoIncarico
|
|
21
|
+
tipoIncarico?.token !== 'amministrativo';
|
|
22
22
|
|
|
23
23
|
return (
|
|
24
24
|
<DatetimeWidget
|