design-comuni-plone-theme 11.6.1 → 11.6.2

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.6.2](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.6.1...v11.6.2) (2024-03-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * added class to apply color style to all icons ([#542](https://github.com/redturtle/design-comuni-plone-theme/issues/542)) ([3431318](https://github.com/redturtle/design-comuni-plone-theme/commit/3431318e48df0ba389f37598f5be16c8179b4337))
9
+ * layout feedback form per validatore pa ([#575](https://github.com/redturtle/design-comuni-plone-theme/issues/575)) ([c31a61e](https://github.com/redturtle/design-comuni-plone-theme/commit/c31a61e8e6f4b666dc75a4ff1a076e560ec49a77))
10
+
11
+
12
+ ### Documentation
13
+
14
+ * updated publiccode ([d4a177b](https://github.com/redturtle/design-comuni-plone-theme/commit/d4a177b293293e2764e4742d330381ad162cbf69))
15
+
3
16
  ## [11.6.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.6.0...v11.6.1) (2024-03-06)
4
17
 
5
18
 
package/RELEASE.md CHANGED
@@ -49,6 +49,9 @@
49
49
 
50
50
  ## Versione 11.6.0 (05/03/2024)
51
51
 
52
+ ### Fix
53
+
54
+ - Le icone social nel menu laterale mobile sono tutte dello stesso colore.
52
55
  ### Migliorie
53
56
 
54
57
  - Nel blocco form è stata aggiunta una legenda per i campi obbligatori.
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.6.1",
5
+ "version": "11.6.2",
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: '2024-03-06'
230
+ releaseDate: '2024-03-08'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.6.1
232
+ softwareVersion: 11.6.2
233
233
  url: 'https://github.com/italia/design-comuni-plone-theme'
234
234
  usedBy:
235
235
  - ASP Comuni Modenesi Area Nord
@@ -3,15 +3,21 @@ import cx from 'classnames';
3
3
 
4
4
  export const FormHeader = ({ title, step, totalSteps, className, hidden }) => {
5
5
  return (
6
- <legend
7
- data-element="feedback-rating-question"
8
- aria-hidden={hidden}
9
- className={cx(className, 'w-100', {
10
- 'd-none': hidden,
11
- })}
12
- >
13
- <div className={'m-0 fs-6'}>{title}</div>
14
- <div>{`${step}/${totalSteps}`}</div>
15
- </legend>
6
+ <div className={className}>
7
+ <legend
8
+ data-element="feedback-rating-question"
9
+ aria-hidden={hidden}
10
+ className={cx('w-100 p-0', {
11
+ 'd-none': hidden,
12
+ })}
13
+ >
14
+ <div className={'m-0 fs-6'}>{title}</div>
15
+ </legend>
16
+ <div
17
+ className={cx('fs-6', {
18
+ 'd-none': hidden,
19
+ })}
20
+ >{`${step}/${totalSteps}`}</div>
21
+ </div>
16
22
  );
17
23
  };
@@ -105,7 +105,8 @@
105
105
 
106
106
  margin-left: 0;
107
107
 
108
- .icon {
108
+ svg.icon {
109
+ fill: currentColor;
109
110
  width: 28px;
110
111
  height: 28px;
111
112
  }