design-comuni-plone-theme 8.7.2 → 8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
 
2
2
 
3
+ ## [8.7.4](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.3...v8.7.4) (2023-10-05)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * preparing release 8.7.4 ([7627cfd](https://github.com/redturtle/design-comuni-plone-theme/commit/7627cfd5edfa2469b8ddc6d8ccc675486be082dc))
9
+
10
+ ## [8.7.3](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.2...v8.7.3) (2023-09-26)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * fix rsss CardWithImageTemplate view date ([d509471](https://github.com/redturtle/design-comuni-plone-theme/commit/d509471994cfc4be62b1f15c60b06388ff8e0a9c))
16
+
17
+
18
+ ### Maintenance
19
+
20
+ * preparing release 8.7.3 ([db663e6](https://github.com/redturtle/design-comuni-plone-theme/commit/db663e622df1e5756d7574a1288fd97ca30a3d8a))
21
+
22
+ ## [8.7.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.2...v8.7.3) (2023-09-21)
23
+
24
+
25
+ ### Maintenance
26
+
27
+ * release v8.7.1 ([b201b34](https://github.com/redturtle/design-comuni-plone-theme/commit/b201b34043e3bc14dbca40492b909801b2bbaaad))
28
+
3
29
  ## [8.7.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v8.7.0...v8.7.2) (2023-09-21)
4
30
 
5
31
 
@@ -10,6 +36,7 @@
10
36
  * manage release ([a79ecdf](https://github.com/redturtle/design-comuni-plone-theme/commit/a79ecdf629e1e2900662ed1d9c36ec1053085eaa))
11
37
  * updated publicode ([cd8fc79](https://github.com/redturtle/design-comuni-plone-theme/commit/cd8fc791891105e69f7cbc7b8b14e19f0da71601))
12
38
 
39
+
13
40
  ## [8.7.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v8.6.0...v8.7.0) (2023-09-20)
14
41
 
15
42
 
package/RELEASE.md CHANGED
@@ -30,6 +30,13 @@
30
30
  - ...
31
31
  -->
32
32
 
33
+ ## Versione 8.7.3 (26/09/2023)
34
+
35
+ ### Fix
36
+
37
+ - Sistemato margine del blocco Alert quando allineato a sinistra
38
+ - Sistemato il template degli Rss Card con immagine per mostrare la data corretta
39
+
33
40
  ## Versione 8.7.0 (20/09/2023)
34
41
 
35
42
  ### Migliorie
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "design-comuni-plone-theme",
3
3
  "description": "Volto Theme for Italia design guidelines",
4
4
  "license": "GPL-v3",
5
- "version": "8.7.2",
5
+ "version": "8.7.4",
6
6
  "main": "src/index.js",
7
7
  "keywords": [
8
8
  "volto-addon",
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: '2023-09-21'
230
+ releaseDate: '2023-10-05'
231
231
  softwareType: standalone/web
232
- softwareVersion: 8.7.2
232
+ softwareVersion: 8.7.4
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -29,7 +29,7 @@ const View = ({ data, pathname }) => {
29
29
 
30
30
  return (
31
31
  <section role="alert" className="block alertblock">
32
- <Row className={cx('row-full-width', 'bg-alert-' + data.color)}>
32
+ <div className={cx('full-width', 'bg-alert-' + data.color)}>
33
33
  <Container className="p-4 pt-5 pb-5">
34
34
  <Row className="align-items-start">
35
35
  {data.image?.data && (
@@ -46,7 +46,7 @@ const View = ({ data, pathname }) => {
46
46
  <Col>{content}</Col>
47
47
  </Row>
48
48
  </Container>
49
- </Row>
49
+ </div>
50
50
  </section>
51
51
  );
52
52
  };
@@ -78,7 +78,9 @@ const CardWithImageRssTemplate = ({
78
78
  <span className="mx-1">&mdash;</span>
79
79
  </>
80
80
  )}
81
- <span>{getViewDate(item.pubDate, intl.locale)}</span>{' '}
81
+ <span>
82
+ {getViewDate(item.pubDate || item.date, intl.locale)}
83
+ </span>{' '}
82
84
  </div>
83
85
  <CardTitle tag="h6">{item.title}</CardTitle>
84
86
  </CardBody>