@eeacms/volto-eea-design-system 0.4.4 → 0.4.5

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,20 @@ 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.4.5](https://github.com/eea/volto-eea-design-system/compare/0.4.4...0.4.5)
8
+
9
+ - Autobuild of docusaurus docs [`728c62b`](https://github.com/eea/volto-eea-design-system/commit/728c62b1ddc9ea5e7f551230b657897c6eafbc57)
10
+ - change(tabs): Add style for tabs accordion template #187 [`fb8adbf`](https://github.com/eea/volto-eea-design-system/commit/fb8adbf84ac564a14d45bb6e8f4e1661811672d5)
11
+ - Autobuild of docusaurus docs [`06fbae7`](https://github.com/eea/volto-eea-design-system/commit/06fbae751c4f14ace793d4aa51f1ba0b52fec735)
12
+ - change(footer): avoid react error by providing key prop to grid column [`ef0b193`](https://github.com/eea/volto-eea-design-system/commit/ef0b1937d614a889a0c2117e483a834ed1aec1e3)
13
+ - Cleanup [`d4b9637`](https://github.com/eea/volto-eea-design-system/commit/d4b9637ebd2d6c015f8d4323551c6cbc4b7506df)
14
+ - Add style for tabs accordion template [`a109983`](https://github.com/eea/volto-eea-design-system/commit/a10998372a268b99991f7dda55103149f29d00cb)
15
+
7
16
  #### [0.4.4](https://github.com/eea/volto-eea-design-system/compare/0.4.3...0.4.4)
8
17
 
18
+ > 8 June 2022
19
+
20
+ - feat(footer,divider): refactoring and volto implementation [`#186`](https://github.com/eea/volto-eea-design-system/pull/186)
9
21
  - Make dots container of slick slider relative [`#184`](https://github.com/eea/volto-eea-design-system/pull/184)
10
22
  - [R3] Divider component [`#170`](https://github.com/eea/volto-eea-design-system/pull/170)
11
23
  - Remove a tag for menu item -> use only the class [`#183`](https://github.com/eea/volto-eea-design-system/pull/183)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-eea-design-system",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "@eeacms/volto-eea-design-system: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -24,6 +24,7 @@ const SubFooter = (props) => {
24
24
  mobile={manager.columnSize.mobile}
25
25
  tablet={manager.columnSize.tablet}
26
26
  computer={manager.columnSize.computer}
27
+ key={index}
27
28
  >
28
29
  <div className={manager.className}>
29
30
  <a href={manager.link}>
@@ -81,3 +81,21 @@
81
81
  .ui.styled.accordion .active.title input {
82
82
  color: @styledActiveTitleColor;
83
83
  }
84
+
85
+ /*------------------------------
86
+ Tabs as accordion (Volto)
87
+ --------------------------------*/
88
+
89
+ .ui.menu.RRT__accordion {
90
+ .ui.item {
91
+ background-color: transparent;
92
+ }
93
+
94
+ .ui.item i {
95
+ font-size: @iconFontSize;
96
+
97
+ &::before {
98
+ font-size: @iconFontSize;
99
+ }
100
+ }
101
+ }