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.
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.0",
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.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-08-22'
230
+ releaseDate: '2025-09-01'
231
231
  softwareType: standalone/web
232
- softwareVersion: 11.33.0
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
@@ -123,6 +123,7 @@ const CardWithSlideUpTextTemplate = (props) => {
123
123
  item={!isEditMode ? item : null}
124
124
  className="card-link"
125
125
  aria-hidden="true"
126
+ tabIndex="-1"
126
127
  ></UniversalLink>
127
128
  </div>
128
129
  );
@@ -36,21 +36,24 @@ const Header = ({ pathname }) => {
36
36
  return (
37
37
  <>
38
38
  <div className="public-ui">
39
- {/* <div
39
+ <header>
40
+ {/* <div
40
41
  className="sticky-placeholder"
41
42
  style={{ paddingTop: mini ? '50px' : '120px' }}
42
43
  /> */}
43
- {/* <Headers sticky={true} className={mini ? 'is-sticky' : undefined}> */}
44
- <Headers>
45
- <HeaderSlim />
46
-
47
- <div className="it-nav-wrapper">
48
- <HeaderCenter />
49
- <Navigation pathname={pathname} />
50
- </div>
51
- </Headers>
52
- <SubsiteHeader />
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
  );