design-comuni-plone-theme 12.7.3 → 12.7.4
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 +13 -0
- package/RELEASE.md +7 -0
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/Blocks/Listing/BandiInEvidenceTemplate.jsx +1 -1
- package/src/components/ItaliaTheme/Blocks/Listing/SquaresImageTemplate.jsx +5 -1
- package/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss +2 -0
- package/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss +2 -0
- package/src/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss +2 -0
- package/src/theme/ItaliaTheme/Blocks/_squaresImageTemplate.scss +3 -0
- package/src/theme/ItaliaTheme/Components/_card.scss +6 -0
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [12.7.4](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.7.3...v12.7.4) (2025-12-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* bando type in bando cards ([#1051](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1051)) ([3c17fbb](https://github.com/RedTurtle/design-comuni-plone-theme/commit/3c17fbb002afc8d753a785314f2a7be286e9c81a))
|
|
9
|
+
* hyphen and break word in card titles ([#1049](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1049)) ([4f94903](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4f94903bbbc7683774eb9e772b4f853dc7cd7276))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
* updated publiccode and release log ([9f430f2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9f430f25b977aa58f3099ee6891cca3be9a1f62a))
|
|
15
|
+
|
|
3
16
|
## [12.7.3](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v12.7.2...v12.7.3) (2025-11-26)
|
|
4
17
|
|
|
5
18
|
|
package/RELEASE.md
CHANGED
|
@@ -41,6 +41,13 @@
|
|
|
41
41
|
- ...
|
|
42
42
|
-->
|
|
43
43
|
|
|
44
|
+
## Versione 12.7.4 (15/12/2025)
|
|
45
|
+
|
|
46
|
+
### Fix
|
|
47
|
+
|
|
48
|
+
- Ora i titoli molto lunghi e senza spazi nelle card vengono spezzati automaticamente con un trattino ("-") per evitare problemi di layout.
|
|
49
|
+
- Le card del blocco elenco di tipo "Bandi" mostrano ora la tipologia bando correttamente.
|
|
50
|
+
|
|
44
51
|
## Versione 12.7.3 (26/11/2025)
|
|
45
52
|
|
|
46
53
|
### Fix
|
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-12-15'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 12.7.
|
|
232
|
+
softwareVersion: 12.7.4
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -46,7 +46,11 @@ const SquaresImageTemplate = ({
|
|
|
46
46
|
key={index}
|
|
47
47
|
data-element={id_lighthouse}
|
|
48
48
|
>
|
|
49
|
-
<span className="title fw-bold"
|
|
49
|
+
<span className="title fw-bold" title={item?.title}>
|
|
50
|
+
{item?.title.length > 56
|
|
51
|
+
? `${item?.title.slice(0, 56)}…`
|
|
52
|
+
: item?.title}
|
|
53
|
+
</span>
|
|
50
54
|
</UniversalLink>
|
|
51
55
|
);
|
|
52
56
|
})}
|