design-comuni-plone-theme 11.33.0 → 11.33.1
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/cache/{volto-venue-npm-4.1.1-d5be247928-f796d519ad.zip → volto-venue-npm-4.1.2-8649a98f94-f40fc14e70.zip} +0 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +17 -0
- package/package.json +2 -2
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +1 -0
- package/src/customizations/volto/components/theme/Header/Header.jsx +14 -11
|
Binary file
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.33.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.33.0...v11.33.1) (2025-09-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **a11y:** landmarks for header and aria-hidden elements must not be focusable ([#993](https://github.com/RedTurtle/design-comuni-plone-theme/issues/993)) ([fea2421](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fea24219b8bfbc20cbe53221aee441e4abe7f362))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Maintenance
|
|
12
|
+
|
|
13
|
+
* updated volto-venue v4.1.2 ([#992](https://github.com/RedTurtle/design-comuni-plone-theme/issues/992)) ([a5fc289](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a5fc289d2b64cd59ff89e48e07467596d60f2ea2))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Documentation
|
|
17
|
+
|
|
18
|
+
* updated publiccode ([04c5cb8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/04c5cb851922e54876039648c3466072f7ba7aea))
|
|
19
|
+
|
|
3
20
|
## [11.33.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.32.1...v11.33.0) (2025-08-22)
|
|
4
21
|
|
|
5
22
|
|
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.33.
|
|
5
|
+
"version": "11.33.1",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"volto-subblocks": "2.1.0",
|
|
166
166
|
"volto-subfooter": "3.1.1",
|
|
167
167
|
"volto-subsites": "4.0.2",
|
|
168
|
-
"volto-venue": "4.1.
|
|
168
|
+
"volto-venue": "4.1.2",
|
|
169
169
|
"webpack-image-resize-loader": "^5.0.0"
|
|
170
170
|
},
|
|
171
171
|
"devDependencies": {
|
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-09-01'
|
|
231
231
|
softwareType: standalone/web
|
|
232
|
-
softwareVersion: 11.33.
|
|
232
|
+
softwareVersion: 11.33.1
|
|
233
233
|
url: 'https://github.com/italia/design-comuni-plone-theme'
|
|
234
234
|
usedBy:
|
|
235
235
|
- ASP Comuni Modenesi Area Nord
|
|
@@ -36,21 +36,24 @@ const Header = ({ pathname }) => {
|
|
|
36
36
|
return (
|
|
37
37
|
<>
|
|
38
38
|
<div className="public-ui">
|
|
39
|
-
|
|
39
|
+
<header>
|
|
40
|
+
{/* <div
|
|
40
41
|
className="sticky-placeholder"
|
|
41
42
|
style={{ paddingTop: mini ? '50px' : '120px' }}
|
|
42
43
|
/> */}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
44
|
+
{/* <Headers sticky={true} className={mini ? 'is-sticky' : undefined}> */}
|
|
45
|
+
<Headers>
|
|
46
|
+
<HeaderSlim />
|
|
47
|
+
|
|
48
|
+
<div className="it-nav-wrapper">
|
|
49
|
+
<HeaderCenter />
|
|
50
|
+
<Navigation pathname={pathname} />
|
|
51
|
+
</div>
|
|
52
|
+
</Headers>
|
|
53
|
+
<SubsiteHeader />
|
|
54
|
+
</header>
|
|
53
55
|
</div>
|
|
56
|
+
|
|
54
57
|
<div id="portal-header-image"></div>
|
|
55
58
|
</>
|
|
56
59
|
);
|