design-comuni-plone-theme 11.12.8 → 11.12.9

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.
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
 
2
2
 
3
+ ## [11.12.9](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.12.8...v11.12.9) (2024-06-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * login and password reset page font ([666baf7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/666baf7281f9fac6e8e7beec9f2442deb85ea166))
9
+ * view link in attachment card template ([#690](https://github.com/RedTurtle/design-comuni-plone-theme/issues/690)) ([8e03a21](https://github.com/RedTurtle/design-comuni-plone-theme/commit/8e03a21990cc2a8006ccd78b836fefdb80a69ede))
10
+
11
+
12
+ ### Documentation
13
+
14
+ * updated publiccode and release log ([17bcbc7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/17bcbc7f8106eef52d3d398fcec4b5f48b4501bb))
15
+
3
16
  ## [11.12.8](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.12.7...v11.12.8) (2024-06-04)
4
17
 
5
18
 
package/RELEASE.md CHANGED
@@ -41,6 +41,12 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 11.12.9 (06/06/2024)
45
+
46
+ ### Fix
47
+
48
+ - La pagina di login e di reset della password usano il font corretto.
49
+
44
50
  ## Versione 11.12.6 (30/05/2024)
45
51
 
46
52
  ### Fix
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": "11.12.8",
5
+ "version": "11.12.9",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
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: '2024-06-04'
230
+ releaseDate: '2024-06-06'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.12.8
232
+ softwareVersion: 11.12.9
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -51,16 +51,17 @@ const AttachmentCardTemplate = ({
51
51
  <div className="card-wrapper card-teaser-wrapper card-teaser-wrapper-equal card-teaser-block-3 mb-3">
52
52
  {items.map((item, index) => {
53
53
  let itemUrl = { ...item };
54
- if (item['@type'] === 'File') {
55
- itemUrl = {
56
- ...item,
57
- file: item,
58
- '@id':
59
- show_pdf_preview && item?.mime_type === 'application/pdf'
60
- ? item?.['@id'] + '/@@display-file/file'
61
- : item?.['@id'] + '/@@download/file',
62
- };
63
- }
54
+ //la parte qui sotto commentata non serve perchè gestisce gia tutto UniversalLink e in view si vedrebbe /@@download/file duplicato nell url
55
+ // if (item['@type'] === 'File') {
56
+ // itemUrl = {
57
+ // ...item,
58
+ // file: item,
59
+ // '@id':
60
+ // show_pdf_preview && item?.mime_type === 'application/pdf'
61
+ // ? item?.['@id'] + '/@@display-file/file'
62
+ // : item?.['@id'] + '/@@download/file',
63
+ // };
64
+ // }
64
65
 
65
66
  return (
66
67
  <Card
@@ -646,6 +646,12 @@ body.cms-ui {
646
646
  }
647
647
 
648
648
  #page-login {
649
+ .ui.text.container,
650
+ .ui.form input[type='text'],
651
+ .ui.form input[type='password'] {
652
+ font-family: $font-family-sans-serif;
653
+ }
654
+
649
655
  .help {
650
656
  a {
651
657
  color: $link-color;
@@ -703,6 +709,14 @@ body.cms-ui {
703
709
  }
704
710
  }
705
711
 
712
+ #page-password-reset {
713
+ &,
714
+ h1,
715
+ .ui.message .header {
716
+ font-family: $font-family-sans-serif;
717
+ }
718
+ }
719
+
706
720
  .objectbrowser-field {
707
721
  .selected-values {
708
722
  .ui.label {