design-comuni-plone-theme 11.9.0 → 11.9.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/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.9.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.9.0...v11.9.1) (2024-04-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* missing message id in navigation customization ([7183f75](https://github.com/redturtle/design-comuni-plone-theme/commit/7183f75f812b387469f8cd15037811d907c0181d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* updated publiccode and release log ([c05ece3](https://github.com/redturtle/design-comuni-plone-theme/commit/c05ece3acec39bcc0f43f116ff3b994666f344d5))
|
|
14
|
+
|
|
3
15
|
## [11.9.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.8.1...v11.9.0) (2024-04-03)
|
|
4
16
|
|
|
5
17
|
|
package/RELEASE.md
CHANGED
package/package.json
CHANGED
package/publiccode.yml
CHANGED
|
@@ -112,7 +112,11 @@ const Navigation = ({ pathname }) => {
|
|
|
112
112
|
>
|
|
113
113
|
<Icon
|
|
114
114
|
icon="it-burger"
|
|
115
|
-
title={intl.formatMessage(messages.
|
|
115
|
+
title={intl.formatMessage(messages.toggleMenu, {
|
|
116
|
+
action: collapseOpen
|
|
117
|
+
? intl.formatMessage(messages.toggleMenu_close)
|
|
118
|
+
: intl.formatMessage(messages.toggleMenu_open),
|
|
119
|
+
})}
|
|
116
120
|
/>
|
|
117
121
|
</HeaderToggler>
|
|
118
122
|
<Collapse
|