@eeacms/volto-eea-design-system 1.40.2 → 1.40.3
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/CHANGELOG.md +11 -0
- package/locales/volto.pot +2 -2
- package/package.json +1 -1
- package/src/ui/Header/Header.jsx +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [1.40.3](https://github.com/eea/volto-eea-design-system/compare/1.40.2...1.40.3) - 11 February 2026
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: Invalid prop text of type function supplied to Dropdown, expected string [Alin Voinea - [`c1a5360`](https://github.com/eea/volto-eea-design-system/commit/c1a5360d77953f039536a38212a2ae0fcc4af763)]
|
|
12
|
+
|
|
13
|
+
#### :house: Internal changes
|
|
14
|
+
|
|
15
|
+
- style: Automated code fix [eea-jenkins - [`5e180db`](https://github.com/eea/volto-eea-design-system/commit/5e180db655bbf0ae345ba06c642d115caaa7783a)]
|
|
16
|
+
- chore: Update i18n [Alin Voinea - [`51cb998`](https://github.com/eea/volto-eea-design-system/commit/51cb998dd5f1bb595be35c1234e3b2deb0f47a72)]
|
|
17
|
+
|
|
7
18
|
### [1.40.2](https://github.com/eea/volto-eea-design-system/compare/1.40.1...1.40.2) - 8 December 2025
|
|
8
19
|
|
|
9
20
|
#### :hammer_and_wrench: Others
|
package/locales/volto.pot
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
msgid ""
|
|
2
2
|
msgstr ""
|
|
3
3
|
"Project-Id-Version: Plone\n"
|
|
4
|
-
"POT-Creation-Date:
|
|
4
|
+
"POT-Creation-Date: 2026-02-11T14:32:06.823Z\n"
|
|
5
5
|
"Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
6
6
|
"Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
|
|
7
|
-
"MIME-Version: 1.0\n"
|
|
8
7
|
"Content-Type: text/plain; charset=utf-8\n"
|
|
9
8
|
"Content-Transfer-Encoding: 8bit\n"
|
|
10
9
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
10
|
+
"MIME-Version: 1.0\n"
|
|
11
11
|
"Language-Code: en\n"
|
|
12
12
|
"Language-Name: English\n"
|
|
13
13
|
"Preferred-Encodings: utf-8\n"
|
package/package.json
CHANGED
package/src/ui/Header/Header.jsx
CHANGED
|
@@ -77,11 +77,11 @@ const TopDropdownMenu = ({
|
|
|
77
77
|
<Dropdown
|
|
78
78
|
id={id}
|
|
79
79
|
className={className}
|
|
80
|
-
|
|
80
|
+
trigger={
|
|
81
81
|
<div className={`divider text ${classNameHeader}`}>
|
|
82
82
|
{headerText}
|
|
83
83
|
</div>
|
|
84
|
-
|
|
84
|
+
}
|
|
85
85
|
ref={dropdownRef}
|
|
86
86
|
icon={icon || 'chevron down'}
|
|
87
87
|
aria-label={label}
|