@eeacms/volto-eea-website-theme 0.6.17 → 0.6.18
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
CHANGED
@@ -4,8 +4,15 @@ 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
|
+
#### [0.6.18](https://github.com/eea/volto-eea-website-theme/compare/0.6.17...0.6.18)
|
8
|
+
|
9
|
+
- change(megamenu): added icon on mega menu header section [`2ee9011`](https://github.com/eea/volto-eea-website-theme/commit/2ee901166a03b32db48379c5af109684c07a854c)
|
10
|
+
|
7
11
|
#### [0.6.17](https://github.com/eea/volto-eea-website-theme/compare/0.6.16...0.6.17)
|
8
12
|
|
13
|
+
> 3 August 2022
|
14
|
+
|
15
|
+
- Develop [`#52`](https://github.com/eea/volto-eea-website-theme/pull/52)
|
9
16
|
- Set focus on search input field in the popup on click [`#50`](https://github.com/eea/volto-eea-website-theme/pull/50)
|
10
17
|
|
11
18
|
#### [0.6.16](https://github.com/eea/volto-eea-website-theme/compare/0.6.15...0.6.16)
|
package/package.json
CHANGED
@@ -203,8 +203,9 @@ const EEAHeader = ({ pathname, token, items, history }) => {
|
|
203
203
|
active: item.url === router_pathname,
|
204
204
|
})}
|
205
205
|
>
|
206
|
-
{props?.children}
|
206
|
+
{props?.iconPosition !== 'right' && props?.children}
|
207
207
|
<span>{item.title}</span>
|
208
|
+
{props?.iconPosition === 'right' && props?.children}
|
208
209
|
</UniversalLink>
|
209
210
|
)}
|
210
211
|
></Header.Main>
|